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;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1 1 auto;
}

/* ===== AGE BANNER (fixed top) ===== */
.age-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #c1663d; /* терракотовый */
  color: #f8e3a1; /* светлый песок */
  text-align: center;
  padding: 8px 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(46, 31, 9, 0.3);
}

.age-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.age-text {
  font-weight: bold;
  font-size: 1rem;
  color: #faf3e0;
}

.age-subtext {
  font-size: 0.9rem;
  color: #f8e3a1;
  opacity: 0.9;
}

/* ===== HEADER ===== */
/* ===== HEADER ===== */
.header {
  background-color: #e4b169; /* песочно-золотой */
  border-bottom: 3px solid #c1663d;
  box-shadow: 0 4px 12px rgba(119, 62, 26, 0.3);
  padding: 15px 0;
  margin-top: 60px;
  position: relative;
  z-index: 10;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.header-logo a {
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
  color: #773e1a;
  transition: color 0.3s;
}

.header-logo a:hover {
  color: #2e1f09;
}

/* MENU */
.header-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}

.header-menu ul li a {
  text-decoration: none;
  color: #2e1f09;
  font-weight: 500;
  font-size: 1.2rem;
  transition: color 0.3s, border-bottom 0.3s;
  border-bottom: 2px solid transparent;
}

.header-menu ul li a:hover {
  color: #773e1a;
  border-bottom: 2px solid #c1663d;
}

/* ===== BURGER ===== */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 3px;
  background: #2e1f09;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* BURGER ACTIVE */
.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* MOBILE MENU */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .header-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #e4b169;
    border-top: 2px solid #c1663d;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
  }

  .header-menu.open {
    max-height: 300px;
    box-shadow: 0 8px 16px rgba(46, 31, 9, 0.4);
  }

  .header-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
  }

  .header-menu ul li a {
    font-size: 1.1rem;
  }
}

/* ===== DOMEIN HERO SECTION ===== */
.domein-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 120px); /* 60px age-banner + 60px header */
  overflow: hidden;
  background-color: #2e1f09; /* fallback если не загрузится фон */
}

.domein-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.domein-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

/* Контент */
.domein-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: #faf3e0;
  padding: 0 20px;
}

.domein-hero-container {
  max-width: 900px;
}

/* Заголовок */
.domein-hero-title {
  font-size: 3rem;
  color: #f8e3a1;
  text-shadow: 0 3px 8px rgba(46, 31, 9, 0.6);
  margin-bottom: 20px;
}

/* Текст */
.domein-hero-text {
  font-size: 1.2rem;
  color: #faf3e0;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Кнопка */
.domein-hero-btn {
  display: inline-block;
  background-color: #c1663d; /* терракотовый */
  color: #f8e3a1;
  font-weight: bold;
  text-decoration: none;
  padding: 14px 34px;
  border-radius: 6px;
  font-size: 1.1rem;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 10px rgba(46, 31, 9, 0.4);
}

.domein-hero-btn:hover {
  background-color: #773e1a; /* акцент */
  transform: translateY(-2px);
}

/* ADAPTIVE */
@media (max-width: 768px) {
  .domein-hero {
    height: calc(100vh - 110px);
  }

  .domein-hero-title {
    font-size: 2.2rem;
  }

  .domein-hero-text {
    font-size: 1rem;
  }

  .domein-hero-btn {
    font-size: 1rem;
    padding: 12px 26px;
  }
}

/* ===== DOMEIN INFO STRIP ===== */
.domein-info-strip {
  width: 100%;
  background-color: #4a1f1a; /* глубокий терракотово-коричневый */
  border-top: 2px solid #773e1a; /* акцент */
  border-bottom: 1px solid #2e1f09;
  padding: 14px 0;
}

.domein-info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.domein-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f8e3a1; /* светлый песок */
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.domein-info-item i {
  font-size: 1.4rem;
  color: #e4b169; /* песочно-золотой акцент */
  transition: transform 0.3s ease, color 0.3s ease;
}

.domein-info-item:hover i {
  color: #c1663d; /* терракотовый hover */
  transform: scale(1.15);
}

/* ADAPTIVE */
@media (max-width: 768px) {
  .domein-info-container {
    gap: 20px;
  }

  .domein-info-item {
    font-size: 0.9rem;
  }

  .domein-info-item i {
    font-size: 1.2rem;
  }
}

/* ===== DOMEIN WELCOME SECTION ===== */
.domein-welcome-area {
  width: 100%;
  display: inline-block;
  padding: 110px 0;
  background-color: #2e1f09; /* fallback фон */
  color: #f8e3a1;
}

/* LAYOUT */
.domein-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.domein-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.domein-col {
  flex: 1 1 50%;
}

/* TEXT PART */
.domein-welcome-text span {
  font-size: 1.1rem;
  color: #e4b169;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.domein-welcome-text h2 {
  color: #c1663d;
  font-weight: 700;
  font-size: 34px;
  font-family: "Pirata One", cursive;
  margin-bottom: 25px;
  margin-top: 12px;
  line-height: 42px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.domein-welcome-text p {
  color: #faf3e0;
  font-weight: 400;
  font-size: 17px;
  font-family: "Crimson Text", serif;
  line-height: 32px;
  letter-spacing: 1.1px;
  margin-bottom: 28px;
}

/* BUTTON */
.domein-welcome-text a {
  color: #f8e3a1;
  letter-spacing: 1.2px;
  font-weight: 500;
  font-size: 16px;
  border-radius: 30px;
  font-family: "Crimson Text", serif;
  text-align: center;
  border: 2px solid #c1663d;
  background: linear-gradient(45deg, #c1663d 0%, #773e1a 100%);
  padding: 12px 30px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 5px 18px rgba(119, 62, 26, 0.5);
}

.domein-welcome-text a:hover {
  background: linear-gradient(45deg, #e4b169 0%, #c1663d 100%);
  border: 2px solid #e4b169;
  color: #2e1f09;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(196, 102, 61, 0.6);
}

/* IMAGE */
.domein-welcome-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* ADAPTIVE */
@media (max-width: 992px) {
  .domein-row {
    flex-direction: column;
  }
  .domein-col {
    flex: 1 1 100%;
    text-align: center;
  }
  .domein-welcome-image img {
    max-width: 90%;
  }
}
/* ===== DOMEIN GAME AREA ===== */
.domein-game-area {
  width: 100%;
  padding: 110px 0 85px;
  background: linear-gradient(45deg, #4a1f1a 0%, #2e1f09 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* subtle texture overlay */
.domein-game-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("images/sand-texture.png") repeat;
  opacity: 0.08;
  pointer-events: none;
}

.domein-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.domein-game-area span {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1.2px;
  color: #e4b169; /* песочно-золотой */
}

.domein-game-area h2 {
  color: #f8e3a1;
  font-weight: 700;
  font-size: 42px;
  font-family: "Pirata One", cursive;
  margin: 25px 0 35px;
  line-height: 58px;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9);
  letter-spacing: 3px;
}

.domein-game-area p {
  color: #faf3e0;
  font-family: "Crimson Text", serif;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 1px;
  max-width: 800px;
  margin: 0 auto 22px;
  opacity: 0.9;
}

/* IFRAME */
.domein-iframe-container {
  position: relative;
  width: 100%;
  margin-top: 45px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}

.domein-responsive-iframe {
  width: 100%;
  height: 650px;
  border: none;
  background-color: #1b0e0b;
}

/* ADAPTIVE */
@media (max-width: 768px) {
  .domein-game-area {
    padding: 80px 0;
  }

  .domein-game-area h2 {
    font-size: 28px;
    line-height: 40px;
  }

  .domein-responsive-iframe {
    height: 500px;
  }
}
/* ===== DOMEIN FAQ SECTION ===== */
.domein-faq {
  width: 100%;
  background: linear-gradient(45deg, #4a1f1a 0%, #2e1f09 100%);
  padding: 100px 0;
}

.domein-faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.domein-faq h2 {
  font-family: "Pirata One", cursive;
  font-size: 42px;
  text-transform: uppercase;
  color: #e4b169;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 60px;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
}

/* GRID */
.domein-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* BUTTON STYLE */
.domein-faq-btn {
  width: 100%;
  text-align: left;
  background: linear-gradient(45deg, #773e1a 0%, #c1663d 100%);
  border: none;
  color: #faf3e0;
  font-family: "Crimson Text", serif;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 20px;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 0.8px;
  position: relative;
  transition: background 0.3s ease, color 0.3s ease;
}

.domein-faq-btn:hover {
  background: linear-gradient(45deg, #e4b169 0%, #c1663d 100%);
  color: #2e1f09;
}

/* CONTENT */
.domein-faq-content {
  display: none;
  background: rgba(46, 31, 9, 0.8);
  border-left: 4px solid #e4b169;
  border-radius: 0 0 10px 10px;
  padding: 18px 20px;
  animation: domein-fade 0.3s ease;
}

.domein-faq-content p {
  color: #faf3e0;
  font-family: "Crimson Text", serif;
  line-height: 28px;
  font-size: 16px;
}

.domein-faq-content a {
  color: #e4b169;
  text-decoration: none;
  font-weight: 600;
}

.domein-faq-content a:hover {
  text-decoration: underline;
}

/* ACTIVE STATE */
.domein-faq-item.active .domein-faq-content {
  display: block;
}

/* ANIMATION */
@keyframes domein-fade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ADAPTIVE */
@media (max-width: 900px) {
  .domein-faq-grid {
    grid-template-columns: 1fr;
  }

  .domein-faq h2 {
    font-size: 34px;
  }
}
/* ===== DOMEIN FEATURES SECTION ===== */
.domein-features {
  width: 100%;
  display: flex;
  padding: 110px 0;
  background: linear-gradient(45deg, #4a1f1a 0%, #2e1f09 100%);
  position: relative;
  overflow: hidden;
}

.domein-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 25% 70%,
      rgba(196, 102, 61, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 75% 25%,
      rgba(228, 177, 105, 0.08) 0%,
      transparent 60%
    );
  pointer-events: none;
}

/* HEADER */
.domein-section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.domein-section-header span {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 2px;
  color: #e4b169;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.domein-section-header h2 {
  font-family: "Pirata One", cursive;
  font-weight: 700;
  font-size: 44px;
  color: #c1663d;
  margin-bottom: 25px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
  line-height: 50px;
}

.domein-section-header p {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-size: 18px;
  color: #faf3e0;
  line-height: 32px;
  letter-spacing: 1px;
  max-width: 650px;
  margin: 0 auto;
}

/* GRID */
.domein-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

/* FEATURE CARD */
.domein-feature-card {
  background: linear-gradient(
    135deg,
    rgba(46, 31, 9, 0.9) 0%,
    rgba(26, 10, 10, 0.8) 100%
  );
  border: 2px solid rgba(193, 102, 61, 0.4);
  border-radius: 15px;
  padding: 40px 30px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.domein-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(196, 102, 61, 0.08) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.domein-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(228, 177, 105, 0.7);
  box-shadow: 0 15px 40px rgba(193, 102, 61, 0.3);
}

.domein-feature-card:hover::before {
  opacity: 1;
}

/* ICON */
.domein-feature-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #c1663d 0%, #773e1a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(193, 102, 61, 0.5);
  transition: all 0.4s ease;
}

.domein-feature-icon i {
  font-size: 28px;
  color: #faf3e0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.domein-feature-card:hover .domein-feature-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(228, 177, 105, 0.7);
}

/* CONTENT */
.domein-feature-content h3 {
  font-family: "Pirata One", cursive;
  font-weight: 700;
  font-size: 24px;
  color: #e4b169;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.domein-feature-content p {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-size: 16px;
  color: #faf3e0;
  line-height: 28px;
  letter-spacing: 0.5px;
  margin: 0;
}

/* CTA SECTION */
.domein-cta-section {
  text-align: center;
  position: relative;
  z-index: 2;
}

.domein-cta-section h3 {
  font-family: "Pirata One", cursive;
  font-weight: 700;
  font-size: 30px;
  color: #e4b169;
  margin-bottom: 10px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.domein-cta-section p {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-size: 18px;
  color: #faf3e0;
  margin-bottom: 25px;
}

.domein-cta-button {
  color: #2e1f09;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 36px;
  border-radius: 30px;
  background: linear-gradient(45deg, #e4b169 0%, #c1663d 100%);
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(228, 177, 105, 0.4);
  transition: all 0.3s ease;
}

.domein-cta-button:hover {
  background: linear-gradient(45deg, #c1663d 0%, #773e1a 100%);
  color: #faf3e0;
  box-shadow: 0 8px 30px rgba(193, 102, 61, 0.5);
}

/* ADAPTIVE */
@media (max-width: 768px) {
  .domein-features-grid {
    grid-template-columns: 1fr;
  }

  .domein-section-header h2 {
    font-size: 34px;
  }
}

/* ===== DOMEIN FOOTER ===== */
.domein-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(45deg, #4a1f1a 0%, #2e1f09 100%);
  padding-top: 65px;
  border-top: 3px solid #773e1a;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Логотип (18+) */
.domein-footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.domein-footer-age {
  font-size: 2rem;
  font-weight: bold;
  color: #e4b169;
  border: 2px solid #e4b169;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Pirata One", cursive;
  box-shadow: 0 0 15px rgba(228, 177, 105, 0.3);
}

/* FOOTER BACKGROUND */
.domein-footer-bg {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0 10px;
}

/* CONTAINER */
.domein-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* MENU */
.domein-footer-menu {
  font-size: 15px;
  font-weight: 400;
  line-height: 2.35;
  color: #faf3e0;
  margin-bottom: 20px;
}

.domein-footer-menu ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.domein-footer-menu ul li {
  display: block;
}

.domein-footer-menu ul li a {
  padding: 0 22px;
  display: block;
  font-family: "Crimson Text", serif;
  text-transform: uppercase;
  font-weight: 400;
  color: #faf3e0;
  text-decoration: none;
  font-size: 15px;
  line-height: 27px;
  letter-spacing: 1.6px;
  border-right: 2px solid #c1663d;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.domein-footer-menu ul li:last-child a {
  border-right: none;
}

.domein-footer-menu ul li a:hover {
  color: #e4b169;
  text-shadow: 0 0 12px rgba(228, 177, 105, 0.8);
}

/* COPYRIGHT TEXT */
.domein-footer-copy p {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  color: #faf3e0;
  font-size: 15px;
  line-height: 27px;
  letter-spacing: 1.1px;
  margin-top: 25px;
  opacity: 0.9;
}

/* ADAPTIVE */
@media (max-width: 768px) {
  .domein-footer-menu ul {
    flex-direction: column;
    align-items: center;
  }

  .domein-footer-menu ul li a {
    border: none;
    padding: 10px 0;
  }

  .domein-footer-age {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }
}
/* ===== DOMEIN ABOUT HEADER ===== */
.domein-inner-header {
  width: 100%;
  display: inline-block;
  background: linear-gradient(45deg, #4a1f1a 0%, #2e1f09 100%);
  position: relative;
  overflow: hidden;
  height: 70vh;
  min-height: max-content;
}

.domein-inner-header img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-position: center;
  object-fit: cover;
  opacity: 0.6;
  height: 100%;
}

.domein-banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 800px;
  z-index: 2;
  padding: 20px;
  background: rgba(46, 31, 9, 0.4);
  border-radius: 10px;
  backdrop-filter: blur(4px);
}

.domein-banner-text h2 {
  font-family: "Pirata One", cursive;
  font-weight: 700;
  letter-spacing: 2.5px;
  font-size: 64px;
  color: #e4b169;
  margin: 0 0 25px;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9);
}

.domein-banner-text p {
  color: #faf3e0;
  font-weight: 400;
  font-size: 18px;
  font-family: "Crimson Text", serif;
  line-height: 32px;
  letter-spacing: 1px;
  margin: 0 auto 18px;
  max-width: 700px;
}

.domein-banner-text a {
  color: #faf3e0;
  letter-spacing: 1.2px;
  font-weight: 500;
  font-size: 15px;
  font-family: "Crimson Text", serif;
  border: 2px solid #c1663d;
  background: linear-gradient(45deg, #c1663d 0%, #773e1a 100%);
  padding: 12px 30px;
  margin-top: 28px;
  display: inline-block;
  text-decoration: none;
  border-radius: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 18px rgba(193, 102, 61, 0.5);
}

.domein-banner-text a:hover {
  background: linear-gradient(45deg, #e4b169 0%, #c1663d 100%);
  text-decoration: none;
  color: #2e1f09;
  border: 2px solid #e4b169;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(193, 102, 61, 0.6);
}

/* ADAPTIVE */
@media (max-width: 768px) {
  .domein-banner-text h2 {
    font-size: 42px;
  }

  .domein-banner-text p {
    font-size: 16px;
    line-height: 28px;
  }
}
/* ===== DOMEIN DISCLAIMER PAGE ===== */
.domein-disclaimer-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
  position: relative;
  background: linear-gradient(45deg, #4a1f1a 0%, #2e1f09 100%);
  overflow: hidden;
}

/* Decorative lighting overlay */
.domein-disclaimer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 25% 70%,
      rgba(228, 177, 105, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 75% 30%,
      rgba(193, 102, 61, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
  opacity: 0.5;
}

.domein-disclaimer-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 90%;
  text-align: center;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: none;
  background: none;
  backdrop-filter: blur(6px);
}

/* TITLE */
.domein-disclaimer-title {
  font-family: "Pirata One", cursive;
  font-size: 60px;
  font-weight: 700;
  color: #e4b169;
  margin-bottom: 25px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
}

/* TEXT BLOCK */
.domein-disclaimer-text p {
  font-family: "Crimson Text", serif;
  color: #faf3e0;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.8px;
  margin-bottom: 22px;
  opacity: 0.95;
}

.domein-disclaimer-text strong {
  color: #e4b169;
  font-weight: 600;
}

/* ADAPTIVE */
@media (max-width: 768px) {
  .domein-disclaimer-section {
    padding: 80px 0;
  }

  .domein-disclaimer-title {
    font-size: 42px;
  }

  .domein-disclaimer-text p {
    font-size: 16px;
    line-height: 28px;
  }

  .domein-disclaimer-container {
    padding: 30px 20px;
  }
}
/* ===== DOMEIN DISCLAIMER DETAILS SECTION ===== */
.domein-disclaimer-details {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 110px 0;
  background: linear-gradient(45deg, #4a1f1a 0%, #2e1f09 100%);
  position: relative;
  overflow: hidden;
}

.domein-disclaimer-details::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(228, 177, 105, 0.1) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(193, 102, 61, 0.08) 0%,
      transparent 60%
    );
  pointer-events: none;
  opacity: 0.6;
}

/* CONTAINER */
.domein-disclaimer-container {
  position: relative;
  z-index: 2;
  max-width: 950px;
  width: 90%;
  padding: 45px 40px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
}
.domein-disclaimer-container.bg {
  background: rgba(46, 31, 9, 0.45);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}
/* HEADINGS */
.domein-disclaimer-container h3 {
  color: #e4b169;
  font-family: "Pirata One", cursive;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  margin-top: 35px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  letter-spacing: 1.5px;
}

/* TEXT */
.domein-disclaimer-container p {
  color: #faf3e0;
  font-family: "Crimson Text", serif;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}

.domein-disclaimer-container strong {
  color: #e4b169;
  font-weight: 600;
}

/* ADAPTIVE */
@media (max-width: 768px) {
  .domein-disclaimer-details {
    padding: 80px 0;
  }

  .domein-disclaimer-container {
    padding: 35px 25px;
  }

  .domein-disclaimer-container h3 {
    font-size: 22px;
  }

  .domein-disclaimer-container p {
    font-size: 16px;
    line-height: 28px;
  }
}
/* ===== CONTACT HEADER ===== */
.domein-contact-header {
  width: 100%;
  padding: 100px 0 60px;
  background: linear-gradient(45deg, #4A1F1A 0%, #2E1F09 100%);
  text-align: center;
  color: #FAF3E0;
}

.domein-contact-banner h2 {
  font-family: "Pirata One", cursive;
  font-size: 64px;
  color: #E4B169;
  margin-bottom: 20px;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
  letter-spacing: 2.5px;
}

.domein-contact-banner p {
  font-family: "Crimson Text", serif;
  font-size: 18px;
  line-height: 30px;
  color: #FAF3E0;
  max-width: 700px;
  margin: 0 auto;
  letter-spacing: 1px;
}

/* ===== CONTACT FORM SECTION ===== */
.domein-contact-form-section {
  background: linear-gradient(45deg, #E4B169 0%, #C1663D 100%);
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.domein-contact-container {
  width: 90%;
  max-width: 600px;
  background: #2E1F09;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(119, 62, 26, 0.5);
  padding: 40px 30px;
  position: relative;
}

.domein-contact-group {
  margin-bottom: 20px;
}

.domein-contact-input {
  width: 100%;
  background: rgba(248, 227, 161, 0.1);
  border: 2px solid #C1663D;
  border-radius: 32px;
  padding: 14px 20px;
  font-size: 16px;
  color: #FAF3E0;
  font-family: "Crimson Text", serif;
  outline: none;
  transition: all 0.3s ease;
}

.domein-contact-input::placeholder {
  color: #E4B169;
}

.domein-contact-input:focus {
  border-color: #E4B169;
  box-shadow: 0 0 12px rgba(228, 177, 105, 0.4);
}

.domein-contact-textarea {
  height: 160px;
  resize: none;
}

/* ===== SUBMIT BUTTON ===== */
.domein-contact-submit {
  width: 100%;
  border: none;
  border-radius: 32px;
  font-family: "Crimson Text", serif;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 18px;
  padding: 18px 0;
  font-weight: 600;
  color: #FAF3E0;
  background: linear-gradient(45deg, #773E1A 0%, #C1663D 100%);
  transition: all 0.3s ease;
  box-shadow: 0 5px 18px rgba(193, 102, 61, 0.5);
  cursor: pointer;
}

.domein-contact-submit:hover {
  background: linear-gradient(45deg, #E4B169 0%, #C1663D 100%);
  color: #2E1F09;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(193, 102, 61, 0.6);
}

/* ===== ADAPTIVE ===== */
@media (max-width: 768px) {
  .domein-contact-banner h2 {
    font-size: 42px;
  }
  .domein-contact-banner p {
    font-size: 16px;
  }
  .domein-contact-container {
    padding: 25px;
  }
}
/* ===== DOMEIN COOKIES SECTION ===== */
.domein-cookies-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 110px 0;
  background: linear-gradient(45deg, #4A1F1A 0%, #2E1F09 100%);
  position: relative;
  overflow: hidden;
}

.domein-cookies-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 75%, rgba(228, 177, 105, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 70% 30%, rgba(193, 102, 61, 0.06) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0.7;
}

/* CONTAINER */
.domein-cookies-container {
  position: relative;
  z-index: 2;
  max-width: 950px;
  width: 90%;
  background: rgba(46, 31, 9, 0.5);
  padding: 45px 40px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

/* HEADINGS */
.domein-cookies-container h3 {
  color: #E4B169;
  font-family: "Pirata One", cursive;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  margin-top: 35px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  letter-spacing: 1.5px;
}

/* PARAGRAPHS */
.domein-cookies-container p {
  color: #FAF3E0;
  font-family: "Crimson Text", serif;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}

.domein-cookies-container strong {
  color: #E4B169;
  font-weight: 600;
}

/* LISTS */
.domein-cookies-container ul {
  padding-left: 25px;
  margin-bottom: 20px;
}

.domein-cookies-container li {
  color: #FAF3E0;
  font-family: "Crimson Text", serif;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 0.6px;
  list-style: disc;
}

/* ADAPTIVE */
@media (max-width: 768px) {
  .domein-cookies-section {
    padding: 80px 0;
  }

  .domein-cookies-container {
    padding: 30px 25px;
  }

  .domein-cookies-container h3 {
    font-size: 22px;
  }

  .domein-cookies-container p,
  .domein-cookies-container li {
    font-size: 16px;
    line-height: 28px;
  }
}
/* ===== DOMEIN PRIVACY POLICY SECTION ===== */
.domein-privacy-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 110px 0;
  background: linear-gradient(45deg, #4A1F1A 0%, #2E1F09 100%);
  position: relative;
  overflow: hidden;
}

.domein-privacy-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 75%, rgba(228, 177, 105, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 70% 30%, rgba(193, 102, 61, 0.06) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0.6;
}

/* CONTAINER */
.domein-privacy-container {
  position: relative;
  z-index: 2;
  max-width: 950px;
  width: 90%;
  background: rgba(46, 31, 9, 0.45);
  padding: 45px 40px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

/* HEADINGS */
.domein-privacy-container h3 {
  color: #E4B169;
  font-family: "Pirata One", cursive;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  margin-top: 35px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  letter-spacing: 1.5px;
}

/* PARAGRAPHS */
.domein-privacy-container p {
  color: #FAF3E0;
  font-family: "Crimson Text", serif;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}

.domein-privacy-container strong {
  color: #E4B169;
  font-weight: 600;
}

/* LISTS */
.domein-privacy-container ul {
  padding-left: 25px;
  margin-bottom: 20px;
}

.domein-privacy-container li {
  color: #FAF3E0;
  font-family: "Crimson Text", serif;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 0.6px;
  list-style: disc;
}

/* ADAPTIVE */
@media (max-width: 768px) {
  .domein-privacy-section {
    padding: 80px 0;
  }

  .domein-privacy-container {
    padding: 30px 25px;
  }

  .domein-privacy-container h3 {
    font-size: 22px;
  }

  .domein-privacy-container p,
  .domein-privacy-container li {
    font-size: 16px;
    line-height: 28px;
  }
}
/* ===== DOMEIN TERMS SECTION ===== */
.domein-terms-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 110px 0;
  background: linear-gradient(45deg, #4A1F1A 0%, #2E1F09 100%);
  position: relative;
  overflow: hidden;
}

.domein-terms-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 75%, rgba(228, 177, 105, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 70% 30%, rgba(193, 102, 61, 0.06) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0.7;
}

/* CONTAINER */
.domein-terms-container {
  position: relative;
  z-index: 2;
  max-width: 950px;
  width: 90%;
  background: rgba(46, 31, 9, 0.45);
  padding: 45px 40px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

/* HEADINGS */
.domein-terms-container h3 {
  color: #E4B169;
  font-family: "Pirata One", cursive;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  margin-top: 35px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  letter-spacing: 1.5px;
}

/* PARAGRAPHS */
.domein-terms-container p {
  color: #FAF3E0;
  font-family: "Crimson Text", serif;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}

.domein-terms-container strong {
  color: #E4B169;
  font-weight: 600;
}

/* LISTS */
.domein-terms-container ul {
  padding-left: 25px;
  margin-bottom: 20px;
}

.domein-terms-container li {
  color: #FAF3E0;
  font-family: "Crimson Text", serif;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 0.6px;
  list-style: disc;
}

/* ADAPTIVE */
@media (max-width: 768px) {
  .domein-terms-section {
    padding: 80px 0;
  }

  .domein-terms-container {
    padding: 30px 25px;
  }

  .domein-terms-container h3 {
    font-size: 22px;
  }

  .domein-terms-container p,
  .domein-terms-container li {
    font-size: 16px;
    line-height: 28px;
  }
}
/* ===== AGE POPUP ===== */
.domein-age-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 31, 9, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.4s ease;
}

.domein-age-popup-content {
  background: linear-gradient(45deg, #4A1F1A 0%, #2E1F09 100%);
  border: 3px solid #C1663D;
  border-radius: 16px;
  padding: 50px 40px;
  max-width: 540px;
  width: 90%;
  text-align: center;
  color: #FAF3E0;
  box-shadow: 0 0 35px rgba(193, 102, 61, 0.6);
  font-family: "Crimson Text", serif;
  animation: scaleIn 0.4s ease;
}

.domein-age-popup-content h2 {
  font-family: "Pirata One", cursive;
  font-size: 42px;
  color: #E4B169;
  margin-bottom: 18px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.domein-age-popup-content p {
  font-size: 18px;
  line-height: 30px;
  color: #FAF3E0;
  margin-bottom: 40px;
  letter-spacing: 0.8px;
}

.domein-age-btn {
  background: linear-gradient(45deg, #C1663D 0%, #773E1A 100%);
  color: #FAF3E0;
  font-size: 18px;
  font-family: "Crimson Text", serif;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border: none;
  padding: 15px 45px;
  border-radius: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 18px rgba(193, 102, 61, 0.5);
}

.domein-age-btn:hover {
  background: linear-gradient(45deg, #E4B169 0%, #C1663D 100%);
  color: #2E1F09;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(193, 102, 61, 0.6);
}

/* === ANIMATIONS === */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.fade-out {
  animation: fadeOut 0.4s ease forwards;
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
