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

:root {
    --tone-lime: #c4ff00;
    --tone-lime-bright: #e0ff33;
    --tone-violet: #9d2eff;
    --tone-violet-deep: #6a0dad;
    --tone-magenta: #ff00ff;
    --tone-dark-base: #000000;
    --tone-dark-layer: #0a0a0a;
    --tone-dark-mid: #1a1a1a;
    --tone-dark-card: #151515;
    --tone-text-main: #ffffff;
    --tone-text-soft: #b8b8b8;
    --tone-text-dim: #666666;
    --tone-success: #00ff41;
    --tone-alert: #ffaa00;
    --tone-cyan: #00d9ff;
    --tone-flame: #ff5e00;
    
    --typeface: 'Poppins', sans-serif;
    --weight-thin: 300;
    --weight-normal: 400;
    --weight-medium: 500;
    --weight-semi: 600;
    --weight-bold: 700;
    --weight-heavy: 800;
    --weight-black: 900;
    
    --gap-tiny: 0.5rem;
    --gap-small: 1rem;
    --gap-medium: 1.5rem;
    --gap-large: 2rem;
    --gap-huge: 3rem;
    --gap-massive: 4.5rem;
    
    --curve-small: 10px;
    --curve-medium: 15px;
    --curve-large: 20px;
    --curve-huge: 25px;
    --curve-pill: 100px;
    
    --motion-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --motion-quick: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--typeface);
    background: var(--tone-dark-base);
    color: var(--tone-text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--motion-smooth);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* ========== SHARED UTILITIES ========== */
.content-frame {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.segment-spacing {
    padding: var(--gap-massive) 0;
}

.accent-glow {
    color: var(--tone-lime);
    font-weight: var(--weight-bold);
    text-shadow: 0 0 25px rgba(196, 255, 0, 0.7);
}

.accent-glow-white {
    color: var(--tone-lime);
    text-shadow: 0 0 30px rgba(196, 255, 0, 0.8);
}

.accent-violet {
    color: var(--tone-violet);
    text-shadow: 0 0 25px rgba(157, 46, 255, 0.7);
}

/* ========== MASTHEAD ========== */
.masthead-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(25px);
    border-bottom: 2px solid var(--tone-lime);
    box-shadow: 0 4px 35px rgba(196, 255, 0, 0.18);
}

.masthead-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-identity {
    font-size: 2rem;
    font-weight: var(--weight-black);
    background: linear-gradient(135deg, var(--tone-lime), var(--tone-violet), var(--tone-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 45px rgba(196, 255, 0, 0.5);
    letter-spacing: 1px;
}

.navigation-panel {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.navigation-items {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.navigation-anchor {
    color: var(--tone-text-soft);
    font-weight: var(--weight-semi);
    position: relative;
    padding: 0.5rem 0;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.navigation-anchor::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tone-lime), var(--tone-violet));
    transition: width 0.3s ease;
}

.navigation-anchor:hover {
    color: var(--tone-lime);
}

.navigation-anchor:hover::after {
    width: 100%;
}

.action-trigger-header {
    background: linear-gradient(135deg, var(--tone-lime), var(--tone-success));
    color: var(--tone-dark-base);
    padding: 0.9rem 2.5rem;
    border-radius: var(--curve-pill);
    font-weight: var(--weight-bold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--motion-smooth);
    box-shadow: 0 4px 28px rgba(196, 255, 0, 0.45);
}

.action-trigger-header:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 40px rgba(196, 255, 0, 0.65);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 5px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--tone-lime);
    border-radius: 3px;
    transition: var(--motion-smooth);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    padding: 2rem;
    transform: translateY(-150%);
    transition: var(--motion-smooth);
    z-index: 999;
    border-bottom: 2px solid var(--tone-lime);
}

.mobile-drawer.active {
    transform: translateY(0);
}

.mobile-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-items a {
    color: var(--tone-text-main);
    font-size: 1.2rem;
    font-weight: var(--weight-semi);
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-cta {
    background: var(--tone-lime) !important;
    color: var(--tone-dark-base) !important;
    text-align: center;
    border-radius: var(--curve-pill);
    margin-top: 1rem;
}

/* ========== SHOWCASE ========== */
.showcase-banner {
    margin-top: 85px;
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at top, rgba(157, 46, 255, 0.18), transparent 70%),
                radial-gradient(ellipse at bottom right, rgba(196, 255, 0, 0.12), transparent 70%),
                var(--tone-dark-base);
}

.showcase-banner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 950px;
    height: 950px;
    background: radial-gradient(circle, rgba(157, 46, 255, 0.28), transparent 60%);
    border-radius: 50%;
    animation: glow-pulse 6s ease-in-out infinite;
}

.showcase-banner::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, rgba(196, 255, 0, 0.22), transparent 60%);
    border-radius: 50%;
    animation: glow-pulse 8s ease-in-out infinite reverse;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.35); opacity: 1; }
}

.showcase-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.showcase-messaging h1 {
    font-size: 3rem;
    font-weight: var(--weight-black);
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 0 35px rgba(196, 255, 0, 0.35);
}

.showcase-messaging p {
    font-size: 1.35rem;
    color: var(--tone-text-soft);
    margin-bottom: 2.5rem;
    line-height: 1.85;
}

.showcase-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.action-primary {
    background: linear-gradient(135deg, var(--tone-lime), var(--tone-success));
    color: var(--tone-dark-base);
    padding: 1.2rem 3rem;
    border-radius: var(--curve-pill);
    font-size: 1.2rem;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    transition: var(--motion-smooth);
    box-shadow: 0 6px 35px rgba(196, 255, 0, 0.55);
}

.action-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 45px rgba(196, 255, 0, 0.75);
}

.action-outline {
    background: transparent;
    color: var(--tone-text-main);
    padding: 1.2rem 3rem;
    border: 3px solid var(--tone-violet);
    border-radius: var(--curve-pill);
    font-size: 1.2rem;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    transition: var(--motion-smooth);
}

.action-outline:hover {
    background: var(--tone-violet);
    transform: translateY(-4px);
    box-shadow: 0 8px 35px rgba(157, 46, 255, 0.65);
}

.showcase-metrics {
    display: flex;
    gap: 3.5rem;
    margin-top: 2rem;
}

.metric-block {
    text-align: left;
}

.metric-figure {
    font-size: 3rem;
    font-weight: var(--weight-black);
    color: var(--tone-lime);
    display: block;
    text-shadow: 0 0 28px rgba(196, 255, 0, 0.65);
}

.metric-label {
    color: var(--tone-text-soft);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: var(--weight-semi);
}

.showcase-imagery {
    position: relative;
}

.imagery-container {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(157, 46, 255, 0.35), rgba(196, 255, 0, 0.25));
    border-radius: var(--curve-huge);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    border: 3px solid rgba(196, 255, 0, 0.35);
    box-shadow: 0 15px 65px rgba(157, 46, 255, 0.45);
    animation: hover-drift 6s ease-in-out infinite;
    overflow: hidden;
}

.imagery-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes hover-drift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

/* ========== SEGMENT HEADING ========== */
.segment-heading {
    text-align: center;
    margin-bottom: 4rem;
}

.segment-heading h2 {
    font-size: 3rem;
    font-weight: var(--weight-black);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 35px rgba(196, 255, 0, 0.35);
}

.segment-heading p {
    font-size: 1.25rem;
    color: var(--tone-text-soft);
    max-width: 800px;
    margin: 0 auto;
}

/* ========== HIGHLIGHTS ========== */
.highlights-segment {
    background: linear-gradient(180deg, var(--tone-dark-base) 0%, var(--tone-dark-layer) 100%);
}

.highlights-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.highlight-tile {
    background: var(--tone-dark-card);
    padding: 2.5rem;
    border-radius: var(--curve-large);
    border: 2px solid rgba(196, 255, 0, 0.18);
    transition: var(--motion-smooth);
    position: relative;
    overflow: hidden;
}

.highlight-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--tone-lime), var(--tone-violet), var(--tone-magenta));
}

.highlight-tile:hover {
    transform: translateY(-10px);
    border-color: var(--tone-lime);
    box-shadow: 0 18px 55px rgba(157, 46, 255, 0.45);
}

.tile-symbol {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 18px rgba(196, 255, 0, 0.55));
}

.highlight-tile h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--tone-lime);
    font-weight: var(--weight-bold);
}

.highlight-tile p {
    color: var(--tone-text-soft);
    line-height: 1.95;
}

/* ========== REWARDS ========== */
.rewards-segment {
    background: radial-gradient(ellipse at center, rgba(157, 46, 255, 0.12), transparent 70%),
                var(--tone-dark-base);
}

.rewards-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reward-tile {
    background: var(--tone-dark-card);
    padding: 2.5rem;
    border-radius: var(--curve-large);
    border: 2px solid transparent;
    transition: var(--motion-smooth);
    position: relative;
    overflow: hidden;
}

.reward-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--tone-lime), var(--tone-violet));
}

.reward-tile:hover {
    border-color: var(--tone-violet);
    transform: translateY(-10px);
    box-shadow: 0 22px 65px rgba(157, 46, 255, 0.55);
}

.reward-badge {
    color: var(--tone-lime);
    font-size: 0.9rem;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.reward-tile h3 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    color: var(--tone-text-main);
    font-weight: var(--weight-bold);
}

.reward-amount {
    font-size: 1.4rem;
    color: var(--tone-text-soft);
    margin-bottom: 2rem;
    font-weight: var(--weight-semi);
}

.reward-perks {
    list-style: none;
    margin-bottom: 2rem;
}

.reward-perks li {
    padding: 0.7rem 0;
    color: var(--tone-text-soft);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.reward-perks li::before {
    content: '✓';
    color: var(--tone-success);
    font-weight: var(--weight-bold);
    font-size: 1.3rem;
}

.action-reward {
    width: 100%;
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--tone-violet), var(--tone-violet-deep));
    color: var(--tone-text-main);
    padding: 1.1rem;
    border-radius: var(--curve-medium);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    transition: var(--motion-smooth);
    box-shadow: 0 6px 28px rgba(157, 46, 255, 0.45);
}

.action-reward:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 38px rgba(157, 46, 255, 0.65);
}

/* ========== ENTERTAINMENT ========== */
.entertainment-segment {
    background: var(--tone-dark-layer);
}

.entertainment-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.entertainment-tile {
    background: var(--tone-dark-card);
    padding: 2.5rem;
    border-radius: var(--curve-large);
    text-align: center;
    border: 2px solid rgba(196, 255, 0, 0.18);
    transition: var(--motion-smooth);
    cursor: pointer;
}

.entertainment-tile:hover {
    border-color: var(--tone-lime);
    transform: translateY(-10px);
    box-shadow: 0 18px 50px rgba(196, 255, 0, 0.35);
}

.tile-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 22px rgba(196, 255, 0, 0.55));
}

.entertainment-tile h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: var(--weight-bold);
}

.tile-quantity {
    color: var(--tone-text-dim);
    font-size: 0.95rem;
    font-weight: var(--weight-semi);
}

.tile-description {
    color: var(--tone-text-soft);
    margin-top: 1rem;
    line-height: 1.8;
}

.providers-showcase {
    text-align: center;
    padding: 4rem;
    background: rgba(157, 46, 255, 0.06);
    border-radius: var(--curve-huge);
}

.providers-showcase h3 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: var(--tone-text-soft);
    font-weight: var(--weight-bold);
}

.providers-collection {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.provider-tag {
    padding: 1.2rem 2rem;
    background: var(--tone-dark-card);
    border-radius: var(--curve-medium);
    color: var(--tone-text-soft);
    font-weight: var(--weight-semi);
    transition: var(--motion-smooth);
    border: 2px solid rgba(196, 255, 0, 0.12);
}

.provider-tag:hover {
    color: var(--tone-lime);
    transform: scale(1.12);
    border-color: var(--tone-lime);
    box-shadow: 0 8px 28px rgba(196, 255, 0, 0.35);
}

/* ========== GAMING DEPTH ========== */
.gaming-depth {
    background: var(--tone-dark-base);
}

.depth-content {
    max-width: 1000px;
    margin: 0 auto;
}

.depth-content > h2 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    text-align: center;
    text-shadow: 0 0 35px rgba(196, 255, 0, 0.35);
}

.depth-block {
    margin-bottom: 3.5rem;
}

.depth-block h3 {
    font-size: 2rem;
    margin-bottom: 1.8rem;
    color: var(--tone-lime);
    font-weight: var(--weight-bold);
}

.depth-block p {
    font-size: 1.15rem;
    line-height: 2.05;
    color: var(--tone-text-soft);
    margin-bottom: 1.8rem;
}

/* ========== PLATFORM OVERVIEW ========== */
.platform-overview {
    background: linear-gradient(180deg, var(--tone-dark-layer) 0%, var(--tone-dark-base) 100%);
}

.overview-content {
    max-width: 1000px;
    margin: 0 auto;
}

.overview-content > h2 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    text-align: center;
    text-shadow: 0 0 35px rgba(196, 255, 0, 0.35);
}

.overview-block {
    margin-bottom: 3.5rem;
}

.overview-block h3 {
    font-size: 2rem;
    margin-bottom: 1.8rem;
    color: var(--tone-lime);
    font-weight: var(--weight-bold);
}

.overview-block p {
    font-size: 1.15rem;
    line-height: 2.05;
    color: var(--tone-text-soft);
    margin-bottom: 1.8rem;
}

/* ========== BANKING ========== */
.banking-segment {
    background: var(--tone-dark-base);
}

.banking-container {
    background: var(--tone-dark-card);
    padding: 3rem;
    border-radius: var(--curve-large);
    border: 2px solid rgba(196, 255, 0, 0.22);
}

.banking-container > h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--tone-lime);
    text-align: center;
}

.banking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.banking-option {
    background: var(--tone-dark-layer);
    padding: 2rem;
    border-radius: var(--curve-medium);
    border: 2px solid rgba(196, 255, 0, 0.18);
}

.banking-option.recommended {
    border-color: var(--tone-success);
}

.option-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.option-icon {
    font-size: 2.5rem;
}

.option-header h4 {
    font-size: 1.3rem;
    color: var(--tone-lime);
    margin-bottom: 0.3rem;
}

.option-tag {
    font-size: 0.8rem;
    background: rgba(0, 255, 65, 0.22);
    padding: 0.3rem 0.7rem;
    border-radius: 5px;
    font-weight: var(--weight-bold);
}

.option-tag.popular {
    color: var(--tone-success);
}

.option-tag.recommended {
    color: var(--tone-success);
}

.option-details {
    display: grid;
    gap: 0.9rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
}

.detail-row span {
    color: var(--tone-text-soft);
}

.free-label {
    color: var(--tone-success);
}

.banking-notice {
    background: rgba(196, 255, 0, 0.06);
    padding: 2rem;
    border-radius: var(--curve-medium);
    border-left: 5px solid var(--tone-lime);
}

.banking-notice h4 {
    color: var(--tone-lime);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.banking-notice ul {
    list-style: none;
    color: var(--tone-text-soft);
    line-height: 2.2;
}

/* ========== GETTING STARTED ========== */
.getting-started {
    background: linear-gradient(135deg, rgba(157, 46, 255, 0.12), rgba(196, 255, 0, 0.06));
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.step-card {
    background: var(--tone-dark-card);
    padding: 3rem 2rem;
    border-radius: var(--curve-large);
    text-align: center;
    border: 2px solid rgba(196, 255, 0, 0.22);
    position: relative;
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tone-lime);
    color: var(--tone-dark-base);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--weight-black);
    font-size: 1.5rem;
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: var(--tone-lime);
    font-weight: var(--weight-bold);
}

.step-card p {
    color: var(--tone-text-soft);
    margin-bottom: 1.8rem;
    line-height: 1.9;
}

.step-action {
    display: inline-block;
    background: var(--tone-violet);
    color: var(--tone-text-main);
    padding: 0.9rem 2.5rem;
    border-radius: var(--curve-pill);
    font-weight: var(--weight-bold);
    transition: var(--motion-smooth);
}

.step-action:hover {
    background: var(--tone-violet-deep);
    transform: translateY(-3px);
}

/* ========== RESPONSIBLE GAMING ========== */
.responsible-segment {
    background: var(--tone-dark-layer);
}

.responsible-content {
    max-width: 1000px;
    margin: 0 auto;
}

.responsible-content > h2 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.responsible-block {
    margin-bottom: 3rem;
}

.responsible-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--tone-lime);
    font-weight: var(--weight-bold);
}

.responsible-block p {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--tone-text-soft);
    margin-bottom: 1.5rem;
}

/* ========== QUESTIONS/FAQ ========== */
.questions-segment {
    background: var(--tone-dark-base);
}

.questions-wrapper {
    max-width: 950px;
    margin: 0 auto;
}

.question-box {
    background: var(--tone-dark-card);
    margin-bottom: 1.5rem;
    border-radius: var(--curve-medium);
    overflow: hidden;
    border: 2px solid rgba(196, 255, 0, 0.18);
}

.question-trigger {
    width: 100%;
    padding: 1.8rem;
    background: transparent;
    color: var(--tone-text-main);
    text-align: left;
    font-size: 1.2rem;
    font-weight: var(--weight-semi);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--motion-smooth);
}

.question-trigger:hover {
    color: var(--tone-lime);
}

.question-toggle {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.question-box.active .question-toggle {
    transform: rotate(45deg);
}

.question-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.question-box.active .question-answer {
    max-height: 600px;
}

.answer-text {
    padding: 0 1.8rem 1.8rem;
    color: var(--tone-text-soft);
    line-height: 1.95;
}

/* ========== CLOSING APPEAL ========== */
.closing-appeal {
    background: linear-gradient(135deg, var(--tone-violet), var(--tone-violet-deep));
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.closing-appeal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 255, 0, 0.18), transparent 50%);
    animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.closing-appeal h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 35px rgba(255, 255, 255, 0.35);
}

.closing-appeal p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.action-closing {
    background: var(--tone-lime);
    color: var(--tone-dark-base);
    padding: 1.5rem 4rem;
    font-size: 1.4rem;
    font-weight: var(--weight-bold);
    border-radius: var(--curve-pill);
    text-transform: uppercase;
    transition: var(--motion-smooth);
    display: inline-block;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 45px rgba(196, 255, 0, 0.55);
}

.action-closing:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 65px rgba(196, 255, 0, 0.75);
}

/* ========== SITE FOOTER ========== */
.site-footer {
    background: var(--tone-dark-base);
    border-top: 3px solid var(--tone-lime);
    padding: 4rem 0 1.5rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: var(--tone-lime);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: var(--weight-bold);
}

.footer-navigation {
    list-style: none;
}

.footer-navigation li {
    margin-bottom: 0.8rem;
}

.footer-navigation a {
    color: var(--tone-text-soft);
    transition: var(--motion-quick);
    font-weight: var(--weight-medium);
}

.footer-navigation a:hover {
    color: var(--tone-lime);
    padding-left: 8px;
}

.age-restriction {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--tone-dark-card);
    border-radius: var(--curve-medium);
    text-align: center;
    border: 2px solid var(--tone-alert);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--tone-lime);
    color: var(--tone-dark-base);
    font-size: 1.8rem;
    font-weight: var(--weight-black);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.age-restriction p {
    color: var(--tone-text-soft);
    line-height: 1.8;
}

.footer-base {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-text {
    color: var(--tone-text-dim);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .showcase-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .showcase-messaging h1 {
        font-size: 3rem;
    }
    
    .showcase-imagery {
        order: -1;
    }
}

@media (max-width: 768px) {
    .navigation-panel {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .showcase-messaging h1 {
        font-size: 2.5rem;
    }
    
    .showcase-metrics {
        flex-direction: column;
        gap: 2rem;
    }
    
    .segment-heading h2 {
        font-size: 2.2rem;
    }
    
    .content-frame {
        padding: 0 1.5rem;
    }
    
    .depth-content > h2,
    .overview-content > h2,
    .responsible-content > h2 {
        font-size: 2.2rem;
    }
    
    .depth-block h3,
    .overview-block h3 {
        font-size: 1.6rem;
    }
    
    .closing-appeal h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .showcase-messaging h1 {
        font-size: 2rem;
    }
    
    .segment-heading h2 {
        font-size: 1.8rem;
    }
    
    .action-primary,
    .action-outline {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
.tournament-segment {
    background: linear-gradient(180deg, var(--tone-dark-base) 0%, rgba(157, 46, 255, 0.08) 100%);
}

.tournament-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.tournament-card {
    background: var(--tone-dark-card);
    border-radius: var(--curve-large);
    padding: 2.5rem;
    border: 2px solid rgba(196, 255, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: var(--motion-smooth);
}

.tournament-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--tone-lime), var(--tone-violet));
}

.tournament-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(157, 46, 255, 0.4);
    border-color: var(--tone-lime);
}

.tournament-prize {
    font-size: 2.5rem;
    font-weight: var(--weight-black);
    color: var(--tone-lime);
    text-shadow: 0 0 25px rgba(196, 255, 0, 0.5);
    margin-bottom: 1rem;
}

.tournament-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--tone-text-main);
}

.tournament-card p {
    color: var(--tone-text-soft);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.tournament-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--tone-text-dim);
    font-size: 0.9rem;
}

/* Security Segment */
.security-segment {
    background: var(--tone-dark-layer);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.security-item {
    background: var(--tone-dark-card);
    padding: 2.5rem;
    border-radius: var(--curve-large);
    text-align: center;
    border: 2px solid rgba(196, 255, 0, 0.12);
    transition: var(--motion-smooth);
}

.security-item:hover {
    border-color: var(--tone-success);
    box-shadow: 0 15px 40px rgba(0, 255, 65, 0.2);
}

.security-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(0, 255, 65, 0.4));
}

.security-item h3 {
    font-size: 1.4rem;
    color: var(--tone-lime);
    margin-bottom: 1rem;
}

.security-item p {
    color: var(--tone-text-soft);
    line-height: 1.85;
}

/* Slots Showcase */
.slots-showcase-segment {
    background: radial-gradient(ellipse at bottom, rgba(196, 255, 0, 0.08), transparent 70%), var(--tone-dark-base);
}

.slots-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.slot-category {
    background: linear-gradient(145deg, var(--tone-dark-card), rgba(157, 46, 255, 0.1));
    padding: 2.5rem;
    border-radius: var(--curve-large);
    border: 2px solid rgba(157, 46, 255, 0.2);
    transition: var(--motion-smooth);
}

.slot-category:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 45px rgba(157, 46, 255, 0.35);
}

.slot-category h3 {
    font-size: 1.6rem;
    color: var(--tone-violet);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.slot-category p {
    color: var(--tone-text-soft);
    line-height: 1.95;
    margin-bottom: 1rem;
}

.slot-titles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.slot-title-tag {
    background: rgba(196, 255, 0, 0.15);
    color: var(--tone-lime);
    padding: 0.4rem 1rem;
    border-radius: var(--curve-pill);
    font-size: 0.85rem;
    font-weight: var(--weight-semi);
}

/* Live Casino Deep */
.live-deep-segment {
    background: linear-gradient(135deg, var(--tone-dark-layer), rgba(157, 46, 255, 0.05));
}

.live-tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.live-table-card {
    background: var(--tone-dark-card);
    border-radius: var(--curve-large);
    overflow: hidden;
    border: 2px solid rgba(196, 255, 0, 0.15);
    transition: var(--motion-smooth);
}

.live-table-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(196, 255, 0, 0.25);
}

.live-table-header {
    background: linear-gradient(135deg, var(--tone-violet), var(--tone-violet-deep));
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.live-table-header span {
    font-size: 2.5rem;
}

.live-table-header h3 {
    font-size: 1.4rem;
    color: var(--tone-text-main);
}

.live-table-body {
    padding: 2rem;
}

.live-table-body p {
    color: var(--tone-text-soft);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.live-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.live-stat {
    background: rgba(196, 255, 0, 0.08);
    padding: 1rem;
    border-radius: var(--curve-small);
    text-align: center;
}

.live-stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: var(--weight-bold);
    color: var(--tone-lime);
}

.live-stat-label {
    font-size: 0.8rem;
    color: var(--tone-text-dim);
    text-transform: uppercase;
}

/* Mobile Gaming */
.mobile-gaming-segment {
    background: var(--tone-dark-base);
}

.mobile-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mobile-feature {
    background: var(--tone-dark-card);
    padding: 2rem;
    border-radius: var(--curve-large);
    text-align: center;
    border: 2px solid rgba(196, 255, 0, 0.12);
    transition: var(--motion-smooth);
}

.mobile-feature:hover {
    border-color: var(--tone-cyan);
    box-shadow: 0 12px 35px rgba(0, 217, 255, 0.25);
}

.mobile-feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mobile-feature h4 {
    color: var(--tone-lime);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.mobile-feature p {
    color: var(--tone-text-soft);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* VIP Programme */
.vip-programme-segment {
    background: linear-gradient(180deg, rgba(157, 46, 255, 0.1), var(--tone-dark-base));
}

.vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.vip-tier {
    background: var(--tone-dark-card);
    padding: 2rem;
    border-radius: var(--curve-large);
    text-align: center;
    border: 2px solid rgba(196, 255, 0, 0.1);
    transition: var(--motion-smooth);
    position: relative;
}

.vip-tier:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(157, 46, 255, 0.3);
}

.vip-tier.featured {
    border-color: var(--tone-lime);
    transform: scale(1.05);
}

.vip-tier.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tone-lime);
    color: var(--tone-dark-base);
    padding: 0.3rem 1rem;
    border-radius: var(--curve-pill);
    font-size: 0.7rem;
    font-weight: var(--weight-bold);
}

.vip-tier-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vip-tier h3 {
    font-size: 1.4rem;
    color: var(--tone-text-main);
    margin-bottom: 0.5rem;
}

.vip-tier-bonus {
    font-size: 1.8rem;
    font-weight: var(--weight-black);
    color: var(--tone-lime);
    margin-bottom: 1rem;
}

.vip-tier-perks {
    list-style: none;
    text-align: left;
}

.vip-tier-perks li {
    padding: 0.5rem 0;
    color: var(--tone-text-soft);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vip-tier-perks li::before {
    content: '✓';
    color: var(--tone-success);
    font-weight: bold;
}