@charset "UTF-8";
@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/Roboto.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "Roboto", sans-serif;
}

:root {
  --dmn-light-blue: #CCD9E2;
  --dmn-dark-blue: #295185;
  --dmn-copper-red: #D6793E;
  --dmn-copper-rose: #6E4748;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.dmn-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(
        180deg,
        rgba(11, 28, 45, 0.85),
        rgba(11, 28, 45, 0.65)
    );
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== TOP BAR ===== */
.dmn-header-top {
    padding: 8px 5%;
    text-align: center;
    background: linear-gradient(90deg, #10283f, #0b1c2d);
}

.dmn-18plus-warning {
    font-size: 12px;
    color: #ccd9e2;
    opacity: 0.85;
}

/* ===== MAIN HEADER ===== */
.dmn-header-main {
    padding: 8px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===== LOGO ===== */
.dmn-logo img {
    height: 64px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.dmn-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 14px rgba(245, 215, 110, 0.4));
}
.dmn-about {
    padding: 110px 5%;
    background: radial-gradient(
        circle at left top,
        rgba(245, 215, 110, 0.08),
        transparent 40%
    ),
    linear-gradient(180deg, #0f2a44, #0b1c2d);
}

.dmn-about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* IMAGE */
.dmn-about-image img {
    width: 100%;
    border-radius: 26px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    transition: transform 0.4s ease;
}

.dmn-about-image img:hover {
    transform: translateY(-6px);
}

/* TEXT */
.dmn-about-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0b1c2d;
    background: linear-gradient(135deg, #f5d76e, #ffd84d);
}

.dmn-about-text h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
}

.dmn-about-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #ccd9e2;
    margin-bottom: 18px;
}

/* FEATURES */
.dmn-about-features {
    margin-top: 30px;
    display: grid;
    gap: 12px;
}

.dmn-about-feature {
    font-size: 15px;
    color: #ffffff;
    opacity: 0.9;
}

/* ===== MENU ===== */
.dmn-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}
@media (max-width: 900px) {
    .dmn-menu {
        display: none;
    }

    .dmn-header-buttons {
        display: none;
    }

    .dmn-burger {
        display: flex;
    }
}

.dmn-menu-list {
    display: flex;
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dmn-menu-list a {
    position: relative;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.dmn-menu-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f5d76e, #ffd84d);
    transition: width 0.3s ease;
}

.dmn-menu-list a:hover {
    opacity: 1;
}

.dmn-menu-list a:hover::after {
    width: 100%;
}

/* ===== BUTTONS ===== */
.dmn-btn-login,
.dmn-btn-register {
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dmn-btn-login {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dmn-btn-login:hover {
    background: rgba(255, 255, 255, 0.12);
}

.dmn-btn-register {
    background: linear-gradient(135deg, #f5d76e, #ffd84d);
    color: #0b1c2d;
    box-shadow: 0 10px 25px rgba(245, 215, 110, 0.35);
}

.dmn-btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(245, 215, 110, 0.55);
}

/* ===== BURGER ===== */
.dmn-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.dmn-burger span {
    width: 26px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}


.dmn-main {
  background-color: var(--dmn-light-blue);
  min-height: 300px;
  color: var(--dmn-dark-blue);
}

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

/* Бургер */
.dmn-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.dmn-burger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  transition: 0.3s;
}

.dmn-burger-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.dmn-burger-active span:nth-child(2) {
  opacity: 0;
}

.dmn-burger-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.dmn-menu-buttons {
  display: none;
}

@media (max-width: 768px) {
  .dmn-header-buttons {
    display: none;
  }
  .dmn-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--dmn-dark-blue);
    display: none;
    flex-direction: column;
    text-align: center;
    padding-bottom: 10px;
    z-index: 100;
  }
  .dmn-menu.dmn-menu-active {
    display: flex;
  }
  .dmn-menu ul {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }
  .dmn-burger {
    display: flex;
  }
  .dmn-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }
  .dmn-menu-buttons .dmn-btn-login,
  .dmn-menu-buttons .dmn-btn-register {
    width: 80%;
    margin: 0 auto;
  }
}
.dmn-hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 150px 20px;
  color: white;
  background: linear-gradient(135deg, #D6793E, #295185);
  overflow: hidden;
}

.dmn-hero::before,
.dmn-hero::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 70%);
  animation: dmn-shape-move 20s linear infinite;
  z-index: 0;
}

.dmn-hero::after {
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 70%);
  animation-duration: 30s;
}

@keyframes dmn-shape-move {
  0% {
    transform: rotate(0deg) translate(0, 0);
  }
  50% {
    transform: rotate(180deg) translate(20px, 20px);
  }
  100% {
    transform: rotate(360deg) translate(0, 0);
  }
}
.dmn-hero-content {
  position: relative;
  z-index: 1;
}

.dmn-hero-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.dmn-hero-content p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.dmn-hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.dmn-btn-hero {
  padding: 12px 28px;
  background-color: #D6793E;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s;
}

.dmn-btn-hero:hover {
  background-color: #6E4748;
  /* Copper Rose */
}

.dmn-btn-hero-alt {
  background-color: #295185;
  color: white;
}

.dmn-btn-hero-alt:hover {
  background-color: #6E4748;
}

@media (max-width: 768px) {
  .dmn-hero-content h2 {
    font-size: 32px;
  }
  .dmn-hero-content p {
    font-size: 16px;
  }
  .dmn-hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .dmn-btn-hero,
  .dmn-btn-hero-alt {
    width: 80%;
    margin: 0 auto;
  }
}
.dmn-games {
  background-color: #CCD9E2;
  padding: 80px 20px 80px;
  text-align: center;
}

.dmn-section-title {
  font-size: 36px;
  color: #fff;
  margin-bottom: 40px;
}

.dmn-games-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.dmn-game-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  width: 300px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dmn-game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.25);
}

.dmn-game-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.dmn-game-title {
  font-size: 22px;
  color: var(--dmn-dark-blue);
  margin-bottom: 10px;
}

.dmn-game-desc {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: center;
}

.dmn-section-subtitle {
  font-size: 16px;
  color: #fff;
  max-width: 700px;
  margin: 10px auto 30px;
  text-align: center;
  line-height: 1.5;
}

.dmn-btn-game {
  padding: 10px 25px;
  background-color: var(--dmn-copper-red);
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s;
}

.dmn-btn-game:hover {
  background-color: var(--dmn-copper-rose);
}

@media (max-width: 992px) {
  .dmn-games-list {
    gap: 20px;
  }
  .dmn-game-card {
    width: 45%;
  }
}
@media (max-width: 600px) {
  .dmn-games-list {
    gap: 15px;
  }
  .dmn-game-card {
    width: 100%;
  }
  .dmn-section-title {
    font-size: 28px;
  }
}
/* Manual / How to Play */
.dmn-manual {
  background-color: #CCD9E2;
  padding: 20px 20px 80px;
  text-align: center;
}

.dmn-manual-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.dmn-manual-item {
  background-color: white;
  border-left: 6px solid var(--dmn-copper-red);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  width: 320px;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.dmn-manual-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.18);
}

.dmn-manual-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.dmn-manual-icon {
  font-size: 28px;
  color: var(--dmn-copper-red);
}

.dmn-manual-header h3 {
  font-size: 20px;
  color: var(--dmn-dark-blue);
  margin: 0;
}

.dmn-manual-steps {
  list-style: decimal inside;
  padding-left: 0;
  color: #444;
  font-size: 14px;
  line-height: 1.5;
}

.dmn-lotto {
    padding: 120px 5%;
    background:
        radial-gradient(circle at top, rgba(245,215,110,.08), transparent 45%),
        linear-gradient(180deg, #0f2a44, #0b1c2d);
}

.dmn-lotto-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.dmn-lotto-head {
    text-align: center;
    margin-bottom: 60px;
}

.dmn-lotto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.dmn-lotto-card {
    background: rgba(255,255,255,0.04);
    border-radius: 28px;
    padding: 36px;
    backdrop-filter: blur(12px);
    box-shadow: 0 30px 60px rgba(0,0,0,.35);
}

.dmn-lotto-title {
    color: #fff;
    margin-bottom: 24px;
    font-size: 22px;
}

/* NUMBERS */
.dmn-numbers-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.dmn-number-btn {
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all .25s ease;
}

.dmn-number-btn:hover {
    border-color: #f5d76e;
    color: #f5d76e;
}

.dmn-number-btn.selected {
    background: linear-gradient(135deg, #f5d76e, #ffd84d);
    color: #0b1c2d;
    border-color: transparent;
    font-weight: 600;
}

.dmn-lotto-actions {
    display: flex;
    gap: 14px;
}

/* SUMMARY */
.dmn-summary-list {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
    color: #cbd6df;
}

.dmn-summary-list li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.dmn-selected-numbers {
    padding: 16px;
    border-radius: 18px;
    background: rgba(0,0,0,.25);
    color: #f5d76e;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.dmn-summary-total {
    margin-bottom: 26px;
    color: #fff;
}

/* BUTTONS */
.dmn-btn {
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
}

.dmn-btn-primary {
    background: linear-gradient(135deg, #f5d76e, #ffd84d);
    color: #0b1c2d;
}

.dmn-btn-gold {
    background: rgba(245,215,110,.15);
    color: #f5d76e;
    border: 1px solid rgba(245,215,110,.5);
}

.dmn-btn-outline {
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    background: transparent;
}

.dmn-btn-full {
    width: 100%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .dmn-lotto-grid {
        grid-template-columns: 1fr;
    }

    .dmn-numbers-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.dmn-success-message {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(245,215,110,.2), rgba(255,216,77,.15));
    color: #f5d76e;
    text-align: center;
    font-weight: 500;
    line-height: 1.4;
    display: none;
    animation: fadeInUp .5s ease forwards;
}

.dmn-contact {
    padding: 120px 5%;
    background: linear-gradient(135deg, #081a2b, #0b2238);
    color: #ffffff;
}

.dmn-contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* TEXT SIDE */
.dmn-contact-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(245,215,110,.15);
    color: #f5d76e;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 16px;
}

.dmn-contact-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.dmn-contact-text p {
    max-width: 520px;
    font-size: 16px;
    line-height: 1.6;
    color: #cbd6df;
    margin-bottom: 30px;
}

/* HIGHLIGHTS */
.dmn-contact-highlights {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.dmn-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.05);
    padding: 12px 18px;
    border-radius: 14px;
    font-size: 14px;
}

/* FORM */
.dmn-contact-form {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(12px);
    padding: 36px;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(0,0,0,.3);
}

.dmn-contact-form h3 {
    font-size: 22px;
    margin-bottom: 24px;
}

.dmn-form-group {
    margin-bottom: 16px;
}

.dmn-form-group input,
.dmn-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    border: none;
    outline: none;
    background: rgba(255,255,255,.08);
    color: #ffffff;
    font-size: 14px;
}

.dmn-form-group input::placeholder,
.dmn-form-group textarea::placeholder {
    color: #9fb0c1;
}

/* BUTTON */
.dmn-btn-primary {
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, #f5d76e, #ffd84d);
    color: #071420;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.dmn-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(245,215,110,.4);
}

.dmn-contact-note {
    margin-top: 14px;
    font-size: 12px;
    text-align: center;
    color: #9fb0c1;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
  .dmn-manual-item {
    width: 45%;
  }
}
@media (max-width: 600px) {
  .dmn-manual-item {
    width: 100%;
  }
}
.dmn-faq {
  background-color: var(--dmn-dark-blue);
  padding: 60px 20px;
  text-align: center;
}

.dmn-faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
}

/* FAQ элемент */
.dmn-faq-item {
  margin-bottom: 15px;
  border-left: 5px solid var(--dmn-copper-red);
  border-radius: 6px;
  overflow: hidden;
}

/* Вопрос */
.dmn-faq-question {
  width: 100%;
  background-color: var(--dmn-light-blue);
  color: var(--dmn-dark-blue);
  border: none;
  padding: 15px 20px;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
}

.dmn-faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  color: var(--dmn-copper-red);
  transition: transform 0.3s;
}

/* Активный вопрос */
.dmn-faq-item.active .dmn-faq-question::after {
  transform: rotate(45deg);
}

/* Ответ */
.dmn-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: white;
  color: #444;
  padding: 0 20px;
}

.dmn-faq-item.active .dmn-faq-answer {
  max-height: 200px;
  padding: 15px 20px;
}

/* FAQ блок с анимированным градиентом Dark Blue → Copper Red */
.dmn-faq {
  position: relative;
  background: linear-gradient(135deg, #295185, #D6793E);
  background-size: 200% 200%;
  animation: dmn-faq-gradient 12s ease infinite;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

/* Декоративные мягкие фигуры */
.dmn-faq::before,
.dmn-faq::after {
  content: "";
  position: absolute;
  width: 180%;
  height: 180%;
  top: -40%;
  left: -40%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 70%);
  animation: dmn-faq-shapes 25s linear infinite;
  z-index: 0;
}

.dmn-faq::after {
  animation-duration: 35s;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.09), transparent 70%);
}

/* Контент поверх анимации */
.dmn-faq * {
  position: relative;
  z-index: 1;
}

/* Анимация градиента */
@keyframes dmn-faq-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* Анимация фигур */
@keyframes dmn-faq-shapes {
  0% {
    transform: rotate(0deg) translate(0, 0);
  }
  50% {
    transform: rotate(180deg) translate(30px, 30px);
  }
  100% {
    transform: rotate(360deg) translate(0, 0);
  }
}
/* Footer */
.dmn-footer {
    background: linear-gradient(180deg, #0b1c2d, #071420);
    color: #cbd6df;
    font-size: 14px;
}

/* TOP WARNING */
.dmn-footer-top {
    padding: 18px 5%;
    background: rgba(245, 215, 110, 0.08);
    text-align: center;
}

.dmn-footer-top a {
    color: #f5d76e;
    text-decoration: underline;
}

/* MAIN */
.dmn-footer-main {
    padding: 70px 5% 50px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 25px;
}

/* BRAND */
.dmn-footer-logo img {
    max-width: 190px;
}

.dmn-footer-brand p {
    max-width: 420px;
    line-height: 1.6;
}

/* INFO */
.dmn-footer-info p {
    max-width: 700px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 15px 0;
}

/* LINKS */
.dmn-footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.dmn-footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.dmn-footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #f5d76e;
    transition: width 0.3s ease;
}

.dmn-footer-links a:hover::after {
    width: 100%;
}

/* LOGOS */
.dmn-footer-logos {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.dmn-footer-logos img {
    max-height: 55px;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dmn-footer-logos img:hover {
    opacity: 1;
    transform: translateY(-3px);
}

/* BOTTOM */
.dmn-footer-bottom {
    padding: 18px 5%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
    opacity: 0.8;
}

/* Terms of Use */
.dmn-terms {
  background-color: var(--dmn-light-blue);
  padding: 60px 20px;
}

.dmn-terms-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 35px;
  background-color: #ffffff;
  border: 2px solid var(--dmn-copper-red);
  border-radius: 10px;
  color: #333;
  line-height: 1.7;
  font-size: 15px;
}


.dmn-terms-content h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--dmn-dark-blue);
  font-size: 18px;
}


.dmn-terms-content p {
  margin-bottom: 15px;
}

.dmn-section-title {
  text-align: center;
}

/* Responsible Gaming */
.dmn-responsible {
  background-color: var(--dmn-light-blue);
  padding: 60px 20px;
}

.dmn-responsible-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 35px;
  background-color: #ffffff;
  border: 2px solid var(--dmn-copper-red);
  border-radius: 10px;
  color: #333;
  line-height: 1.7;
  font-size: 15px;
}

.dmn-responsible-content h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--dmn-dark-blue);
  font-size: 18px;
}

.dmn-responsible-content p {
  margin-bottom: 15px;
}

/* Privacy Policy */
.dmn-privacy {
  background-color: var(--dmn-light-blue);
  padding: 60px 20px;
}

.dmn-privacy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 35px;
  background-color: #ffffff;
  border: 2px solid var(--dmn-copper-red);
  border-radius: 10px;
  color: #333;
  line-height: 1.7;
  font-size: 15px;
}

.dmn-privacy-content h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--dmn-dark-blue);
  font-size: 18px;
}

.dmn-privacy-content p {
  margin-bottom: 15px;
}

/* Cookie Policy */
.dmn-cookie {
  background-color: var(--dmn-light-blue);
  padding: 60px 20px;
}

.dmn-cookie-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 35px;
  background-color: #ffffff;
  border: 2px solid var(--dmn-copper-red);
  border-radius: 10px;
  color: #333;
  line-height: 1.7;
  font-size: 15px;
}

.dmn-cookie-content h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--dmn-dark-blue);
  font-size: 18px;
}

.dmn-cookie-content p {
  margin-bottom: 15px;
}

/* Registration Section */
.dmn-register-background {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 150px 20px;
  background: linear-gradient(135deg, #D6793E, #295185);
  overflow: hidden;
}

.dmn-register-background::before,
.dmn-register-background::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 70%);
  animation: dmn-shape-move 20s linear infinite;
  z-index: 0;
}

.dmn-register-background::after {
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 70%);
  animation-duration: 30s;
}

@keyframes dmn-shape-move {
  0% {
    transform: rotate(0deg) translate(0, 0);
  }
  50% {
    transform: rotate(180deg) translate(20px, 20px);
  }
  100% {
    transform: rotate(360deg) translate(0, 0);
  }
}
/* Box */
.dmn-register-box {
  position: relative;
  z-index: 1;
  background-color: #CCD9E2;
  border: 2px solid #D6793E;
  border-radius: 10px;
  padding: 40px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  text-align: center;
}

/* Title */
.dmn-register-box h2 {
  margin-bottom: 25px;
  color: #295185;
}

/* Form */
.dmn-register-box form {
  display: flex;
  flex-direction: column;
}

.dmn-register-box label {
  margin-bottom: 5px;
  font-weight: bold;
  color: #295185;
  text-align: left;
}

.dmn-register-box input[type=email],
.dmn-register-box input[type=password] {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #295185;
  border-radius: 6px;
  font-size: 14px;
}

.dmn-register-box .dmn-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.dmn-register-box .dmn-checkbox label {
  margin-left: 8px;
  font-weight: normal;
  color: #295185;
}

/* Button */
.dmn-register-box .dmn-btn-hero {
  padding: 12px 0;
  background-color: #D6793E;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.dmn-register-box .dmn-btn-hero:hover {
  background-color: #6E4748;
}
.dmn-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.dmn-popup-overlay.active {
    display: flex;
}

.dmn-popup {
    background: #ffffff;
    padding: 28px 32px;
    border-radius: 14px;
    max-width: 420px;
    width: 90%;
    text-align: center;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: popupFade 0.35s ease;
}

.dmn-popup-icon {
    display: block;
    font-size: 36px;
    color: #16a34a;
    margin-bottom: 12px;
}

.dmn-popup p {
    font-size: 15px;
    line-height: 1.5;
    color: #1f2937;
    margin: 0;
}

@keyframes popupFade {
    from {
        transform: translateY(10px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.dmn-register-message {
  min-width: 320px;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #D6793E;
  color: white;
  padding: 30px 50px;

  border-radius: 12px;
  border: 3px solid #295185;
  
  font-weight: bold;
  font-size: 20px;
  
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.35);
  z-index: 10;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s;
}

@media (max-width: 768px) {
  .dmn-register-box {
    padding: 25px;
  }
}
/* Login Section */
.dmn-login-background {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 150px 20px;
  background: linear-gradient(135deg, #D6793E, #295185);
  overflow: hidden;
}

.dmn-login-background::before,
.dmn-login-background::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 70%);
  animation: dmn-shape-move 20s linear infinite;
  z-index: 0;
}

.dmn-login-background::after {
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 70%);
  animation-duration: 30s;
}

.dmn-login-box {
  position: relative;
  z-index: 1;
  background-color: #CCD9E2;
  border: 2px solid #D6793E;
  border-radius: 10px;
  padding: 40px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.dmn-login-box h2 {
  margin-bottom: 25px;
  color: #295185;
}

.dmn-login-box form {
  display: flex;
  flex-direction: column;
}

.dmn-login-box label {
  margin-bottom: 5px;
  font-weight: bold;
  color: #295185;
  text-align: left;
}

.dmn-login-box input[type=email],
.dmn-login-box input[type=password] {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #295185;
  border-radius: 6px;
  font-size: 14px;
}

.dmn-login-box .dmn-btn-hero {
  padding: 12px 0;
  background-color: #D6793E;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.dmn-login-box .dmn-btn-hero:hover {
  background-color: #6E4748;
}

/* Message Box */
.dmn-login-message {
  min-width: 320px;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #D6793E;
  color: white;
  padding: 30px 50px;
  border-radius: 12px;
  border: 3px solid #295185;
  font-weight: bold;
  font-size: 20px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.35);
  z-index: 10;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s;
}



.dmn-packages {
    padding: 100px 5%;
    background: linear-gradient(180deg, #0b1c2d, #0f2a44);
    text-align: center;
}

.dmn-packages-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.dmn-package-card {
    background: #10283f;
    border-radius: 20px;
    padding: 40px 30px;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dmn-package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.dmn-package-highlight {
    border: 2px solid #f5d76e;
}

.dmn-package-name {
    font-size: 22px;
    margin-bottom: 6px;
}

.dmn-package-level {
    color: #f5d76e;
    font-size: 14px;
    margin-bottom: 20px;
}

.dmn-package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.dmn-package-features li {
    margin-bottom: 10px;
    font-size: 15px;
    opacity: 0.9;
}

.dmn-package-price {
    margin-bottom: 25px;
}

.dmn-price {
    font-size: 36px;
    font-weight: 700;
}

.dmn-price-note {
    display: block;
    font-size: 13px;
    opacity: 0.7;
}

.dmn-btn-package {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    background: #f5d76e;
    color: #0b1c2d;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dmn-btn-package:hover {
    background: #ffd84d;
}



@media (max-width: 768px) {
  .dmn-login-box {
    padding: 25px;
  }
}
.dmn-hero {
    padding: 80px 6%;
}

.dmn-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.dmn-hero-text {
    max-width: 520px;
}

.dmn-hero-badge {
    display: inline-block;
    background: #e2cc6f;
    color: #111;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.dmn-hero-text h2 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.dmn-hero-text p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 28px;
}

.dmn-hero-prize {
    border: 1px solid #e2cc6f;
    border-radius: 12px;
    padding: 18px 26px;
    margin-bottom: 30px;
    display: inline-block;
}

.dmn-hero-prize strong {
    display: block;
    font-size: 34px;
    color: #e2cc6f;
}

.dmn-hero-prize span {
    font-size: 14px;
    color: #fff;
}

.dmn-hero-buttons {
    display: flex;
    gap: 14px;
}

.dmn-btn-hero {
    padding: 14px 26px;
    border-radius: 999px;
    background: #e2cc6f;
    color: #111;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.dmn-btn-hero:hover {
    background: #d4bc5f;
}

.dmn-btn-hero-alt {
    background: transparent;
    border: 1px solid #e2cc6f;
}

.dmn-btn-hero-alt:hover {
    background: rgba(226, 204, 111, 0.15);
}

.dmn-hero-image img {
    max-width: 480px;
    width: 100%;
    border-radius: 16px;
}
@media (max-width: 1024px) {
    .dmn-hero-content {
        gap: 40px;
    }

    .dmn-hero-text h2 {
        font-size: 36px;
    }

    .dmn-hero-image img {
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    .dmn-hero {
        padding: 60px 5%;
    }

    .dmn-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .dmn-hero-text {
        max-width: 100%;
    }

    .dmn-hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .dmn-hero-prize {
        margin-left: auto;
        margin-right: auto;
    }

    .dmn-hero-image img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .dmn-hero-text h2 {
        font-size: 28px;
    }

    .dmn-hero-text p {
        font-size: 15px;
    }

    .dmn-btn-hero {
        width: 100%;
        text-align: center;
    }
}


/*# sourceMappingURL=style.css.map */
