body {
  background: #f8e3a1;
  color: #2e1f09;
  font-family: "Segoe UI", Tahoma, sans-serif;
  margin: 0;
  padding: 0;
}

body,
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
  font-family: Arial, Helvetica, sans-serif;
  border: none;
}

/* ============ LAYOUT BASE ============ */
body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, sans-serif;
  background: #f8e3a1;
  color: #2e1f09;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.main {
  flex: 1 1 auto;
  margin-top: 117px; /* безопасный отступ под age-banner + header */
}
@media (max-width: 768px) {
  .main {
    margin-top: 148px; /* безопасный отступ под age-banner + header */
  }
}
/* ============ AGE BANNER ============ */
.age-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #e63946 0%, #1d3557 100%);
  color: #fff5e9;
  z-index: 1000;
  padding: 10px 0;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 12px rgba(29, 53, 87, 0.3);
  border-bottom: 2px solid rgba(255, 245, 233, 0.3);
}

.age-banner-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 0 12px;
}

.age-text {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.age-subtext {
  font-size: 14px;
  opacity: 0.9;
  color: #fff5e9;
}

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 44px; /* отступ под age-banner */
  left: 0;
  right: 0;
  background: rgba(29, 53, 87, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(230, 57, 70, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(29, 53, 87, 0.25);
  animation: headerFadeIn 0.6s ease-out;
}

@keyframes headerFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header.scrolled {
  background: rgba(29, 53, 87, 0.98);
  box-shadow: 0 2px 10px rgba(29, 53, 87, 0.45);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ============ LOGO ============ */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(230, 57, 70, 0.5));
  transition: transform 0.3s ease;
}

.header-logo:hover img {
  transform: rotate(-5deg) scale(1.05);
}

.logo-text {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff5e9;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.header-logo:hover .logo-text {
  color: #e63946;
}

/* ============ NAVIGATION ============ */
.header-nav {
  display: flex;
}

.nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: #fff5e9;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  position: relative;
  transition: 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0%;
  background: #e63946;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: #e63946;
}

/* ============ BURGER ============ */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  height: 3px;
  width: 100%;
  background: #fff5e9;
  border-radius: 3px;
  transition: 0.3s;
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============ MOBILE NAVIGATION ============ */
@media (max-width: 768px) {
  .header {
    top: 79px;
  }

  .header-container {
    padding: 10px 18px;
  }

  .header-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(29, 53, 87, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
  }

  .header-nav.active {
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 15px;
  }

  .burger {
    display: flex;
  }

  .main {
    margin-top: 180px; /* больше отступа для мобильных */
  }
}
@media (max-width: 768px) {
  .age-banner {
    height: 85px;
  }
}
@media (max-width: 768px) {
  .age-banner-content {
    flex-direction: column;
    gap: 8px;
  }
}
/* Адаптация под очень маленькие экраны */
@media (max-width: 480px) {
  .age-banner-content {
    flex-direction: column;
    gap: 8px;
  }

  .logo-text {
    font-size: 1.2rem;
  }
}

/* ================= Hero Section ================= */
.hero-sushi {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 140px; /* с учётом age-banner + header */
  padding-bottom: 80px;
}

/* Фоновые эффекты */
.hero-sushi::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(230, 57, 70, 0.3),
    transparent 70%
  );
  opacity: 0.4;
  z-index: 1;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1 1 500px;
  color: #fff5e9;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-title span {
  background: linear-gradient(90deg, #e63946 0%, #ffad33 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sushi-glow 2s ease-in-out infinite alternate;
}

@keyframes sushi-glow {
  0% {
    text-shadow: 0 0 20px rgba(230, 57, 70, 0.6);
  }
  100% {
    text-shadow: 0 0 35px rgba(255, 173, 51, 0.8);
  }
}

.hero-sub {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.95;
  max-width: 550px;
  margin-bottom: 2.5rem;
}

/* === CTA Buttons === */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.hero-btn {
  display: inline-block;
  padding: 1rem 2.4rem;
  background: linear-gradient(90deg, #e63946 0%, #ffad33 100%);
  color: #fff5e9;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

.hero-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px rgba(255, 173, 51, 0.6);
}

.hero-btn-outline {
  background: transparent;
  border: 2px solid #e63946;
  color: #e63946;
  box-shadow: none;
}

.hero-btn-outline:hover {
  background: #e63946;
  color: #fff5e9;
}

/* === Image === */
.hero-media {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.hero-img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  border: 3px solid #e63946;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* === Responsive === */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-sub {
    margin: 0 auto 2rem;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }

  .hero-img {
    max-width: 400px;
  }
}
/* ================= Notice Section ================= */
.notice-section {
  background: linear-gradient(180deg, #1d3557 0%, #162945 100%);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.notice-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 184, 76, 0.3);
  border-radius: 16px;
  max-width: 720px;
  padding: 50px 40px;
  margin: 0 auto;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
}

.notice-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  color: #ffb84c;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.notice-card p {
  color: #fff7ec;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.notice-card a {
  color: #e63946;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.notice-card a:hover {
  color: #ffb84c;
}

/* Badges */
.notice-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.notice-badges .badge {
  background: linear-gradient(90deg, #e63946 0%, #ffb84c 100%);
  color: #fff7ec;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
/* ================= Game Section ================= */
.game-section {
  background: linear-gradient(180deg, #3b1f0e 0%, #5a2e17 100%);
  /* тёплый фон: древесно-терракотовый переход */
  padding: 80px 20px;
  position: relative;
  z-index: 1;
}

.game-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.game-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #f5ca72; /* тёплое золото */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.game-subtitle {
  font-size: 1.1rem;
  color: #fff8e5;
  opacity: 0.95;
  line-height: 1.6;
}

/* Game Frame */
.game-wrapper {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 202, 114, 0.3);
  border-radius: 16px;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
}

.game-frame {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #2b1307; /* как доска суши */
  border: 2px solid rgba(245, 202, 114, 0.25);
}

.game-iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Features */
.game-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
}

.feature {
  text-align: center;
  max-width: 240px;
}

.feature i {
  font-size: 2.5rem;
  color: #c94b2b; /* тёплый красно-глиняный */
  margin-bottom: 0.8rem;
}

.feature h5 {
  font-size: 1.2rem;
  color: #f5ca72;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.feature p {
  font-size: 0.95rem;
  color: #fff8e5;
  opacity: 0.9;
}

/* Button */
.game-btn {
  display: inline-block;
  background: linear-gradient(90deg, #c94b2b 0%, #f5ca72 100%);
  color: #fff8e5;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(201, 75, 43, 0.4);
}

.game-btn i {
  margin-right: 0.4rem;
}

.game-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(245, 202, 114, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .game-iframe {
    height: 300px;
  }

  .game-features {
    flex-direction: column;
    align-items: center;
  }
}

.text-center {
  text-align: center;
  margin: 0 auto;
}
/* ================= Features Section ================= */
.features-section {
  background: linear-gradient(180deg, #4a2615 0%, #2a1408 100%);
  padding: 80px 20px;
  color: #fff8e5;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.features-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.features-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #f5ca72;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.features-subtitle {
  font-size: 1.1rem;
  color: #fff2d5;
  opacity: 0.95;
  line-height: 1.6;
}

/* Grid layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

/* Feature cards */
.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 202, 114, 0.3);
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

/* Icons */
.feature-icon {
  font-size: 2.5rem;
  color: #c94b2b;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  color: #f5ca72;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.feature-card p {
  font-size: 1rem;
  color: #fff8e5;
  opacity: 0.9;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .features-title {
    font-size: 1.9rem;
  }

  .features-subtitle {
    font-size: 1rem;
  }

  .feature-card {
    padding: 25px 18px;
  }
}
/* ================= About Section ================= */
.about-section {
  background: linear-gradient(180deg, #f4e0b2 0%, #eac58a 100%);
  /* тёплый бежево-золотистый фон */
  padding: 100px 20px;
  color: #2e1f09;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 60px;
}

/* Text block */
.about-text {
  flex: 1 1 500px;
  max-width: 520px;
}

.about-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #c94b2b;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: #2e1f09;
}

/* Button */
.about-btn {
  display: inline-block;
  background: linear-gradient(90deg, #c94b2b 0%, #f5ca72 100%);
  color: #fff8e5;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(201, 75, 43, 0.3);
}

.about-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(245, 202, 114, 0.5);
}

/* Image */
.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(46, 31, 9, 0.4);
  border: 4px solid #f5ca72;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(201, 75, 43, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-text {
    max-width: 100%;
  }

  .about-img {
    max-width: 350px;
  }

  .about-title {
    font-size: 2rem;
  }
}
/* ================= Reviews Section ================= */
.reviews-section {
  background: linear-gradient(180deg, #f5e6c2 0%, #e9cfa2 100%);
  padding: 100px 20px;
  color: #2e1f09;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.reviews-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #c94b2b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.reviews-subtitle {
  font-size: 1.1rem;
  color: #3e2b13;
  opacity: 0.9;
  line-height: 1.6;
}

/* Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Card */
.review-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 30px 25px;
  border: 1px solid rgba(201, 75, 43, 0.25);
  box-shadow: 0 6px 25px rgba(46, 31, 9, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(201, 75, 43, 0.35);
}

/* Header */
.review-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c94b2b, #f5ca72);
  color: #fff8e5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 3px 10px rgba(201, 75, 43, 0.4);
}

.review-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2e1f09;
  margin: 0;
}

.review-role {
  font-size: 0.9rem;
  color: #5a4031;
  opacity: 0.8;
}

/* Text */
.review-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #3e2b13;
  opacity: 0.95;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .reviews-title {
    font-size: 2rem;
  }

  .reviews-subtitle {
    font-size: 1rem;
  }

  .review-card {
    padding: 25px 20px;
  }
}
/* ================= Footer ================= */
.footer {
  background: linear-gradient(180deg, #3a1c0e 0%, #2a0f05 100%);
  padding: 60px 20px 40px;
  color: #fff8e5;
  text-align: center;
  border-top: 3px solid rgba(245, 202, 114, 0.4);
  box-shadow: 0 -4px 25px rgba(46, 31, 9, 0.3);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 25px;
}

.footer-logo {
  max-height: 70px;
  filter: drop-shadow(0 0 10px rgba(245, 202, 114, 0.5));
}

/* Navigation */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 30px;
  list-style: none;
  padding: 0;
  margin: 25px 0 40px;
}

.footer-link {
  color: #fff3d4;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #f5ca72;
  text-decoration: underline;
}

/* Disclaimer */
.footer-disclaimer {
  max-width: 680px;
  margin: 0 auto 30px;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #fff5de;
  opacity: 0.9;
}

.footer-disclaimer h5 {
  color: #f5ca72;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Copyright */
.footer-copy {
  color: #e8d6b0;
  font-size: 0.9rem;
  opacity: 0.8;
  border-top: 1px solid rgba(245, 202, 114, 0.2);
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-nav {
    gap: 15px;
  }

  .footer-logo {
    max-height: 60px;
  }

  .footer-disclaimer {
    font-size: 0.9rem;
  }
}
/* ================= Age Modal ================= */
.age-modal {
  position: fixed;
  inset: 0;
  background: rgba(46, 31, 9, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.age-modal.active {
  opacity: 1;
  visibility: visible;
}

.age-dialog {
  background: linear-gradient(180deg, #fff8e5 0%, #fae1b2 100%);
  border: 2px solid #f5ca72;
  border-radius: 16px;
  max-width: 460px;
  width: 90%;
  padding: 30px 25px;
  box-shadow: 0 8px 35px rgba(46, 31, 9, 0.4);
  text-align: center;
  animation: fadeInScale 0.5s ease forwards;
}

@keyframes fadeInScale {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.age-title {
  font-size: 1.8rem;
  color: #c94b2b;
  margin-bottom: 1rem;
  font-weight: 800;
}

.age-text-modal {
  color: #3e2b13;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Buttons */
.age-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.age-btn {
  background: linear-gradient(90deg, #c94b2b 0%, #f5ca72 100%);
  color: #fff8e5;
  border: none;
  border-radius: 8px;
  padding: 10px 25px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201, 75, 43, 0.4);
}

.age-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(245, 202, 114, 0.5);
}

.age-btn-outline {
  background: transparent;
  color: #c94b2b;
  border: 2px solid #c94b2b;
  border-radius: 8px;
  padding: 10px 25px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-btn-outline:hover {
  background: #c94b2b;
  color: #fff8e5;
}
/* ================= Play Section ================= */
.play-section {
  background: linear-gradient(180deg, #f7e2b0 0%, #f2c889 100%);
  padding: 100px 20px;
  color: #2e1f09;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Title */
.play-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #c94b2b;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.play-title i {
  color: #f5ca72;
  margin-right: 0.5rem;
}

/* Subtitle */
.play-subtitle {
  max-width: 780px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #3e2b13;
  opacity: 0.9;
}

/* Frame */
.play-frame {
  background: #fffaf0;
  border: 2px solid rgba(245, 202, 114, 0.4);
  border-radius: 18px;
  max-width: 900px;
  margin: 0 auto;
  padding: 15px;
  box-shadow: 0 12px 35px rgba(46, 31, 9, 0.25);
}

.iframe-wrapper {
  border-radius: 12px;
  overflow: hidden;
  background: #0e1928;
}

.iframe-wrapper iframe {
  width: 100%;
  height: 480px;
  border: none;
}

/* Info */
.play-info {
  margin-top: 40px;
}

.controls {
  font-size: 1rem;
  color: #3e2b13;
  opacity: 0.9;
  margin-bottom: 20px;
}

.controls i {
  color: #c94b2b;
  margin-right: 8px;
}

/* Badges */
.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.badge {
  background: linear-gradient(90deg, #c94b2b 0%, #f5ca72 100%);
  color: #fff8e5;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(201, 75, 43, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .play-title {
    font-size: 2rem;
  }

  .iframe-wrapper iframe {
    height: 340px;
  }

  .badge {
    font-size: 0.8rem;
  }
}

/* ================= Tips Section ================= */
.tips-section {
  background: linear-gradient(180deg, #182b45 0%, #111d2e 100%);
  padding: 80px 20px;
  color: #fff7ec;
}

.tips-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.tips-title {
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffb84c;
  margin-bottom: 1rem;
}

.tips-subtitle {
  font-size: 1.1rem;
  color: #fff5e9;
  opacity: 0.9;
  line-height: 1.6;
}

/* Grid */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Card */
.tip-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 184, 76, 0.25);
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(230, 57, 70, 0.3);
}

/* Titles & Icons */
.tip-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffb84c;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.tip-title i {
  color: #e63946;
}

.tip-text {
  color: #fff7ec;
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .tips-title {
    font-size: 2rem;
  }
  .tip-card {
    padding: 25px 20px;
  }
}
/* ================= Contact Section ================= */
.contact-section {
  background: linear-gradient(180deg, #1d2e3e 0%, #121c28 100%);
  padding: 80px 20px;
  color: #fff7ec;
  position: relative;
  z-index: 1;
}

.contact-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.contact-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffb84c;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: #fff5e9;
  opacity: 0.9;
  line-height: 1.6;
}

/* Cards Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Card Style */
.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 184, 76, 0.25);
  border-radius: 16px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(230, 57, 70, 0.4);
}

/* Icons */
.contact-card i {
  font-size: 2.5rem;
  color: #e63946;
  margin-bottom: 1rem;
}

.contact-card h5 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffb84c;
  margin-bottom: 0.8rem;
}

.contact-card p {
  font-size: 1rem;
  color: #fff7ec;
  opacity: 0.9;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.contact-note {
  color: #f5ca72;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-title {
    font-size: 2rem;
  }

  .contact-card {
    padding: 30px 20px;
  }
}
/* ================= Contact Form Section ================= */
.contact-form-section {
  background: linear-gradient(180deg, #1a2c44 0%, #111d2e 100%);
  padding: 80px 20px;
  color: #fff7ec;
  text-align: center;
}

.contact-form-title {
  font-size: 2.2rem;
  color: #ffb84c;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-form-subtitle {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #fff5e9;
  opacity: 0.9;
  font-size: 1.1rem;
}

/* Form Layout */
.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 184, 76, 0.25);
  border-radius: 16px;
  padding: 40px 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  text-align: left;
  backdrop-filter: blur(10px);
}

/* Two columns */
.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group.full {
  flex: 1 1 100%;
}

/* Inputs */
.contact-form label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #ffb84c;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid rgba(255, 184, 76, 0.3);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}
.contact-form select {
    color: rgba(255, 255, 255, 0.1) !important;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #ffb84c;
  box-shadow: 0 0 10px rgba(255, 184, 76, 0.3);
}

/* Checkboxes */
.form-check {
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.form-check input[type="checkbox"] {
  accent-color: #e63946;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-check label {
  color: #fff7ec;
  line-height: 1.4;
}

.form-check a {
  color: #ffb84c;
  text-decoration: none;
}

.form-check a:hover {
  text-decoration: underline;
}

/* Button */
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  background: linear-gradient(90deg, #e63946 0%, #ffb84c 100%);
  color: #fff7ec;
  border: none;
  padding: 14px 40px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.contact-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(230, 57, 70, 0.4);
}

/* Alerts */
.form-alert {
  margin-top: 25px;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-alert i {
  font-size: 1.2rem;
}

.form-alert.success {
  background: rgba(72, 187, 120, 0.15);
  border: 1px solid #48bb78;
  color: #a2f0c8;
}

.form-alert.error {
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid #e63946;
  color: #ffcaca;
}

.hidden {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .contact-form-title {
    font-size: 1.8rem;
  }
}
/* ================= Disclaimer Page ================= */
.disclaimer-section {
  padding: 100px 20px 80px;
  color: #fff7ec;
  position: relative;
  z-index: 1;
}

.disclaimer-title {
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffb84c;
  text-align: center;
  margin-bottom: 50px;
}

/* Card container */
.disclaimer-card {
  background: linear-gradient(180deg, #182b45 0%, #111d2e 100%);
  border: 1px solid rgba(255, 184, 76, 0.25);
  border-radius: 16px;
  padding: 35px 25px;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.disclaimer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(230, 57, 70, 0.4);
}

/* Headings */
.disclaimer-card h3 {
  color: #ffb84c;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Text */
.disclaimer-card p {
  color: #fff7ec;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 1rem;
}

/* Links */
.disclaimer-card a {
  color: #e63946;
  text-decoration: none;
  font-weight: 600;
}

.disclaimer-card a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .disclaimer-title {
    font-size: 2rem;
  }

  .disclaimer-card {
    padding: 25px 20px;
  }

  .disclaimer-card h3 {
    font-size: 1.2rem;
  }
}
/* ================= Privacy Page ================= */
.privacy-section {
  background: linear-gradient(180deg, #182b45 0%, #111d2e 100%);
  padding: 100px 20px 80px;
  color: #fff7ec;
  position: relative;
  z-index: 1;
}

.privacy-title {
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffb84c;
  text-align: center;
  margin-bottom: 50px;
}

.privacy-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 184, 76, 0.25);
  border-radius: 16px;
  padding: 35px 25px;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(230, 57, 70, 0.4);
}

.privacy-card h3 {
  color: #ffb84c;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.privacy-card p {
  color: #fff7ec;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.privacy-card ul {
  margin-left: 20px;
  margin-bottom: 1rem;
}

.privacy-card li {
  list-style-type: "🍣 ";
  color: #fff7ec;
  margin-bottom: 6px;
  line-height: 1.6;
}

.privacy-card a {
  color: #e63946;
  text-decoration: none;
  font-weight: 600;
}

.privacy-card a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy-title {
    font-size: 2rem;
  }

  .privacy-card {
    padding: 25px 20px;
  }

  .privacy-card h3 {
    font-size: 1.2rem;
  }
}
/* ================= Terms Page ================= */
.terms-section {
  background: linear-gradient(180deg, #15243b 0%, #0e1928 100%);
  padding: 100px 20px 80px;
  color: #fff7ec;
  position: relative;
  z-index: 1;
}

.terms-title {
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffb84c;
  text-align: center;
  margin-bottom: 50px;
}

.terms-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 184, 76, 0.25);
  border-radius: 16px;
  padding: 35px 25px;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terms-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(230, 57, 70, 0.4);
}

.terms-card h3 {
  color: #ffb84c;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.terms-card p {
  color: #fff7ec;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.terms-card ul {
  margin-left: 20px;
  margin-bottom: 1rem;
}

.terms-card li {
  list-style-type: "🍣 ";
  color: #fff7ec;
  margin-bottom: 6px;
  line-height: 1.6;
}

.terms-card a {
  color: #e63946;
  text-decoration: none;
  font-weight: 600;
}

.terms-card a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .terms-title {
    font-size: 2rem;
  }

  .terms-card {
    padding: 25px 20px;
  }

  .terms-card h3 {
    font-size: 1.2rem;
  }
}
