:root {
    --bg-deep: #0a0a1a;
    --bg-card: #111128;
    --bg-card-hover: #181840;
    --accent-primary: #22d3ee;
    --accent-secondary: #a855f7;
    --accent-warm: #ec4899;
    --coral-pink: #ec4899;
    --text-primary: #e8eaed;
    --text-secondary: #9ca3af;
    --border: #1e1e3b;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-glow: 0 0 30px rgba(34, 211, 238, 0.15);
    --shadow-glow-purple: 0 0 30px rgba(168, 85, 247, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Chakra Petch', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-max: 1200px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(34, 211, 238, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 10%, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 20% 80%, rgba(236, 72, 153, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

main {
    position: relative;
    z-index: 1;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-secondary);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   AGE BADGE
   ============================================ */
.age-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    z-index: 9999;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
    animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 20px rgba(34, 211, 238, 0.4); }
    50% { box-shadow: 0 0 30px rgba(168, 85, 247, 0.6); }
}

/* ============================================
   COMPLIANCE STRIP
   ============================================ */
.compliance-strip {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-warm));
    padding: 6px 0;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0a0a1a;
    z-index: 100;
    position: relative;
}

.compliance-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.compliance-strip__sep {
    opacity: 0.5;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    transition: all var(--transition);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo__svg {
    height: 44px;
    width: auto;
}

.site-nav__list {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.site-nav__list a {
    display: block;
    padding: 8px 16px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all var(--transition);
    text-decoration: none;
}

.site-nav__list a:hover,
.site-nav__list a.active {
    color: var(--accent-primary);
    background: rgba(34, 211, 238, 0.08);
}

.site-nav__dropdown {
    position: relative;
}

.site-nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    box-shadow: var(--shadow-glow-purple);
}

.site-nav__dropdown:hover .site-nav__dropdown-menu,
.site-nav__dropdown.open .site-nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-nav__dropdown-menu a {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
}

.site-nav__arrow {
    font-size: 0.7rem;
    margin-left: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff;
    box-shadow: 0 4px 20px rgba(34, 211, 238, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(34, 211, 238, 0.5);
    color: #fff;
}

.btn--secondary {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-warm));
    color: #fff;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.btn--secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.5);
    color: #fff;
}

.btn--outline {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

.btn--outline:hover {
    background: rgba(34, 211, 238, 0.1);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.btn--large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn--block {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg canvas {
    width: 100%;
    height: 100%;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.85rem;
    color: var(--accent-primary);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero__title .gradient-text {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 80px 0;
    position: relative;
}

.section--alt {
    background: rgba(17, 17, 40, 0.5);
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-primary);
    margin-bottom: 12px;
}

.section__title {
    margin-bottom: 16px;
}

.section__subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.05), rgba(168, 85, 247, 0.05));
    opacity: 0;
    transition: opacity var(--transition);
}

.card:hover {
    border-color: rgba(34, 211, 238, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.card:hover::before {
    opacity: 1;
}

.card__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.card__title {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.card__text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   GAME CARDS
   ============================================ */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

.game-card:hover {
    border-color: rgba(34, 211, 238, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(34, 211, 238, 0.2);
    color: inherit;
}

.game-card__preview {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.game-card__preview--reels {
    background: linear-gradient(135deg, #0c1445, #1a0a3e);
}

.game-card__preview--wheel {
    background: linear-gradient(135deg, #0a2a1a, #1a0a3e);
}

.game-card__preview--cards {
    background: linear-gradient(135deg, #1a0a2e, #0a1a3e);
}

.game-card__preview--scratch {
    background: linear-gradient(135deg, #1a1a0a, #0a1a2e);
}

.game-card__preview--arcade {
    background: linear-gradient(135deg, #0a0a2e, #2e0a1a);
}

.game-card__info {
    padding: 24px;
}

.game-card__name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.game-card__type {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-primary);
    background: rgba(34, 211, 238, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.game-card__desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.game-card__play {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-primary);
    font-weight: 600;
    margin-top: 12px;
    font-size: 0.9rem;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }

/* ============================================
   FEATURES
   ============================================ */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.feature:hover {
    border-color: rgba(34, 211, 238, 0.2);
}

.feature__icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.feature__title {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.feature__text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
}

.testimonial__stars {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.testimonial__text {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial__name {
    font-weight: 600;
    font-size: 0.95rem;
}

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

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-card);
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: rgba(34, 211, 238, 0.2);
}

.faq-item__question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color var(--transition);
}

.faq-item__question:hover {
    color: var(--accent-primary);
}

.faq-item__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 1.2rem;
    transition: transform var(--transition);
}

.faq-item.active .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-item__answer {
    max-height: 500px;
}

.faq-item__answer-inner {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section {
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.05), rgba(168, 85, 247, 0.08), rgba(236, 72, 153, 0.05));
    border-radius: var(--radius-lg);
}

.cta-section__inner {
    position: relative;
    z-index: 1;
}

/* ============================================
   GAME PAGE LAYOUT
   ============================================ */
.game-page {
    padding: 40px 0;
}

.game-page__header {
    text-align: center;
    margin-bottom: 40px;
}

.game-page__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.game-page__subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.game-container {
    max-width: 700px;
    margin: 0 auto 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.game-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-warm));
}

.game-hud {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 12px;
}

.game-hud__item {
    text-align: center;
}

.game-hud__label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-hud__value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.game-area {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.game-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

.game-message {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
}

.game-info {
    max-width: 700px;
    margin: 0 auto;
}

.game-info__section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
}

.game-info__section h3 {
    margin-bottom: 16px;
    color: var(--accent-primary);
}

.game-info__section p,
.game-info__section li {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.game-info__section ul,
.game-info__section ol {
    padding-left: 24px;
}

/* ============================================
   REEL SLOTS SPECIFIC
   ============================================ */
.slot-machine {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 20px 0;
}

.slot-reel {
    width: 100px;
    height: 120px;
    background: rgba(10, 10, 26, 0.8);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.slot-reel.spinning {
    animation: reel-blur 0.1s linear infinite;
}

@keyframes reel-blur {
    0% { filter: blur(0); }
    50% { filter: blur(2px); }
    100% { filter: blur(0); }
}

/* ============================================
   WHEEL SPECIFIC
   ============================================ */
.wheel-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
}

.wheel-canvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid var(--accent-primary);
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.3);
}

.wheel-pointer {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    z-index: 2;
}

/* ============================================
   MEMORY CARDS SPECIFIC
   ============================================ */
.memory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.memory-card {
    aspect-ratio: 1;
    border-radius: var(--radius);
    cursor: pointer;
    position: relative;
    perspective: 600px;
}

.memory-card__inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    border-radius: var(--radius);
}

.memory-card.flipped .memory-card__inner {
    transform: rotateY(180deg);
}

.memory-card__front,
.memory-card__back {
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    font-size: 2rem;
}

.memory-card__front {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    transform: rotateY(180deg);
}

.memory-card__back {
    background: var(--bg-card);
    border: 2px solid var(--border);
    font-size: 1.5rem;
}

.memory-card__back::after {
    content: '✨';
    font-size: 1.8rem;
}

.memory-card.matched .memory-card__inner {
    transform: rotateY(180deg);
}

.memory-card.matched .memory-card__front {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.3), rgba(168, 85, 247, 0.3));
    border: 2px solid var(--accent-primary);
}

/* ============================================
   SCRATCH CARD SPECIFIC
   ============================================ */
.scratch-area {
    position: relative;
    width: 320px;
    height: 240px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: crosshair;
    border: 2px solid var(--border);
}

.scratch-canvas {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.scratch-reveal {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(135deg, #0a1a2e, #1a0a3e);
    font-family: var(--font-heading);
    z-index: 1;
}

/* ============================================
   ARCADE SPECIFIC
   ============================================ */
.arcade-canvas {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: rgba(10, 10, 26, 0.9);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    display: block;
    margin: 0 auto;
}

/* ============================================
   CONTENT PAGES
   ============================================ */
.page-hero {
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
}

.page-hero__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 16px;
}

.page-hero__subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--accent-primary);
    font-size: 1.5rem;
}

.content-wrapper h3 {
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.content-wrapper p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.content-wrapper ul,
.content-wrapper ol {
    padding-left: 24px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.content-wrapper li {
    margin-bottom: 8px;
}

.content-wrapper a {
    color: var(--accent-primary);
}

.content-wrapper strong {
    color: var(--text-primary);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.contact-info-card h3 {
    margin-bottom: 20px;
    color: var(--accent-primary);
}

.contact-detail {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-detail__icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail__text {
    color: var(--text-secondary);
}

.contact-detail__text strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

/* ============================================
   HELPLINE BANNER
   ============================================ */
.helpline-banner {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.05), rgba(168, 85, 247, 0.08));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
}

.helpline-banner__inner {
    display: flex;
    gap: 20px;
    align-items: center;
}

.helpline-banner__icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.helpline-banner__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--accent-primary);
}

.helpline-banner__content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: rgba(10, 10, 26, 0.95);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 32px;
    margin-bottom: 40px;
}

.site-footer__logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.site-footer__tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.site-footer__links h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.site-footer__links ul {
    list-style: none;
}

.site-footer__links li {
    margin-bottom: 10px;
}

.site-footer__links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.site-footer__links a:hover {
    color: var(--accent-primary);
}

.site-footer__support h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.helpline-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.helpline-card {
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.15);
    border-radius: var(--radius);
    padding: 14px;
    font-size: 0.85rem;
}

.helpline-card strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.helpline-card a,
.helpline-card span {
    display: block;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 2px;
}

.helpline-card a:hover {
    color: var(--accent-primary);
}

.site-footer__compliance {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    margin-bottom: 24px;
}

.site-footer__badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge--age {
    background: rgba(236, 72, 153, 0.15);
    color: var(--accent-warm);
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.badge--free {
    background: rgba(34, 211, 238, 0.15);
    color: var(--accent-primary);
    border: 1px solid rgba(34, 211, 238, 0.3);
}

.badge--fun {
    background: rgba(168, 85, 247, 0.15);
    color: var(--accent-secondary);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.badge--nz {
    background: rgba(34, 211, 238, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.site-footer__disclaimer {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.6;
    opacity: 0.8;
}

.site-footer__bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.site-footer__bottom p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.site-footer__nz {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 20px;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-consent__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-consent__inner p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    flex: 1;
    min-width: 280px;
}

.cookie-consent__buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ============================================
   AURORA ANIMATION BACKGROUNDS
   ============================================ */
.aurora-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.aurora-bg__wave {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    opacity: 0.15;
    animation: aurora-drift 15s ease-in-out infinite;
}

.aurora-bg__wave--1 {
    background: radial-gradient(ellipse at 30% 20%, rgba(34, 211, 238, 0.3), transparent 60%);
    animation-delay: 0s;
}

.aurora-bg__wave--2 {
    background: radial-gradient(ellipse at 70% 40%, rgba(168, 85, 247, 0.25), transparent 60%);
    animation-delay: -5s;
    animation-duration: 18s;
}

.aurora-bg__wave--3 {
    background: radial-gradient(ellipse at 50% 60%, rgba(236, 72, 153, 0.15), transparent 50%);
    animation-delay: -10s;
    animation-duration: 22s;
}

@keyframes aurora-drift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, -3%) rotate(1deg); }
    50% { transform: translate(-1%, 2%) rotate(-1deg); }
    75% { transform: translate(3%, 1%) rotate(0.5deg); }
}

/* ============================================
   GRADIENT TEXT UTILITY
   ============================================ */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ============================================
   STEPS / PROCESS
   ============================================ */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    counter-reset: step;
}

.step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    counter-increment: step;
}

.step::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    margin: 0 auto 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}

.step__title {
    margin-bottom: 8px;
}

.step__text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .site-footer__support {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        z-index: 999;
    }

    .site-nav.open {
        opacity: 1;
        visibility: visible;
    }

    .site-nav__list {
        flex-direction: column;
        gap: 8px;
    }

    .site-nav__list a {
        font-size: 1.2rem;
        padding: 12px 24px;
    }

    .site-nav__dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 4px 0 4px 20px;
    }

    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero__stats {
        gap: 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .memory-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .slot-reel {
        width: 80px;
        height: 96px;
        font-size: 2.5rem;
    }

    .wheel-wrapper {
        width: 260px;
        height: 260px;
    }

    .section {
        padding: 60px 0;
    }

    .compliance-strip__sep {
        display: none;
    }

    .compliance-strip__inner {
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .game-container {
        padding: 20px;
        border-radius: var(--radius);
    }

    .slot-reel {
        width: 65px;
        height: 80px;
        font-size: 2rem;
    }

    .memory-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .wheel-wrapper {
        width: 220px;
        height: 220px;
    }

    .scratch-area {
        width: 280px;
        height: 210px;
    }
}
