html, body { overflow-x: hidden; max-width: 100vw; }

  .aboutPage {
    font-family: var(--font-body);
    color: var(--color-text-body);
    background: var(--color-neutral-950);
  }

  /* HERO */
  .aboutHero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-4xl) var(--spacing-lg);
    text-align: center;
    background: var(--gradient-hero);
    overflow: hidden;
  }

  .aboutHeroOrb {
    position: absolute;
    border-radius: var(--radius-full);
    filter: blur(80px);
    opacity: 0.18;
    pointer-events: none;
  }

  .aboutHeroOrb--a {
    width: 520px;
    height: 520px;
    top: -120px;
    left: -100px;
    background: var(--color-brand-primary);
  }

  .aboutHeroOrb--b {
    width: 380px;
    height: 380px;
    bottom: -80px;
    right: -60px;
    background: var(--color-accent-gold);
  }

  .aboutHeroBadge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 6px var(--spacing-md);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,215,0,0.35);
    background: rgba(255,215,0,0.08);
    color: var(--color-accent-gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
  }

  .aboutHeroBadge svg { width: 14px; height: 14px; }

  .aboutHeroTitle {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: 1.15;
    margin: 0 0 var(--spacing-md);
  }

  .aboutHeroTitle span {
    background: linear-gradient(135deg, var(--color-accent-gold), var(--color-brand-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .aboutHeroSubtitle {
    max-width: 620px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin: 0 0 var(--spacing-xl);
  }

  .aboutHeroStats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-xl);
  }

  .aboutHeroStat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    min-width: 130px;
    backdrop-filter: blur(10px);
  }

  .aboutHeroStat strong {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-accent-gold);
    line-height: 1;
  }

  .aboutHeroStat span {
    font-size: 0.78rem;
    color: var(--color-text-secondary);
    margin-top: 4px;
    text-align: center;
  }

  /* WHO WE ARE - cards grid */
  .aboutSection {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }

  .aboutSection--alt {
    background: var(--gradient-section-alt);
  }

  .aboutSectionLabel {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-brand-secondary);
    margin-bottom: var(--spacing-sm);
  }

  .aboutSectionTitle {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--color-text-primary);
    margin: 0 0 var(--spacing-md);
  }

  .aboutSectionText {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text-secondary);
    max-width: 680px;
    margin: 0 0 var(--spacing-xl);
  }

  .aboutCardsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
  }

  .aboutCard {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: var(--radius-xl);
    background: var(--gradient-card);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    cursor: default;
  }

  .aboutCard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(255,255,255,0.15);
  }

  .aboutCardIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.07);
    margin-bottom: var(--spacing-md);
    font-size: 1.4rem;
  }

  .aboutCardTitle {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 var(--spacing-xs);
  }

  .aboutCardText {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0;
  }

  /* GETTING STARTED - timeline */
  .aboutTimeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: var(--spacing-xl);
    position: relative;
  }

  .aboutTimeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-brand-primary), var(--color-accent-gold), transparent);
    border-radius: 2px;
  }

  .aboutTimelineStep {
    display: flex;
    gap: var(--spacing-lg);
    padding-bottom: var(--spacing-xl);
    position: relative;
  }

  .aboutTimelineStep:last-child { padding-bottom: 0; }

  .aboutTimelineNum {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: var(--radius-full);
    background: var(--gradient-cta);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--color-neutral-950);
    box-shadow: var(--shadow-glow-primary);
    position: relative;
    z-index: 1;
  }

  .aboutTimelineContent { flex: 1; padding-top: 10px; }

  .aboutTimelineContent h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 var(--spacing-xs);
  }

  .aboutTimelineContent p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--color-text-secondary);
    margin: 0;
  }

  /* WELCOME BONUS - highlight boxes */
  .bonusGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
  }

  @media (max-width: 768px) {
    .bonusGrid { grid-template-columns: 1fr; }
  }

  .bonusBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    border-radius: var(--radius-xl);
    background: var(--gradient-card);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
  }

  .bonusBox:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow-gold);
    border-color: rgba(255,215,0,0.3);
  }

  .bonusBox--featured {
    border-color: rgba(255,215,0,0.35);
    background: linear-gradient(145deg, rgba(255,215,0,0.08), var(--color-neutral-800));
  }

  .bonusBoxTag {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: var(--color-accent-gold);
    color: var(--color-neutral-950);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .bonusBoxDeposit {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
  }

  .bonusBoxAmount {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-accent-gold);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
  }

  .bonusBoxMatch {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-brand-secondary);
    margin-bottom: var(--spacing-sm);
  }

  .bonusBoxNote {
    font-size: 0.78rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
  }

  .bonusMeta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0 var(--spacing-xl);
  }

  .bonusMetaChip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px var(--spacing-md);
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    color: var(--color-text-secondary);
  }

  .bonusMetaChip svg { color: var(--color-accent-gold); }

  /* MOBILE - two-col feature */
  .aboutFeatureRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-top: var(--spacing-xl);
  }

  @media (max-width: 768px) {
    .aboutFeatureRow { grid-template-columns: 1fr; }
  }

  .aboutFeatureVisual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    background: var(--gradient-card);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-card);
  }

  .aboutFeatureVisualInner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }

  .aboutFeatureVisualIcon {
    font-size: 4rem;
    line-height: 1;
    filter: drop-shadow(0 0 20px rgba(255,215,0,0.4));
  }

  .aboutFeatureVisualText {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    text-align: center;
  }

  .aboutFeatureVisualSub {
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    text-align: center;
  }

  .aboutFeatureList {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .aboutFeatureList li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.55;
  }

  .aboutFeatureList li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-brand-primary), var(--color-brand-secondary));
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 11px 11px;
    background-repeat: no-repeat;
    background-position: center;
  }

  /* SUPPORT */
  .aboutSupportRow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
  }

  .aboutSupportCard {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    background: var(--gradient-card);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
  }

  .aboutSupportCard:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
  }

  .aboutSupportIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.07);
    font-size: 1.3rem;
  }

  .aboutSupportInfo strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 2px;
  }

  .aboutSupportInfo span {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
  }

  /* FAQ - accordion */
  .aboutFaqList {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xl);
  }

  .aboutFaqItem {
    border-radius: var(--radius-lg);
    background: var(--gradient-card);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    transition: var(--transition-smooth);
  }

  .aboutFaqItem:hover { border-color: rgba(255,255,255,0.15); }

  .aboutFaqQuestion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) var(--spacing-xl);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-primary);
    list-style: none;
    user-select: none;
  }

  .aboutFaqQuestion::-webkit-details-marker { display: none; }

  .aboutFaqChevron {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
  }

  details[open] .aboutFaqChevron { transform: rotate(180deg); background: rgba(255,255,255,0.12); }

  .aboutFaqAnswer {
    padding: 0 var(--spacing-xl) var(--spacing-lg);
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
  }

  /* CTA STRIP */
  .aboutCtaStrip {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    margin: var(--spacing-2xl) 0 var(--spacing-xl);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: var(--shadow-card);
  }

  .aboutCtaStrip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,215,0,0.12) 0%, transparent 65%);
    pointer-events: none;
  }

  .aboutCtaTitle {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--color-text-primary);
    margin: 0 0 var(--spacing-sm);
    position: relative;
  }

  .aboutCtaSub {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin: 0 0 var(--spacing-xl);
    position: relative;
    max-width: 480px;
  }

  /* Responsive tweaks */
  @media (max-width: 768px) {
    .aboutTimeline::before { left: 21px; }
    .aboutHero { padding: var(--spacing-2xl) var(--spacing-md); }
    .aboutSection { padding: var(--spacing-2xl) var(--spacing-md); }
  }

  @media (max-width: 480px) {
    .aboutHeroStat { min-width: 110px; }
    .bonusBoxAmount { font-size: 1.8rem; }
  }