*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: #000;
      color: #fff;
      min-height: 100vh;
      overflow-x: hidden;
    }
    .bg-gradient {
      position: fixed;
      inset: 0;
      background: linear-gradient(to bottom, rgba(112, 26, 117, 0.2), #000, #000);
      pointer-events: none;
    }
    .container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
    
    /* Header */
    header {
      position: relative;
      z-index: 10;
      border-bottom: 1px solid rgba(217, 70, 239, 0.2);
      backdrop-filter: blur(24px);
      background: rgba(0, 0, 0, 0.5);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 0;
    }
    .logo { font-size: 1.875rem; font-weight: 900; letter-spacing: 0.1em; color: #e879f9; }
    .logo-sub { font-size: 0.875rem; color: #a1a1aa; margin-top: 0.25rem; }
    .lang-buttons { display: flex; gap: 0.75rem; }
    .btn-lang {
      padding: 0.5rem 1rem;
      border-radius: 0.75rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      border: none;
      color: #fff;
    }
    .btn-lang-active { background: #d946ef; }
    .btn-lang-active:hover { background: #e879f9; }
    .btn-lang-outline {
      background: transparent;
      border: 1px solid rgba(217, 70, 239, 0.4);
    }
    .btn-lang-outline:hover { background: rgba(217, 70, 239, 0.1); }
    
    /* Hero Section */
    .hero { position: relative; z-index: 10; padding: 5rem 0 4rem; }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: center;
    }
    @media (min-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr 1fr; }
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      background: rgba(217, 70, 239, 0.1);
      border: 1px solid rgba(217, 70, 239, 0.3);
      color: #f0abfc;
      margin-bottom: 1.5rem;
    }
    .hero-title {
      font-size: 3rem;
      font-weight: 900;
      line-height: 1.1;
    }
    @media (min-width: 1024px) {
      .hero-title { font-size: 4.5rem; }
    }
    .hero-title span { color: #e879f9; }
    .hero-desc {
      margin-top: 2rem;
      color: #d4d4d8;
      font-size: 1.125rem;
      line-height: 1.75;
      max-width: 42rem;
    }
    .hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
    .btn-primary {
      padding: 1rem 2rem;
      border-radius: 1rem;
      background: #d946ef;
      font-weight: 700;
      font-size: 1.125rem;
      color: #fff;
      text-decoration: none;
      box-shadow: 0 25px 50px -12px rgba(217, 70, 239, 0.3);
      transition: background 0.2s;
    }
    .btn-primary:hover { background: #e879f9; }
    .btn-outline {
      padding: 1rem 2rem;
      border-radius: 1rem;
      border: 1px solid rgba(217, 70, 239, 0.3);
      background: transparent;
      font-weight: 600;
      font-size: 1.125rem;
      color: #fff;
      text-decoration: none;
      transition: background 0.2s;
    }
    .btn-outline:hover { background: rgba(217, 70, 239, 0.1); }
    
    /* Hero Card */
    .hero-card-wrapper { position: relative; }
    .hero-card-glow {
      position: absolute;
      inset: 0;
      background: #d946ef;
      filter: blur(48px);
      opacity: 0.2;
      border-radius: 9999px;
    }
    .hero-card {
      position: relative;
      background: rgba(9, 9, 11, 0.8);
      border: 1px solid rgba(217, 70, 239, 0.2);
      border-radius: 1.5rem;
      padding: 2rem;
      backdrop-filter: blur(24px);
      box-shadow: 0 25px 50px -12px rgba(217, 70, 239, 0.1);
    }
    .hero-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
    }
    .hero-card-label { color: #a1a1aa; }
    .hero-card-bonus { color: #4ade80; font-weight: 700; }
    .iris-block {
      padding: 1.25rem;
      border-radius: 1rem;
      background: rgba(0, 0, 0, 0.4);
      border: 1px solid rgba(217, 70, 239, 0.1);
    }
    .iris-inner { display: flex; justify-content: space-between; align-items: center; }
    .iris-name { font-size: 1.5rem; font-weight: 700; color: #e879f9; }
    .iris-sub { color: #a1a1aa; margin-top: 0.25rem; }
    .iris-rating { font-size: 1.875rem; font-weight: 900; }
    .iris-rating-label { color: #71717a; font-size: 0.875rem; }
    .promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.25rem; }
    .promo-box {
      padding: 1rem;
      border-radius: 1rem;
      background: rgba(217, 70, 239, 0.1);
      border: 1px solid rgba(217, 70, 239, 0.2);
    }
    .promo-label { color: #a1a1aa; font-size: 0.875rem; }
    .promo-value { font-size: 1.5rem; font-weight: 900; color: #f0abfc; margin-top: 0.5rem; }
    
    /* Rating Section */
    .rating-section { position: relative; z-index: 10; padding: 5rem 0; }
    .rating-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
    .rating-title { font-size: 2.25rem; font-weight: 900; }
    .rating-sub { color: #a1a1aa; margin-top: 0.5rem; }
    
    /* Casino Card */
    .casino-list { display: grid; gap: 1.5rem; }
    .casino-card {
      border-radius: 1.5rem;
      border: 1px solid rgba(217, 70, 239, 0.1);
      background: rgba(9, 9, 11, 0.8);
      padding: 1.75rem;
      transition: all 0.3s;
    }
    .casino-card:hover {
      border-color: rgba(217, 70, 239, 0.4);
      transform: translateY(-4px);
    }
    .casino-inner {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      align-items: center;
    }
    @media (min-width: 1024px) {
      .casino-inner { grid-template-columns: minmax(180px, auto) 1fr 200px; }
    }
    .casino-rank-wrap { display: flex; align-items: center; gap: 1rem; }
    .casino-rank {
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 1rem;
      background: rgba(217, 70, 239, 0.1);
      border: 1px solid rgba(217, 70, 239, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 900;
      color: #e879f9;
    }
    .casino-name { font-size: 1.5rem; font-weight: 900; }
    .casino-rating { color: #4ade80; font-weight: 700; margin-top: 0.25rem; }
    .casino-desc { color: #d4d4d8; line-height: 1.75; }
    .casino-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
    .tag {
      padding: 0.5rem 1rem;
      border-radius: 0.75rem;
      font-size: 0.875rem;
    }
    .tag-bonus {
      background: rgba(217, 70, 239, 0.1);
      border: 1px solid rgba(217, 70, 239, 0.2);
      color: #f0abfc;
    }
    .tag-code {
      background: rgba(74, 222, 128, 0.1);
      border: 1px solid rgba(74, 222, 128, 0.2);
      color: #86efac;
    }
    .casino-cta { display: flex; justify-content: flex-end; }
    .btn-play {
      width: 100%;
      text-align: center;
      padding: 1rem 2rem;
      border-radius: 1rem;
      background: #d946ef;
      font-weight: 900;
      font-size: 1.125rem;
      color: #fff;
      text-decoration: none;
      box-shadow: 0 20px 25px -5px rgba(217, 70, 239, 0.2);
      transition: background 0.2s;
    }
    @media (min-width: 1024px) {
      .btn-play { width: auto; }
    }
    .btn-play:hover { background: #e879f9; }
    
    /* Bonus Info Section */
    .bonus-section { position: relative; z-index: 10; padding: 5rem 0; }
    .bonus-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
    @media (min-width: 1024px) {
      .bonus-grid { grid-template-columns: 1fr 1fr; }
    }
    .bonus-card {
      border-radius: 1.5rem;
      background: rgba(9, 9, 11, 0.8);
      border: 1px solid rgba(217, 70, 239, 0.1);
      padding: 2rem;
    }
    .bonus-card-title { font-size: 1.875rem; font-weight: 900; color: #e879f9; margin-bottom: 1.5rem; }
    .bonus-card p { color: #d4d4d8; line-height: 1.75; margin-bottom: 1.25rem; }
    .steps { display: flex; flex-direction: column; gap: 1rem; }
    .step { display: flex; gap: 1rem; align-items: flex-start; }
    .step-num {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 0.75rem;
      background: rgba(217, 70, 239, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      color: #f0abfc;
      flex-shrink: 0;
    }
    .step-title { font-weight: 700; font-size: 1.125rem; }
    .step-desc { color: #a1a1aa; }
    
    /* Footer */
    footer {
      position: relative;
      z-index: 10;
      border-top: 1px solid rgba(217, 70, 239, 0.1);
      padding: 2.5rem 0;
      margin-top: 2.5rem;
    }
    .footer-inner {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      align-items: center;
    }
    @media (min-width: 1024px) {
      .footer-inner { flex-direction: row; justify-content: space-between; }
    }
    .footer-logo { font-size: 1.5rem; font-weight: 900; color: #e879f9; }
    .footer-disclaimer { color: #71717a; font-size: 0.875rem; margin-top: 0.5rem; }
    .footer-copy { color: #71717a; font-size: 0.875rem; text-align: center; }
    @media (min-width: 1024px) {
      .footer-copy { text-align: right; }
    }

/* Header wraps gracefully on narrow screens */
.header-inner { flex-wrap: wrap; gap: 0.75rem; }

/* Prominent promo code highlight */
.promo-code-highlight {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 2px dashed rgba(74, 222, 128, 0.5);
  background: rgba(74, 222, 128, 0.08);
  margin: 1rem 0;
}
.promo-code-highlight-label {
  color: #86efac;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: 100%;
}
.promo-code-highlight-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}
.promo-code-highlight-gives {
  color: #86efac;
  font-weight: 700;
  font-size: 0.95rem;
}
.promo-code-copy {
  margin-left: auto;
  padding: 0.45rem 1rem;
  border-radius: 0.6rem;
  background: #4ade80;
  color: #052e16;
  font-weight: 800;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.promo-code-copy:hover { background: #86efac; }
.promo-code-highlight.small {
  padding: 0.65rem 0.9rem;
  margin: 0.75rem 0 0;
}
.promo-code-highlight.small .promo-code-highlight-value { font-size: 1.15rem; }
.promo-code-highlight.small .promo-code-copy { padding: 0.35rem 0.75rem; font-size: 0.78rem; }
@media (max-width: 420px) {
  .promo-code-copy { margin-left: 0; width: 100%; }
}
