/* Основы и сброс */
* {
  box-sizing: border-box;
}
body {
  font-family: 'Trebuchet MS', Arial, sans-serif;
  margin: 0;
  background: linear-gradient(135deg, #0a3d62 0%, #60a3bc 100%);
  color: #e0f7fa;
  min-height: 100vh;
}
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  background: linear-gradient(90deg, #05386b 0%, #379683 100%);
  padding: 18px 0;
  color: #dff9fb;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 8px rgba(0,0,0,0.5);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #dff9fb;
  text-decoration: none;
  letter-spacing: 1.1px;
}
.nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 26px;
}
.nav a {
  color: #dff9fb;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.25s;
}
.nav a:hover {
  color: #a0e7e5;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, #379683 0%, #05386b 90%, #021f2c 100%);
  color: #dff9fb;
  text-align: center;
  padding: 80px 20px 60px 20px;
  border-bottom: 4px solid #a0e7e5;
  margin-bottom: 30px;
}
.hero h1 {
  font-size: 2.3rem;
  font-weight: 900;
  margin-bottom: 22px;
  letter-spacing: 1.6px;
  text-shadow: 0 0 8px #a0e7e5aa;
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 28px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.btn-primary {
  background: #a0e7e5;
  color: #05386b;
  padding: 16px 40px;
  border: none;
  border-radius: 25px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(160,231,229,0.6);
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background: #72c5c1;
  color: #fff;
}
.btn-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 28px;
}
.hero-logo-link {
  display: inline-block;
  width: 270px;
  height: 75px;
  overflow: hidden;
}
.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 6px #a0e7e5);
}

/* About */
.about-game {
  background: #05386b;
  padding: 55px 0;
  margin: 0 auto 30px auto;
  border-radius: 18px;
  box-shadow: 0 0 25px #a0e7e555;
}
.about-content {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.slot-img {
  width: 320px;
  border-radius: 24px;
  box-shadow: 0 0 30px #a0e7e555;
  border: 3px solid #a0e7e5;
  background: #021f2c;
}
.about-text {
  flex: 1;
  min-width: 260px;
  color: #dff9fb;
}
.about-text h2 {
  font-size: 2.6rem;
  color: #72c5c1;
  margin-bottom: 24px;
  text-shadow: 0 0 5px #a0e7e5aa;
}
.about-text p {
  font-size: 1.25rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.about-text ul {
  color: #80ced7;
  padding-left: 24px;
  margin: 0;
  font-weight: 600;
}
.about-text li {
  margin-bottom: 12px;
}

/* Features (Wildlife, History) */
.features {
  padding: 55px 0;
  background: linear-gradient(135deg, #379683 70%, #05386b 100%);
  margin: 0 auto 30px auto;
  border-radius: 18px;
  box-shadow: 0 0 22px #72c5c144;
}
.features h2 {
  text-align: center;
  color: #dff9fb;
  margin-bottom: 42px;
  font-size: 2.5rem;
  text-shadow: 0 0 8px #80ced7cc;
}
.feature-list {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.feature-item {
  flex: 1 1 250px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  padding: 30px 24px;
  margin-bottom: 28px;
  min-width: 250px;
  max-width: 320px;
  box-shadow: 0 0 12px #72c5c166;
  border: 2px solid #80ced7aa;
  text-align: center;
  color: #dff9fb;
  font-family: 'Trebuchet MS', Arial, sans-serif;
  transition: transform 0.25s ease;
}
.feature-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #72c5c177;
}
.feature-item h3 {
  margin-bottom: 18px;
  color: #a0e7e5;
  font-size: 1.4rem;
  font-weight: 700;
}
.feature-item p {
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Demo slot (Visit) */
.demo-slot {
  background: #021f2c;
  padding: 60px 0 40px 0;
  text-align: center;
  margin: 0 auto 30px auto;
  border-radius: 18px;
  color: #80ced7;
  box-shadow: 0 0 35px #72c5c144;
}
.demo-slot h2 {
  margin-bottom: 35px;
  font-size: 2.4rem;
  text-shadow: 0 0 10px #80ced7aa;
}
.demo-frame {
  max-width: 480px;
  margin: 0 auto 24px auto;
  background: #05386b;
  border-radius: 20px;
  border: 2px solid #80ced7aa;
  box-shadow: 0 0 15px #72c5c177;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.demo-frame img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* SEO текст */
.seo-text {
  padding: 40px 0 40px 0;
  background: linear-gradient(90deg, #05386b 60%, #379683 130%);
  color: #dff9fb;
  margin-bottom: 30px;
  border-radius: 18px;
  text-align: center;
  font-family: 'Trebuchet MS', Arial, sans-serif;
}
.seo-text h2 {
  font-size: 1.8rem;
  margin-bottom: 22px;
  font-weight: 700;
  text-shadow: 0 0 8px #80ced7cc;
}
.seo-text h3 {
  font-size: 1.5rem;
  margin-bottom: 22px;
  font-weight: 700;
  text-shadow: 0 0 8px #80ced7cc;
}
.seo-text p {
  font-size: 1.2rem;
  margin-bottom: 16px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* FAQ */
.faq {
  padding: 50px 0;
  background: #379683;
  max-width: 900px;
  margin: 0 auto 30px auto;
  border-radius: 20px;
  box-shadow: 0 0 30px #72c5c144;
  color: #dff9fb;
  font-family: 'Trebuchet MS', Arial, sans-serif;
}
.faq h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  text-shadow: 0 0 10px #80ced7cc;
}
.faq-item {
  margin-bottom: 25px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 22px 26px;
  border-left: 5px solid #80ced7aa;
  transition: background 0.3s ease;
}
.faq-item:hover {
  background: rgba(128,206,215,0.5);
}
.faq-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.faq-item p {
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Footer */
.footer {
  background: linear-gradient(90deg, #05386b 0%, #379683 100%);
  color: #dff9fb;
  padding: 25px 0 15px 0;
  text-align: center;
  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-size: 0.95rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  display: flex;
  justify-content: center;
  gap: 22px;
}
.footer-links li a {
  color: #dff9fb;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.25s ease;
}
.footer-links li a:hover {
  color: #a0e7e5;
}

/* Responsive */
@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }
  .slot-img {
    margin: 0 auto;
  }
  .feature-list {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 650px) {
  .logo {
    font-size: 1.55rem;
  }
  .about-text h2, .features h2, .faq h2, .seo-text h2 {
    font-size: 1.3rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 500px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .demo-frame iframe {
    height: 180px;
  }
}
@media (max-width: 600px) {
  .header .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 14px;
  }
  .logo {
    font-size: 1.3rem;
    gap: 10px;
    margin-bottom: 8px;
  }
  .nav ul {
    gap: 14px;
    font-size: 1.05rem;
    flex-wrap: wrap;
  }
  .nav a {
    font-size: 1.05rem;
    padding: 3px 0;
  }
}
.container {
  width: 98%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 6px;
  padding-right: 6px;
}
@media (max-width: 600px) {
  .container {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 46px 12px 32px 12px;
  }
  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    text-align: center;
  }
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
  }
  .btn-primary {
    width: 90%;
    min-width: 0;
    font-size: 1.1rem;
    padding: 15px 0;
    margin: 0 auto;
    display: block;
  }
}
@media (max-width: 600px) {
  .demo-frame {
    max-width: 100vw;
    border-radius: 14px;
    border-width: 1.5px;
    aspect-ratio: 16/9;
  }
  .demo-frame img {
    border-radius: 14px;
  }
  .about-content {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .slot-img {
    width: 95vw;
    max-width: 400px;
    border-radius: 16px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .seo-text, .about-game, .features, .demo-slot, .faq {
    padding-left: 10px;
    padding-right: 10px;
  }
  .seo-text h2, .features h2, .faq h2 {
    font-size: 1.15rem;
  }
  .seo-text p, .about-text p, .features p, .faq-item p {
    font-size: 1.05rem;
  }
}
@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
  .footer {
    font-size: 1rem;
    padding: 15px 0 10px 0;
  }
}