body {
  margin: 0;
  padding: 0;
}

body,
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
  font-family: Arial, Helvetica, sans-serif;
  border: none;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1 1 auto;
}

/* ============================= */
/* Age Restriction Banner */
/* ============================= */

.age-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #c76b2e 0%, #b42b1a 100%);
  color: #fff;
  z-index: 1000;
  padding: 10px 0;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(180, 43, 26, 0.4);
  animation: fadeDown 0.6s ease;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.age-banner-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0 15px;
}

.age-text {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
}

.age-subtext {
  font-size: 14px;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .age-banner-content {
    gap: 5px;
    flex-direction: column;
  }
  .age-subtext {
    font-size: 10px;
  }
}

/* ============================= */
/* Navigation */
/* ============================= */

.navbar {
  position: fixed;
  top: 45px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 15px 0;
  border-bottom: 1px solid rgba(198, 108, 46, 0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo a {
  color: #f4f1ea;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu a {
  color: #d6c49b;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #f7931a;
}

/* ============================= */
/* Footer */
/* ============================= */

.footer {
  background: #1b1b1b;
  color: #e0d8c0;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/* ============================= */
/* Wild Survivor Header */
/* ============================= */

.wild-header {
  position: fixed;
  top: 45px; /* ниже age-banner */
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(199, 107, 46, 0.4);
  box-shadow: 0 2px 15px rgba(27, 27, 27, 0.6);
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .wild-header {
    top: 55px;
  }
}
@media (max-width: 447px) {
  .wild-header {
    top: 70px;
  }
}

.wild-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.wild-logo img {
  height: 60px;
  transition: transform 0.3s;
}

.wild-logo img:hover {
  transform: scale(1.05);
}

.wild-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.wild-nav a {
  color: #d6c49b;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.wild-nav a:hover {
  color: #f7931a;
}

/* === 18+ ICON === */
.wild-age {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f7931a;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px rgba(247, 147, 26, 0.7);
}

.wild-age i {
  font-size: 18px;
  color: #f7931a;
  filter: drop-shadow(0 0 5px rgba(247, 147, 26, 0.4));
}

/* === Burger === */
.wild-burger {
  display: none;
  background: none;
  border: none;
  color: #d6c49b;
  font-size: 22px;
  cursor: pointer;
}

/* === Mobile === */
@media (max-width: 768px) {
  .wild-nav {
    display: none;
  }

  .wild-burger {
    display: block;
  }

  .wild-header.active .wild-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background: #1b1b1b;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .wild-header.active .wild-nav ul {
    flex-direction: column;
    gap: 15px;
  }
}
/* ============================= */
/* HERO SECTION */
/* ============================= */

.hero {
  position: relative;
  height: 100vh;
  background: url("../assets/home-hero.png") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #f4f1ea;
  overflow: hidden;
  animation: backgroundFade 20s ease-in-out infinite alternate;
}
@media (max-width: 768px) {
  .hero {
    margin-top: 120px;
  }
}
@keyframes backgroundFade {
  0% {
    filter: brightness(1) contrast(1);
  }
  100% {
    filter: brightness(1.15) contrast(1.1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(44, 62, 40, 0.85));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  animation: fadeIn 1.2s ease;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #d6c49b;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f4f1ea;
  font-weight: 500;
  opacity: 0.9;
}

.hero-btn {
  display: inline-block;
  background: linear-gradient(90deg, #c76b2e 0%, #b42b1a 100%);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(180, 43, 26, 0.5);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(180, 43, 26, 0.6);
}

.hero-disclaimer {
  margin-top: 35px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #e0d8c0;
  opacity: 0.85;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    height: 90vh;
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-btn {
    padding: 12px 28px;
  }
}
/* ============================= */
/* COMPACT ABOUT SECTION */
/* ============================= */

.main-about-section {
  width: 100%;
  background: linear-gradient(90deg, #ff6b35 0%, #f7931a 100%);
  color: #fff;
  text-align: center;
  padding: 25px 15px; /* компактный вертикальный отступ */
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.about-icon {
  font-size: 38px;
  color: #fff;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
  transition: transform 0.3s ease;
}

.about-icon:hover {
  transform: scale(1.1) rotate(5deg);
}

.about-text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 5px 0;
  color: #fffdfa;
  text-transform: uppercase;
}

.about-text p {
  font-size: 1rem;
  color: #fff;
  opacity: 0.95;
  margin: 0;
}

@media (max-width: 768px) {
  .about-text h2 {
    font-size: 1.3rem;
  }

  .about-icon {
    font-size: 34px;
  }
}
/* ============================= */
/* ABOUT CHARACTER SECTION */
/* ============================= */

.about-character {
  width: 100%;
  background: #1b1b1b;
  color: #f4f1ea;
  padding: 60px 20px;
}

.about-character-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.about-character-text {
  flex: 1 1 500px;
}

.about-character-text h2 {
  font-size: 2.4rem;
  font-weight: 900;
  color: #d6c49b;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-character-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0d8c0;
  opacity: 0.9;
}

.about-character-text em {
  color: #f7931a;
  font-style: italic;
  font-weight: 600;
}

.about-character-image {
  flex: 1 1 480px;
  text-align: center;
}

.about-character-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.about-character-image img:hover {
  transform: scale(1.03);
}

/* MOBILE */
@media (max-width: 768px) {
  .about-character {
    padding: 40px 15px;
  }

  .about-character-container {
    flex-direction: column;
    text-align: center;
  }

  .about-character-text h2 {
    font-size: 1.8rem;
  }

  .about-character-text p {
    font-size: 1rem;
  }
}
/* ============================= */
/* GAME PREVIEW SECTION (IFRAME BELOW TEXT) */
/* ============================= */

.game-preview-section {
  width: 100%;
  background: #0e0e0e;
  color: #f4f1ea;
  padding: 70px 20px;
}

.game-preview-container {
  max-width: 1200px;
  margin: 0 auto;
}

.game-preview-text {
  text-align: center;
  margin-bottom: 40px;
}

.game-preview-text h2 {
  font-size: 2.4rem;
  font-weight: 900;
  color: #f7931a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.game-preview-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0d8c0;
  max-width: 800px;
  margin: 0 auto;
}

.game-preview-text em {
  color: #ffb347;
  font-weight: 600;
  font-style: italic;
}

/* Игра (iframe) */
.game-preview-frame {
  width: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  background: #000;
}

.game-preview-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Адаптив */
@media (max-width: 768px) {
  .game-preview-section {
    padding: 50px 15px;
  }

  .game-preview-text h2 {
    font-size: 1.8rem;
  }

  .game-preview-text p {
    font-size: 1rem;
  }
}
/* ============================= */
/* FEATURES SECTION */
/* ============================= */

.features-section {
  background: #141414;
  color: #f4f1ea;
  padding: 70px 20px;
  text-align: center;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.feature-item {
  flex: 1 1 350px;
  background: #1c1c1c;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(247, 147, 26, 0.4);
}

.feature-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.feature-item h3 {
  color: #f7931a;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 20px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-item p {
  font-size: 1rem;
  color: #e0d8c0;
  line-height: 1.6;
  padding: 0 20px 25px;
}

/* MOBILE */
@media (max-width: 900px) {
  .features-container {
    flex-direction: column;
    align-items: center;
  }

  .feature-item {
    max-width: 600px;
  }

  .feature-item img {
    height: 200px;
  }
}
/* ============================= */
/* HERO ACCENT SECTION */
/* ============================= */

.hero-accent-section {
  background: linear-gradient(90deg, #f7931a 0%, #ff6b35 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.hero-accent-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.accent-item {
  flex: 1 1 350px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accent-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.accent-item h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fffdfa;
}

.accent-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: #fff9ec;
  opacity: 0.95;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-accent-container {
    flex-direction: column;
    align-items: center;
  }

  .accent-item {
    max-width: 600px;
  }

  .accent-item h3 {
    font-size: 1.3rem;
  }
}
/* FOOTER BASE */
.site-footer {
  background: #111;
  color: #e8e3d5;
  text-align: center;
  padding: 60px 20px 30px;
  font-family: "Segoe UI", Tahoma, sans-serif;
  font-size: 0.95rem;
  border-top: 2px solid rgba(247, 147, 26, 0.4);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ICONS ROW */
.footer-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin-bottom: 40px;
}

.footer-icons i {
  color: #f7931a;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-icons i:hover {
  color: #fff;
  transform: scale(1.15);
}

/* DISCLAIMER */
.footer-disclaimer {
  max-width: 900px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

.footer-disclaimer h3 {
  color: #f7931a;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-disclaimer a {
  color: #f7931a;
  text-decoration: none;
  font-weight: 600;
}

.footer-disclaimer a:hover {
  text-decoration: underline;
}

/* LINKS */
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
}

.footer-links a {
  color: #f3f0e5;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f7931a;
}

/* COPYRIGHT */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  font-size: 0.85rem;
  color: #b8b29a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-icons {
    flex-wrap: wrap;
    gap: 25px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer-disclaimer {
    font-size: 0.9rem;
  }
}
/* ============================= */
/* CUSTOM HEADER (About Page) */
/* ============================= */

.custom-header {
  position: relative;
  width: 100%;
  padding-top: 45px;
  overflow: hidden;
}

.custom-header-media img {
  width: 100%;
  height: 30vh;
  object-fit: cover;
  display: block;
}
@media (max-width: 546px) {
  .custom-header {
    padding-top: 50px;
  }
  .custom-header-media img {
    height: 40vh;
  }
}
.site-branding {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #f4f1ea;
}

.branding-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.custom-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(247, 147, 26, 0.6);
}

.site-title a {
  color: #f4f1ea;
  font-size: 2rem;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 1px;
}

.site-description {
  color: #d6c49b;
  font-size: 1.1rem;
  margin-top: 8px;
  opacity: 0.9;
}

/* Navigation top */
.navigation-top {
  background: rgba(10, 10, 10, 0.95);
  border-top: 3px solid #c76b2e;
  border-bottom: 1px solid rgba(198, 108, 46, 0.3);
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
}

.main-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  list-style: none;
  padding: 0;
}

.nav-list a {
  color: #d6c49b;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-list a:hover,
.nav-list a.active {
  color: #f7931a;
}

.menu-toggle {
  display: none;
  background: none;
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-list {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: rgba(10, 10, 10, 0.97);
    padding: 15px;
    border-top: 1px solid rgba(247, 147, 26, 0.2);
  }

  .nav-list.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
.about-section {
  background: #0f0f0f;
  color: #f4f1ea;
  padding: 90px 20px;
  position: relative;
  text-align: left;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/hero-bg.jpg") center/cover no-repeat;
  opacity: 0.25;
  z-index: 0;
}

.about-section .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.about-title {
  font-size: 2.6rem;
  color: #e9c77b;
  text-align: center;
  margin-bottom: 35px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-intro {
  font-size: 1.15rem;
  color: #f8f6f0;
  font-weight: 500;
  margin-bottom: 25px;
}

.about-section p {
  line-height: 1.8;
  color: #d6c49b;
  margin-bottom: 20px;
}

.about-quote {
  margin-top: 45px;
  border-left: 4px solid #c77b2e;
  padding-left: 20px;
  color: #ffdf9e;
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 500;
}
.disclaimer-section {
  background: #0c0c0c;
  color: #f4f1ea;
  padding: 90px 20px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.disclaimer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/disclaimer-bg.jpg") center/cover no-repeat;
  opacity: 0.25;
  z-index: 0;
}

.disclaimer-section .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title {
  font-size: 2.5rem;
  color: #e9c77b;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.disclaimer-subtitle {
  font-size: 1.6rem;
  color: #f7931a;
  margin-top: 40px;
  margin-bottom: 20px;
}

.disclaimer-section p {
  line-height: 1.8;
  color: #d6c49b;
  margin-bottom: 20px;
  font-size: 1rem;
}

.disclaimer-section a {
  color: #f7a440;
  font-weight: 600;
  text-decoration: none;
}

.disclaimer-section a:hover {
  color: #ffcf86;
  text-decoration: underline;
}

.disclaimer-quote {
  margin-top: 45px;
  border-left: 4px solid #c77b2e;
  padding-left: 20px;
  color: #ffdf9e;
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 500;
}
.contact-section {
  background: #0c0c0c url("assets/contact-bg.jpg") center/cover no-repeat;
  padding: 80px 20px;
  color: #f4f1ea;
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  z-index: 0;
}

.contact-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-size: 2.5rem;
  color: #f7931a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.contact-subtext {
  color: #d6c49b;
  margin-bottom: 60px;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  align-items: start;
}

.contact-info {
  text-align: left;
}

.contact-icon {
  background: #f7931a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  margin-bottom: 20px;
  box-shadow: 0 0 12px rgba(247, 147, 26, 0.4);
}

.contact-info h2 {
  color: #e9c77b;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.contact-info p {
  color: #d6c49b;
  margin-bottom: 25px;
  line-height: 1.7;
}

.contact-socials {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
}

.contact-socials a {
  color: #f4f1ea;
  font-size: 24px;
  transition: color 0.3s, transform 0.3s;
}

.contact-socials a:hover {
  color: #f7931a;
  transform: scale(1.15);
}

/* FORM STYLING */
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(247, 147, 26, 0.3);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #e9c77b;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group label span {
  color: #f7931a;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(20, 20, 20, 0.8);
  color: #f4f1ea;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #f7931a;
}

.submit-btn {
  display: inline-block;
  background: #f7931a;
  color: #0c0c0c;
  font-weight: 700;
  padding: 12px 32px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: background 0.3s, transform 0.2s;
}

.submit-btn:hover {
  background: #ffb24a;
  transform: translateY(-2px);
}
.terms-section {
  background: #0c0c0c url("assets/terms-bg.jpg") center/cover no-repeat;
  padding: 80px 20px;
  color: #f4f1ea;
  position: relative;
}

.terms-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  z-index: 0;
}

.terms-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.8;
}

.terms-title {
  text-align: center;
  color: #f7931a;
  font-size: 2.5rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.terms-date {
  text-align: center;
  color: #d6c49b;
  margin-bottom: 50px;
}

.terms-container h3 {
  color: #e9c77b;
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 1.4rem;
  border-left: 3px solid #f7931a;
  padding-left: 10px;
}

.terms-container ul {
  padding-left: 25px;
  margin: 10px 0 20px;
}

.terms-container ul li {
  margin-bottom: 8px;
}

.terms-container a {
  color: #f7931a;
  text-decoration: none;
  transition: color 0.3s;
}

.terms-container a:hover {
  color: #ffb24a;
}

.terms-container hr {
  border: none;
  height: 1px;
  background: rgba(247, 147, 26, 0.3);
  margin: 30px 0;
}
.privacy-section {
  background: #0c0c0c url("assets/privacy-bg.jpg") center/cover no-repeat;
  color: #f4f1ea;
  padding: 80px 20px;
  position: relative;
}

.privacy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  z-index: 0;
}

.privacy-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.privacy-title {
  text-align: center;
  color: #f7931a;
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.privacy-date {
  text-align: center;
  color: #d6c49b;
  margin-bottom: 50px;
}

.privacy-container h3 {
  color: #e9c77b;
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 1.4rem;
  border-left: 3px solid #f7931a;
  padding-left: 10px;
}

.privacy-container ul {
  padding-left: 25px;
  margin: 10px 0 20px;
}

.privacy-container ul li {
  margin-bottom: 8px;
}

.privacy-container a {
  color: #f7931a;
  text-decoration: none;
  transition: color 0.3s;
}

.privacy-container a:hover {
  color: #ffb24a;
}

.privacy-container hr {
  border: none;
  height: 1px;
  background: rgba(247, 147, 26, 0.3);
  margin: 30px 0;
}
.cookie-section {
  background: #0b0b0b url("assets/cookie-bg.jpg") center/cover no-repeat;
  color: #f8f5ee;
  padding: 80px 20px;
  position: relative;
}

.cookie-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  z-index: 0;
}

.cookie-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.cookie-title {
  text-align: center;
  color: #f7931a;
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.cookie-date {
  text-align: center;
  color: #d6c49b;
  margin-bottom: 40px;
}

.cookie-container h3 {
  color: #e9c77b;
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 1.4rem;
  border-left: 3px solid #f7931a;
  padding-left: 10px;
}

.cookie-container ul {
  padding-left: 25px;
  margin: 10px 0 20px;
}

.cookie-container ul li {
  margin-bottom: 10px;
}

.cookie-container a {
  color: #f7931a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cookie-container a:hover {
  color: #ffb24a;
}

.cookie-container hr {
  border: none;
  height: 1px;
  background: rgba(247, 147, 26, 0.3);
  margin: 30px 0;
}
/* ============================= */
/* AGE VERIFICATION MODAL */
/* ============================= */
.age-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.age-modal.active {
  visibility: visible;
  opacity: 1;
}

.age-modal-content {
  background: linear-gradient(135deg, #2b2b2b, #1a1a1a);
  border: 2px solid #f7931a;
  border-radius: 12px;
  padding: 40px 30px;
  max-width: 420px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 20px rgba(247, 147, 26, 0.4);
  animation: scaleIn 0.4s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.age-modal-content h2 {
  font-size: 1.8rem;
  color: #f7931a;
  margin-bottom: 15px;
}

.age-modal-content p {
  color: #d6c49b;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.age-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.age-btn {
  background: none;
  border: 2px solid #f7931a;
  color: #f7931a;
  padding: 10px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.age-btn:hover {
  background: #f7931a;
  color: #000;
}

.age-btn.no {
  border-color: #b42b1a;
  color: #ff7878;
}

.age-btn.no:hover {
  background: #b42b1a;
  color: #fff;
}
