/* Core Reset & Typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Rubik', sans-serif;
  background-color: #ffffff;
  color: #1e1e1e;
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Unbounded', cursive;
  font-weight: 700;
  color: #0f0f0f;
}

h1 { font-size: 36px; }
h2 { font-size: 28px; }
h3 { font-size: 22px; }

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

/* Theme Variables */
:root {
  --theme-bg: #ffffff;
  --theme-dark: #1a1a1a;
  --theme-accent: #ff694b;
  --theme-muted: #b4b4b4;
  --theme-highlight: #f4f4f4;

  --theme-radius: 10px;
  --theme-transition: all 0.3s ease;
  --theme-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Layout Basics */
:root {
  --main-color: #384aff;
  --accent-color: #f47a59;
  --radius: 12px;
}

.dvh-head {
  background: #fff;
  padding: 16px 24px;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.dvh-head__container {
  max-width: 1280px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dvh-logo {
  display: flex;
  align-items: center;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.dvh-logo img {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}

.dvh-nav__list,
.dvh-nav__mobile {
  list-style: none;
  display: flex;
  gap: 24px;
  font-family: 'Rubik', sans-serif;
}

.dvh-nav__mobile {
  display: none;
  flex-direction: column;
  background: #fff;
  position: absolute;
  top: 70px;
  right: 20px;
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.dvh-nav__mobile.show {
  display: flex;
}

.dvh-cta {
  background: var(--main-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  border: none;
}

.dvh-burger {
  display: none;
  font-size: 20px;
  background: none;
  border: none;
}

@media (max-width: 768px) {
  .dvh-nav {
    display: none;
  }
  .dvh-burger {
    display: block;
  }
}

.dvh-hero {
  position: relative;
  padding: 100px 24px;
  background:
    radial-gradient(circle at 20% 20%, #d1f3ff 0%, transparent 50%),
    radial-gradient(circle at 80% 40%, #ffd1dc 0%, transparent 60%),
    linear-gradient(135deg, #b9deed 0%, #f7faff 100%);
  color: #1a1a1a;
  text-align: center;
  overflow: hidden;
}

.dvh-hero__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.05);
  z-index: 1;
}

.dvh-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}

.dvh-hero h1 {
  font-size: 40px;
  margin-bottom: 16px;
  font-family: 'Unbounded', sans-serif;
}

.dvh-hero p {
  font-size: 18px;
  margin-bottom: 32px;
  font-family: 'Rubik', sans-serif;
}

.dvh-payicons {
  margin: 32px auto 20px;
  max-width: 280px;
  display: block;
}

.dvh-hero__stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0 20px;
  flex-wrap: wrap;
}

.dvh-hero__stat {
  text-align: center;
  font-family: 'Rubik', sans-serif;
}

.dvh-hero__stat strong {
  font-size: 26px;
  color: var(--main-color);
  display: block;
}

.dvh-hero__stat span {
  font-size: 14px;
  color: #555;
}

.dvh-timer {
  font-size: 42px;
  font-weight: bold;
  margin-top: 20px;
  color: #f47a59;
}


/* Modal */
.dvh-modal,
.dvh-modal__success {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.dvh-modal__box {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.dvh-modal__box input {
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: var(--radius);
}

.dvh-modal__box button {
  background: var(--accent-color);
  color: white;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: none;
  font-weight: bold;
}

.dvh-modal__close {
  position: absolute;
  top: 12px; right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  color: #888;
}

.dvh-about {
  background: #f5faff;
  padding: 80px 24px;
}

.dvh-about__container {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.dvh-about__image {
  flex: 1 1 45%;
}

.dvh-about__image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.dvh-about__content {
  flex: 1 1 50%;
}

.dvh-about__label {
  font-size: 14px;
  color: var(--accent-color);
  font-weight: bold;
  text-transform: uppercase;
}

.dvh-about__title {
  font-size: 28px;
  margin: 12px 0 16px;
  font-family: 'Unbounded', sans-serif;
}

.dvh-about__list {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.dvh-about__list li {
  margin-bottom: 10px;
  font-size: 16px;
}

.dvh-about__list i {
  margin-right: 8px;
  color: var(--main-color);
}

.dvh-cta-secondary {
  background: transparent;
  border: 2px solid var(--main-color);
  padding: 10px 18px;
  font-weight: bold;
  border-radius: var(--radius);
  color: var(--main-color);
  transition: 0.3s;
}

.dvh-cta-secondary:hover {
  background: var(--main-color);
  color: #fff;
}

.dvh-join {
  background: linear-gradient(120deg, #2d2f80 0%, #3f4cb4 100%);
  padding: 80px 24px;
  color: #fff;
  text-align: center;
}

.dvh-join__text h2 {
  color: #f47a59;
  font-size: 32px;
  font-family: 'Unbounded', sans-serif;
}

.dvh-join__text p {
  font-size: 18px;
  margin: 20px 0;
  min-height: 24px;
  transition: all 0.3s ease;
}

.dvh-why-elite {
  padding: 60px 0;
  text-align: center;
  background: #f7fafd;
}

.dvh-why-elite__heading {
  font-size: 32px;
  margin-bottom: 60px;
  font-family: 'Unbounded', sans-serif;
  color: #1e1e1e;
}

.dvh-why-elite__panel {
  padding: 80px 24px;
  position: relative;
  color: #fff;
  clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
  margin-bottom: 40px;
}

.dvh-why-elite__panel--one {
  background: linear-gradient(135deg, #4a00e0, #8e2de2);
}

.dvh-why-elite__panel--two {
  background: linear-gradient(135deg, #ff6a00, #ee0979);
}

.dvh-why-elite__panel--three {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.dvh-why-elite__content {
  max-width: 600px;
  margin: auto;
}

.dvh-why-elite__content i {
  font-size: 40px;
  margin-bottom: 16px;
  color: #fff;
}

.dvh-why-elite__content h3 {
  font-size: 24px;
  margin-bottom: 12px;
  font-family: 'Rubik', sans-serif;
  color: #fff;
}

.dvh-why-elite__content p {
  font-size: 16px;
  line-height: 1.6;
  color: #f5f5f5;
}

@media (max-width: 768px) {
  .dvh-why-elite__panel {
    clip-path: none;
    margin-bottom: 24px;
  }
}

.dvh-lottofeed {
  padding: 80px 24px;
  background: #0e0e17;
  color: #fff;
  text-align: center;
}

.dvh-lottofeed__title {
  font-size: 28px;
  font-family: 'Unbounded', sans-serif;
  margin-bottom: 40px;
  color: #fff;
}

.dvh-lottofeed__grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.dvh-lottofeed__card {
  background: linear-gradient(145deg, #1f1f2f, #2a2a3a);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(70, 200, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.dvh-lottofeed__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(70, 200, 255, 0.3);
}

.dvh-lottofeed__card h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #00d2ff;
}

.dvh-lottofeed__date {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 16px;
  display: block;
}

.dvh-lottofeed__nums {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.dvh-lottofeed__nums span {
  background: #fff;
  color: #111;
  padding: 6px 10px;
  border-radius: 50%;
  font-weight: bold;
  min-width: 36px;
  text-align: center;
}

.dvh-lottofeed__supps {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 16px;
}

.dvh-lottofeed__actions a {
  display: inline-block;
  font-size: 13px;
  margin: 6px 8px 0;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  background: #00d2ff;
  color: #000;
  transition: 0.3s;
}

.dvh-lottofeed__actions a:hover {
  background: #fff;
  color: #111;
}

.dvh-granddraw {
  background: radial-gradient(circle at center, #00061f, #000010);
  color: #fff;
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dvh-granddraw__wrapper {
  max-width: 1280px;
  margin: auto;
  position: relative;
}

.dvh-granddraw__highlight {
  z-index: 10;
  position: relative;
}

.dvh-granddraw__label {
  font-size: 14px;
  color: #89f0ff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dvh-granddraw__amount {
  font-size: 48px;
  font-family: 'Unbounded', sans-serif;
  margin: 20px 0 12px;
  color: #fff;
}

@media (max-width: 768px) {
  .dvh-granddraw__amount {
    font-size: 36px;
  }
}

.dvh-granddraw__text {
  font-size: 16px;
  color: #bbb;
  margin-bottom: 24px;
}

.dvh-btn {
  background: #00ffff;
  color: #000;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.dvh-btn:hover {
  background: #fff;
}

.dvh-granddraw__prizes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.dvh-granddraw__item {
  position: absolute;
  width: 120px;
  text-align: center;
  color: #fff;
  animation: floatPrize 10s ease-in-out infinite;
}

.dvh-granddraw__item img {
  width: 100%;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
  margin-bottom: 6px;
}

.dvh-granddraw__item--1 { top: 0; left: 0; animation-delay: 0s; }
.dvh-granddraw__item--2 { top: 0; right: 0; animation-delay: 1s; }
.dvh-granddraw__item--3 { bottom: 0; left: 12%; animation-delay: 2s; }
.dvh-granddraw__item--4 { bottom: 0; right: 12%; animation-delay: 3s; }

@keyframes floatPrize {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@media (max-width: 768px) {
  .dvh-granddraw__prizes {
    position: relative;
    margin-top: 20px;
  }
  .dvh-granddraw__item {
    position: relative;
    margin: 0 auto 10px;
  }
  .dvh-granddraw__item--1,
  .dvh-granddraw__item--3 {
    left: 12px;
  }
  .dvh-granddraw__item--2,
  .dvh-granddraw__item--4 {
    right: 12px;
  }
}

.dvh-flow {
  background: linear-gradient(to bottom, #0d0d1a, #0c0c18);
  padding: 80px 24px;
  color: #fff;
  text-align: center;
}

.dvh-flow__title {
  font-size: 28px;
  font-family: 'Unbounded', sans-serif;
  margin-bottom: 60px;
  color: #00eaff;
}

.dvh-flow__timeline {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  flex-wrap: wrap;
}

.dvh-flow__step {
  background: #161626;
  padding: 30px 20px;
  border-radius: 16px;
  flex: 1 1 220px;
  min-width: 200px;
  position: relative;
  box-shadow: 0 0 16px rgba(0, 234, 255, 0.1);
  transition: transform 0.3s ease;
}

.dvh-flow__step:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0, 234, 255, 0.25);
}

.dvh-flow__icon {
  font-size: 32px;
  color: #00eaff;
  margin-bottom: 14px;
}

.dvh-flow__step h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-family: 'Rubik', sans-serif;
  color: #f47a59;
}

.dvh-flow__step p {
  font-size: 14px;
  color: #ccc;
}

/* Connecting line (desktop only) */
.dvh-flow__timeline::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 0;
  right: 0;
  height: 2px;
  background: #00eaff;
  z-index: 0;
}

@media (max-width: 768px) {
  .dvh-flow__timeline {
    flex-direction: column;
    align-items: center;
  }

  .dvh-flow__timeline::before {
    display: none;
  }

  .dvh-flow__step {
    width: 100%;
    max-width: 380px;
  }
}

.dvh-testimonials {
  padding: 100px 24px;
  background: radial-gradient(circle at 50% 50%, #1a1a2e, #0c0c18);
  color: #fff;
  text-align: center;
}

.dvh-testimonials__title {
  font-size: 28px;
  margin-bottom: 60px;
  font-family: 'Unbounded', sans-serif;
  color: #00eaff;
}

.dvh-testimonials__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.dvh-testimonials__card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  padding: 24px;
  border-radius: 16px;
  max-width: 340px;
  box-shadow: 0 0 20px rgba(0,234,255,0.1);
  transition: transform 0.3s ease;
}

.dvh-testimonials__card:hover {
  transform: translateY(-6px);
}

.dvh-testimonials__card p {
  font-size: 16px;
  line-height: 1.5;
  color: #ddd;
}

.dvh-testimonials__author {
  font-size: 14px;
  color: #aaa;
  margin-top: 12px;
  font-style: italic;
}

.dvh-faq {
  padding: 100px 24px;
  background: #0d0d1a;
  color: #fff;
  font-family: 'Rubik', sans-serif;
}

.dvh-faq__title {
  font-size: 28px;
  margin-bottom: 40px;
  text-align: center;
  font-family: 'Unbounded', sans-serif;
  color: #00eaff;
}

.dvh-faq__list {
  max-width: 800px;
  margin: auto;
}

.dvh-faq__item {
  margin-bottom: 20px;
  border-bottom: 1px solid #333;
}

.dvh-faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  color: #00eaff;
  padding: 14px 0;
  cursor: pointer;
  position: relative;
}

.dvh-faq__question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.dvh-faq__item.open .dvh-faq__question::after {
  transform: rotate(45deg);
}

.dvh-faq__answer {
  max-height: 0;
  overflow: hidden;
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.dvh-faq__item.open .dvh-faq__answer {
  max-height: 200px;
  opacity: 1;
}

.dvh-footer {
  background: #050509;
  color: #ccc;
  padding: 60px 24px 40px;
  text-align: center;
  font-family: 'Rubik', sans-serif;
}

.dvh-footer__disclaimer p {
  font-size: 14px;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #999;
}

.dvh-footer__support {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.dvh-footer__support img {
  max-height: 75px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  background: #00eaff;
  padding: 7px;
  border-radius: 4px;
}

.dvh-footer__support a:hover img {
  opacity: 1;
}

.dvh-footer__links {
  margin-bottom: 20px;
}

.dvh-footer__links a {
  color: #00eaff;
  margin: 0 12px;
  font-size: 14px;
  text-decoration: none;
}

.dvh-footer__links a:hover {
  text-decoration: underline;
}

.dvh-footer__copy {
  font-size: 13px;
  color: #666;
}

.dvh-cookie {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(10, 10, 20, 0.95);
  border: 1px solid #333;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px);
  transition: all 0.4s ease;
  font-family: 'Rubik', sans-serif;
}

.dvh-cookie__container {
  max-width: 900px;
  margin: auto;
  padding: 18px 24px;
  color: #ccc;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.dvh-cookie__container a {
  color: #00eaff;
  text-decoration: underline;
}

.dvh-cookie__accept {
  background: #00eaff;
  color: #000;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dvh-cookie__accept:hover {
  background: #00bcd4;
}

.dvh-cookie.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .dvh-cookie__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
