body {
  margin: 0;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  background: #f7f7fa;
  color: #222;
}

.main-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #1a73e8;
  text-decoration: none;
  letter-spacing: 2px;
}
.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav-link {
  text-decoration: none;
  color: #222;
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: #1a73e8;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #1a73e8 60%, #fff 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1465101046530-73398c7f28ca?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  opacity: 0.25;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.cta-btn {
  background: #fff;
  color: #1a73e8;
  padding: 0.8rem 2.2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
  background: #1a73e8;
  color: #fff;
}

.news-section {
  background: #fff;
  padding: 48px 0 32px 0;
}
.news-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1a73e8;
}
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-list li {
  display: flex;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid #eee;
}
.news-date {
  color: #1a73e8;
  font-weight: 700;
  margin-right: 1.5rem;
  min-width: 100px;
}
.news-title {
  font-size: 1.1rem;
}

.games-section {
  background: #f7f7fa;
  padding: 48px 0 32px 0;
}
.games-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1a73e8;
}
.games-carousel {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.game-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  overflow: hidden;
  width: 300px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.game-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 24px rgba(26,115,232,0.13);
}
.game-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.game-card h3 {
  margin: 1rem 0 0.5rem 0;
  color: #1a73e8;
}
.game-card p {
  margin-bottom: 1.2rem;
  color: #444;
}

.about-section {
  background: #fff;
  padding: 48px 0 32px 0;
}
.about-flex {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.about-img img {
  width: 320px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.about-info h2 {
  color: #1a73e8;
  margin-bottom: 1rem;
}
.about-info ul {
  margin: 1rem 0 0 1.2rem;
  color: #444;
}

.contact-section {
  background: #f7f7fa;
  padding: 48px 0 32px 0;
}
.contact-section h2 {
  color: #1a73e8;
  margin-bottom: 1.5rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}
.contact-form input, .contact-form textarea {
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: inherit;
}
.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}
.contact-form button {
  background: #1a73e8;
  color: #fff;
  border: none;
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #155ab6;
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .about-flex {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-img img {
    width: 100%;
    max-width: 400px;
  }
  .games-carousel {
    flex-direction: column;
    align-items: center;
  }
}
