:root {
  --primary-color: #F9A826;
  --secondary-color: #F57C00;
  --accent-color: #3F51B5;
  --light-bg: #FFEECC;
  --dark-bg: #262626;
  --text-color: #333333;
  --light-text: #FFFFFF;
  --header-height: 80px;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Lato', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
  background-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.logo {
  display: flex;
  align-items: center;
}

.logo svg {
  width: 50px;
  height: 50px;
  margin-right: 12px;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 18px;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav ul li a:hover {
  color: var(--primary-color);
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 30px;
  height: 3px;
  background-color: var(--text-color);
  margin: 6px;
  transition: all 0.3s ease;
}

.hero {
  height: 100vh;
  background: linear-gradient(135deg, #FFF3E0 0%, #FFCC80 100%);
  display: flex;
  align-items: center;
  padding: var(--header-height) 5% 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  width: 50%;
  z-index: 1;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--dark-bg);
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: var(--text-color);
  max-width: 80%;
}

.hero-image {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 45%;
  display: flex;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(245, 124, 0, 0.3);
  color: white;
}

.section {
  padding: 100px 5%;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  font-size: 2.5rem;
  color: var(--dark-bg);
}

.section-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.features {
  background-color: #FFF;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  background-color: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 60px;
  height: 60px;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-bg);
}

.feature-desc {
  color: #666;
}

.games {
  background-color: #F5F5F5;
  position: relative;
  overflow: hidden;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.game-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.game-card:hover {
  transform: translateY(-15px);
}

.game-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background-color: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-img svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-content {
  padding: 25px;
}

.game-tag {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  margin-bottom: 15px;
}

.game-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-bg);
}

.game-desc {
  color: #666;
  margin-bottom: 20px;
}

.reviews {
  background: linear-gradient(135deg, #FFEECC 0%, #FFF8E1 100%);
}

.review-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.review-quote {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 30px;
  color: #444;
}

.review-author {
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 5px;
}

.review-stars {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.5rem;
  letter-spacing: 5px;
}

.about {
  background-color: white;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-img {
  flex: 1;
  text-align: center;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--dark-bg);
}

.about-text p {
  margin-bottom: 20px;
  color: #555;
}

.contact {
  background: var(--dark-bg);
  color: white;
  position: relative;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 30px;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 5px;
  background-color: rgba(255,255,255,0.05);
  color: white;
  font-size: 1rem;
  font-family: var(--font-primary);
}

.form-control::placeholder {
  color: rgba(255,255,255,0.5);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  background-color: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
  width: 100%;
}

footer {
  background-color: #1A1A1A;
  padding: 80px 5% 30px;
  color: #DDD;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo svg {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.footer-about {
  max-width: 300px;
}

.footer-about p {
  margin-bottom: 20px;
  color: #AAA;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: white;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li a {
  color: #AAA;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #777;
  font-size: 0.9rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero-image {
    width: 40%;
  }
}

@media (max-width: 992px) {
  .hero-content {
    width: 60%;
  }
  
  .hero-image {
    width: 35%;
    right: 2%;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-img, .about-text {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .burger {
    display: block;
  }
  
  nav ul {
    position: absolute;
    right: 0;
    top: var(--header-height);
    background-color: white;
    width: 100%;
    height: calc(100vh - var(--header-height));
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.5s ease;
    box-shadow: -5px 0 10px rgba(0,0,0,0.1);
  }
  
  nav ul.active {
    transform: translateX(0);
  }
  
  nav ul li {
    margin: 20px 0;
  }
  
  .hero-content {
    width: 100%;
    text-align: center;
  }
  
  .hero p {
    margin: 0 auto 40px;
  }
  
  .hero-image {
    display: none;
  }
}

@media (max-width: 576px) {
  :root {
    --header-height: 70px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .logo svg {
    width: 40px;
    height: 40px;
  }
  
  .section {
    padding: 60px 5%;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
}
