:root {
  --dd-bg: #0b0b0f;
  --dd-bg-card: #14131a;
  --dd-bg-elevated: #1c1b24;
  --dd-bg-input: #1e1d26;
  --dd-gold: #c9a84c;
  --dd-gold-light: #e2c97e;
  --dd-gold-dark: #a38732;
  --dd-gold-muted: rgba(201, 168, 76, 0.12);
  --dd-gold-border: rgba(201, 168, 76, 0.18);
  --dd-text: #f0ebe1;
  --dd-text-muted: #8e8779;
  --dd-text-dim: #5c574e;
  --dd-border: rgba(255, 255, 255, 0.06);
  --dd-radius: 14px;
  --dd-radius-sm: 8px;
  --dd-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  --dd-shadow-md: 0 6px 24px rgba(0, 0, 0, 0.5);
  --dd-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.6);
  --dd-shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.15);
  --dd-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --dd-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--dd-font);
  color: var(--dd-text);
  background: var(--dd-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

::selection {
  background: var(--dd-gold);
  color: var(--dd-bg);
}

/* ========== Buttons ========== */
.dd-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  font-family: var(--dd-font);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--dd-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--dd-transition);
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}

.dd-btn--primary {
  background: linear-gradient(135deg, var(--dd-gold), var(--dd-gold-dark));
  color: #0b0b0f;
  border-color: var(--dd-gold);
  font-weight: 700;
}

.dd-btn--primary:hover {
  background: linear-gradient(135deg, var(--dd-gold-light), var(--dd-gold));
  border-color: var(--dd-gold-light);
  color: #0b0b0f;
  transform: translateY(-2px);
  box-shadow: var(--dd-shadow-gold);
}

.dd-btn--outline {
  background: transparent;
  color: var(--dd-gold);
  border-color: var(--dd-gold-border);
}

.dd-btn--outline:hover {
  border-color: var(--dd-gold);
  color: var(--dd-gold-light);
  background: var(--dd-gold-muted);
}

.dd-btn--ghost {
  background: transparent;
  color: var(--dd-text-muted);
  border: 2px solid var(--dd-border);
}

.dd-btn--ghost:hover {
  color: var(--dd-text);
  border-color: var(--dd-text-muted);
}

.dd-btn--lg { padding: 15px 34px; font-size: 1rem; }
.dd-btn--sm { padding: 8px 18px; font-size: 0.85rem; }

/* ========== Header ========== */
.dd-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 11, 15, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--dd-border);
}

.dd-header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.dd-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--dd-text);
}

.dd-header__logo { border-radius: 8px; }

.dd-header__name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--dd-gold-light), var(--dd-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dd-header__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.dd-header__link {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  color: var(--dd-text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--dd-radius-sm);
  transition: all var(--dd-transition);
}

.dd-header__link:hover,
.dd-header__link--active {
  color: var(--dd-gold);
  background: var(--dd-gold-muted);
}

.dd-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.dd-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dd-gold);
  border-radius: 2px;
  transition: all var(--dd-transition);
}

/* ========== Drawer (Mobile Nav) ========== */
.dd-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--dd-bg-card);
  z-index: 2000;
  transition: right var(--dd-transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--dd-shadow-lg);
  border-left: 1px solid var(--dd-gold-border);
}

.dd-drawer--open { right: 0; }

.dd-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--dd-border);
}

.dd-drawer__close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--dd-text-muted);
  padding: 4px;
}

.dd-drawer__close:hover { color: var(--dd-gold); }

.dd-drawer__menu {
  list-style: none;
  margin: 0;
  padding: 12px 0;
  flex: 1;
}

.dd-drawer__link {
  display: block;
  padding: 14px 24px;
  text-decoration: none;
  color: var(--dd-text-muted);
  font-weight: 500;
  font-size: 1rem;
  transition: all var(--dd-transition);
  border-left: 3px solid transparent;
}

.dd-drawer__link:hover,
.dd-drawer__link--active {
  color: var(--dd-gold);
  background: var(--dd-gold-muted);
  border-left-color: var(--dd-gold);
}

.dd-drawer__footer {
  padding: 16px 24px;
  border-top: 1px solid var(--dd-border);
}

.dd-drawer__contact {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dd-text-muted);
  text-decoration: none;
  font-size: 0.85rem;
}

.dd-drawer__contact:hover { color: var(--dd-gold); }

.dd-drawer__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dd-transition);
}

.dd-drawer__backdrop--visible {
  opacity: 1;
  pointer-events: auto;
}

/* ========== Hero ========== */
.dd-hero {
  padding: 80px 0 60px;
  background: radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
              var(--dd-bg);
  position: relative;
  overflow: hidden;
}

.dd-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dd-gold-border), transparent);
}

.dd-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dd-gold-border), transparent);
}

.dd-hero__badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--dd-gold-muted);
  color: var(--dd-gold);
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--dd-gold-border);
}

.dd-hero__title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--dd-text), var(--dd-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dd-hero__subtitle {
  font-size: 1.1rem;
  color: var(--dd-text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}

.dd-hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.dd-hero__stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--dd-border);
}

.dd-hero__stat { text-align: center; }

.dd-hero__stat-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dd-gold);
}

.dd-hero__stat-label {
  font-size: 0.8rem;
  color: var(--dd-text-muted);
  font-weight: 500;
}

.dd-hero__visual { position: relative; }

.dd-hero__image {
  border-radius: var(--dd-radius);
  box-shadow: var(--dd-shadow-lg);
  border: 1px solid var(--dd-gold-border);
}

/* ========== Sections ========== */
.dd-section {
  padding: 80px 0;
  position: relative;
}

.dd-section--alt {
  background: var(--dd-bg-card);
}

.dd-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dd-border), transparent);
}

.dd-section__label {
  display: inline-block;
  color: var(--dd-gold);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.dd-section__title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--dd-text);
}

.dd-section__subtitle {
  font-size: 1rem;
  color: var(--dd-text-muted);
  max-width: 640px;
  margin: 0 auto 16px;
  line-height: 1.7;
}

/* ========== About (Who We Are) ========== */
.dd-about__image {
  border-radius: var(--dd-radius);
  box-shadow: var(--dd-shadow-md);
  border: 1px solid var(--dd-gold-border);
}

.dd-about__text {
  font-size: 1.05rem;
  color: var(--dd-text-muted);
  margin-bottom: 28px;
  line-height: 1.8;
}

.dd-about__highlights { display: flex; flex-direction: column; gap: 14px; }

.dd-about__highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--dd-bg-elevated);
  border-radius: var(--dd-radius-sm);
  border: 1px solid var(--dd-border);
  transition: all var(--dd-transition);
}

.dd-about__highlight:hover {
  border-color: var(--dd-gold-border);
  box-shadow: var(--dd-shadow-gold);
}

.dd-about__highlight i {
  font-size: 1.4rem;
  color: var(--dd-gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.dd-about__highlight strong {
  display: block;
  font-weight: 700;
  color: var(--dd-text);
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.dd-about__highlight span {
  font-size: 0.85rem;
  color: var(--dd-text-muted);
  line-height: 1.5;
}

/* ========== Bookmaker Card ========== */
.dd-bookmaker__card {
  background: var(--dd-bg-card);
  border-radius: var(--dd-radius);
  border: 1px solid var(--dd-gold-border);
  box-shadow: var(--dd-shadow-md);
  overflow: hidden;
  max-width: 900px;
  margin: 24px auto 0;
}

.dd-bookmaker__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  border-bottom: 1px solid var(--dd-border);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), transparent);
}

.dd-bookmaker__brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dd-bookmaker__logo { border-radius: var(--dd-radius-sm); }

.dd-bookmaker__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dd-bookmaker__badge {
  display: inline-block;
  padding: 3px 10px;
  background: linear-gradient(135deg, var(--dd-gold), var(--dd-gold-dark));
  color: #0b0b0f;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}

.dd-bookmaker__stars {
  color: var(--dd-gold);
  font-size: 0.9rem;
  display: flex;
  gap: 2px;
}

.dd-bookmaker__score {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.dd-bookmaker__score-value {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dd-gold);
  line-height: 1;
}

.dd-bookmaker__score-label {
  font-size: 1rem;
  color: var(--dd-text-muted);
  font-weight: 500;
}

.dd-bookmaker__body { padding: 28px 32px; }

.dd-bookmaker__feature {
  padding: 18px 16px;
  border-radius: var(--dd-radius-sm);
  border: 1px solid var(--dd-border);
  background: var(--dd-bg-elevated);
  text-align: center;
  transition: all var(--dd-transition);
  height: 100%;
}

.dd-bookmaker__feature:hover {
  border-color: var(--dd-gold-border);
  box-shadow: var(--dd-shadow-gold);
  transform: translateY(-2px);
}

.dd-bookmaker__feature i {
  font-size: 1.8rem;
  color: var(--dd-gold);
  margin-bottom: 10px;
  display: block;
}

.dd-bookmaker__feature-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dd-text);
  margin-bottom: 6px;
}

.dd-bookmaker__feature-text {
  font-size: 0.8rem;
  color: var(--dd-text-muted);
  margin: 0;
  line-height: 1.5;
}

.dd-bookmaker__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-top: 1px solid var(--dd-border);
  background: var(--dd-bg-elevated);
}

.dd-bookmaker__licence {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--dd-text-muted);
  font-weight: 500;
}

.dd-bookmaker__licence i {
  color: var(--dd-gold);
  font-size: 1.1rem;
}

/* ========== Trust Cards ========== */
.dd-trust__card {
  background: var(--dd-bg-card);
  border: 1px solid var(--dd-border);
  border-radius: var(--dd-radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--dd-transition);
  height: 100%;
}

.dd-trust__card:hover {
  border-color: var(--dd-gold-border);
  box-shadow: var(--dd-shadow-gold);
  transform: translateY(-4px);
}

.dd-trust__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--dd-gold-muted);
  border: 1px solid var(--dd-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.dd-trust__icon i {
  font-size: 1.5rem;
  color: var(--dd-gold);
}

.dd-trust__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dd-text);
  margin-bottom: 10px;
}

.dd-trust__text {
  font-size: 0.88rem;
  color: var(--dd-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ========== Steps ========== */
.dd-steps__card {
  text-align: center;
  position: relative;
  padding: 24px;
  border-radius: var(--dd-radius);
  border: 1px solid var(--dd-border);
  background: var(--dd-bg-card);
  transition: all var(--dd-transition);
  height: 100%;
}

.dd-steps__card:hover {
  box-shadow: var(--dd-shadow-gold);
  border-color: var(--dd-gold-border);
  transform: translateY(-4px);
}

.dd-steps__number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--dd-gold), rgba(201, 168, 76, 0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.dd-steps__image {
  border-radius: var(--dd-radius-sm);
  margin-bottom: 20px;
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--dd-bg-elevated);
  border: 1px solid var(--dd-border);
}

.dd-steps__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dd-text);
  margin-bottom: 10px;
}

.dd-steps__text {
  font-size: 0.9rem;
  color: var(--dd-text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ========== Guides ========== */
.dd-guides__card {
  background: var(--dd-bg-card);
  border: 1px solid var(--dd-border);
  border-radius: var(--dd-radius);
  overflow: hidden;
  transition: all var(--dd-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.dd-guides__card:hover {
  box-shadow: var(--dd-shadow-gold);
  border-color: var(--dd-gold-border);
  transform: translateY(-4px);
}

.dd-guides__image-wrap { overflow: hidden; }

.dd-guides__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--dd-bg-elevated);
  transition: transform 0.4s ease;
}

.dd-guides__card:hover .dd-guides__image { transform: scale(1.05); }

.dd-guides__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dd-guides__tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--dd-gold-muted);
  color: var(--dd-gold);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  width: fit-content;
  border: 1px solid var(--dd-gold-border);
}

.dd-guides__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dd-text);
  margin-bottom: 8px;
  line-height: 1.35;
}

.dd-guides__excerpt {
  font-size: 0.82rem;
  color: var(--dd-text-muted);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

/* ========== Responsible Gambling ========== */
.dd-responsibility__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.dd-responsibility__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 20px;
  background: var(--dd-bg-card);
  border: 1px solid var(--dd-border);
  border-radius: var(--dd-radius);
  text-decoration: none;
  transition: all var(--dd-transition);
}

.dd-responsibility__card:hover {
  border-color: var(--dd-gold-border);
  box-shadow: var(--dd-shadow-gold);
  transform: translateY(-2px);
}

.dd-responsibility__logo {
  width: 140px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0.9);
}

.dd-responsibility__card:hover .dd-responsibility__logo {
  filter: brightness(1);
}

.dd-responsibility__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dd-text-muted);
  text-align: center;
}

.dd-responsibility__age {
  display: inline-block;
  padding: 1px 6px;
  background: var(--dd-gold);
  color: #0b0b0f;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}

.dd-responsibility__notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--dd-gold-muted);
  border: 1px solid var(--dd-gold-border);
  border-radius: var(--dd-radius-sm);
}

.dd-responsibility__notice i {
  font-size: 1.3rem;
  color: var(--dd-gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.dd-responsibility__notice p {
  font-size: 0.88rem;
  color: var(--dd-text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ========== Footer ========== */
.dd-footer {
  background: var(--dd-bg-card);
  color: var(--dd-text-muted);
  padding: 60px 0 0;
  border-top: 1px solid var(--dd-gold-border);
}

.dd-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.dd-footer__brand img { border-radius: 8px; }

.dd-footer__name {
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--dd-gold-light), var(--dd-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dd-footer__about {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.7;
}

.dd-footer__company {
  font-size: 0.82rem;
  line-height: 1.6;
  opacity: 0.6;
}

.dd-footer__company strong { color: var(--dd-text); opacity: 1; }

.dd-footer__company a {
  color: var(--dd-gold);
  text-decoration: none;
}

.dd-footer__company a:hover { text-decoration: underline; }

.dd-footer__heading {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dd-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.dd-footer__links { list-style: none; padding: 0; margin: 0; }
.dd-footer__links li { margin-bottom: 10px; }

.dd-footer__links a {
  color: var(--dd-text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--dd-transition);
}

.dd-footer__links a:hover { color: var(--dd-gold); }

.dd-footer__disclosure {
  font-size: 0.78rem;
  line-height: 1.6;
  opacity: 0.5;
  font-style: italic;
}

.dd-footer__bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid var(--dd-border);
  text-align: center;
}

.dd-footer__bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--dd-text-dim);
}

/* ========== Overlay / Popups ========== */
.dd-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.dd-overlay--solid {
  background: var(--dd-bg);
}

.dd-popup {
  background: var(--dd-bg-card);
  border-radius: var(--dd-radius);
  padding: 40px 36px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: var(--dd-shadow-lg);
  border: 1px solid var(--dd-gold-border);
}

.dd-popup__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--dd-gold-muted);
  border: 1px solid var(--dd-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.dd-popup__icon i {
  font-size: 1.8rem;
  color: var(--dd-gold);
}

.dd-popup__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dd-text);
  margin-bottom: 12px;
}

.dd-popup__text {
  font-size: 0.9rem;
  color: var(--dd-text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.dd-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ========== Cookie Banner ========== */
.dd-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2500;
  background: var(--dd-bg-card);
  border-top: 1px solid var(--dd-gold-border);
  padding: 18px 0;
}

.dd-cookie__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.dd-cookie__content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.dd-cookie__icon {
  font-size: 1.4rem;
  color: var(--dd-gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.dd-cookie__text {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dd-text-muted);
  line-height: 1.6;
}

.dd-cookie__text a {
  color: var(--dd-gold);
  text-decoration: underline;
}

.dd-cookie__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ========== Puzzle Captcha ========== */
.dd-captcha {
  margin: 20px 0;
  user-select: none;
}

.dd-captcha__canvas-wrap {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto 16px;
  border-radius: var(--dd-radius-sm);
  overflow: hidden;
  border: 1px solid var(--dd-gold-border);
  background: var(--dd-bg-elevated);
}

.dd-captcha__canvas {
  display: block;
  width: 100%;
  height: auto;
}

.dd-captcha__slider-track {
  position: relative;
  width: 100%;
  max-width: 340px;
  height: 44px;
  margin: 0 auto;
  background: var(--dd-bg-elevated);
  border-radius: 22px;
  border: 1px solid var(--dd-border);
  overflow: hidden;
}

.dd-captcha__slider-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--dd-text-dim);
  font-weight: 500;
  pointer-events: none;
  letter-spacing: 0.02em;
}

.dd-captcha__slider-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, var(--dd-gold-muted), rgba(201, 168, 76, 0.25));
  border-radius: 22px;
  transition: none;
}

.dd-captcha__slider-handle {
  position: absolute;
  left: 0;
  top: 2px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--dd-gold), var(--dd-gold-dark));
  border-radius: 50%;
  cursor: grab;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0b0f;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.3);
  transition: box-shadow var(--dd-transition);
  touch-action: none;
}

.dd-captcha__slider-handle:active { cursor: grabbing; }

.dd-captcha__slider-handle:hover {
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.5);
}

.dd-captcha__status {
  text-align: center;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  min-height: 20px;
}

.dd-captcha__status--success { color: #22c55e; }
.dd-captcha__status--fail { color: #ef4444; }

/* ========== Hero Compact (inner pages) ========== */
.dd-hero--compact {
  padding: 48px 0 40px;
  text-align: center;
}

.dd-hero--compact .dd-hero__title {
  font-size: 2.4rem;
  max-width: 700px;
  margin: 0 auto 16px;
}

.dd-hero--compact .dd-hero__subtitle {
  max-width: 600px;
  margin: 0 auto;
}

/* ========== About Contact Card ========== */
.dd-about__contact-card {
  background: var(--dd-bg-elevated);
  border: 1px solid var(--dd-border);
  border-radius: var(--dd-radius);
  padding: 32px;
  margin-top: 28px;
  text-align: left;
}

.dd-about__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--dd-border);
}

.dd-about__contact-item:last-child { border-bottom: none; }

.dd-about__contact-item i {
  font-size: 1.3rem;
  color: var(--dd-gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.dd-about__contact-item strong {
  display: block;
  font-weight: 700;
  color: var(--dd-text);
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.dd-about__contact-item a,
.dd-about__contact-item span {
  font-size: 0.88rem;
  color: var(--dd-text-muted);
  text-decoration: none;
}

.dd-about__contact-item a:hover { color: var(--dd-gold); }

/* ========== Legal Pages ========== */
.dd-legal { padding: 48px 0 80px; }

.dd-legal__title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dd-text);
  margin-bottom: 8px;
}

.dd-legal__updated {
  font-size: 0.85rem;
  color: var(--dd-text-muted);
  margin-bottom: 32px;
}

.dd-legal h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dd-gold-light);
  margin-top: 36px;
  margin-bottom: 12px;
}

.dd-legal h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dd-text);
  margin-top: 24px;
  margin-bottom: 10px;
}

.dd-legal p, .dd-legal li {
  font-size: 0.92rem;
  color: var(--dd-text-muted);
  line-height: 1.75;
}

.dd-legal ul, .dd-legal ol { padding-left: 20px; margin-bottom: 16px; }
.dd-legal li { margin-bottom: 6px; }

.dd-legal a { color: var(--dd-gold); text-decoration: underline; }
.dd-legal a:hover { color: var(--dd-gold-light); }

/* ========== Responsive ========== */
@media (max-width: 991.98px) {
  .dd-header__menu { display: none; }
  .dd-header__burger { display: flex; }

  .dd-hero { padding: 48px 0 40px; }
  .dd-hero__title { font-size: 2.2rem; }
  .dd-hero__stats { gap: 20px; }

  .dd-section { padding: 56px 0; }
  .dd-section__title { font-size: 1.8rem; }

  .dd-responsibility__grid { grid-template-columns: repeat(2, 1fr); }

  .dd-bookmaker__header { flex-direction: column; gap: 16px; text-align: center; }
  .dd-bookmaker__brand { flex-direction: column; align-items: center; }
  .dd-bookmaker__meta { align-items: center; }
  .dd-bookmaker__body { padding: 20px; }
  .dd-bookmaker__footer { flex-direction: column; gap: 14px; text-align: center; padding: 20px; }
}

@media (max-width: 767.98px) {
  .dd-hero--compact .dd-hero__title { font-size: 1.6rem; }
  .dd-hero__title { font-size: 1.85rem; }
  .dd-hero__subtitle { font-size: 1rem; }
  .dd-hero__stats { flex-direction: column; gap: 16px; align-items: flex-start; }
  .dd-hero__cta-group { flex-direction: column; }
  .dd-hero__cta-group .dd-btn { width: 100%; justify-content: center; }

  .dd-section__title { font-size: 1.55rem; }

  .dd-cookie__inner { flex-direction: column; text-align: center; }
  .dd-cookie__content { flex-direction: column; align-items: center; }
  .dd-cookie__actions { width: 100%; }
  .dd-cookie__actions .dd-btn { flex: 1; justify-content: center; }

  .dd-responsibility__grid { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
  .dd-hero { padding: 32px 0; }
  .dd-hero__title { font-size: 1.6rem; }
  .dd-section { padding: 40px 0; }
  .dd-section__title { font-size: 1.35rem; }
  .dd-popup { padding: 28px 20px; }
  .dd-popup__title { font-size: 1.2rem; }

  .dd-bookmaker__header { padding: 20px 16px; }
  .dd-bookmaker__body { padding: 16px; }
  .dd-bookmaker__footer { padding: 16px; }
  .dd-bookmaker__score-value { font-size: 2.2rem; }

  .dd-about__contact-card { padding: 20px 16px; }
  .dd-about__contact-item { flex-direction: column; gap: 8px; }
  .dd-hero--compact { padding: 32px 0 28px; }
  .dd-hero--compact .dd-hero__title { font-size: 1.4rem; }

  .dd-captcha__canvas-wrap,
  .dd-captcha__slider-track { max-width: 100%; }
}

/* ========== Utility ========== */
.dd-noselect {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.dd-gold-text {
  background: linear-gradient(135deg, var(--dd-gold-light), var(--dd-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dd-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dd-gold-border), transparent);
  border: none;
  margin: 0;
}
