/* ========== FOUNDATION & RESET ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Enhanced Color Palette */
    --accent-lime: #c4ff00;
    --accent-lime-bright: #e0ff33;
    --accent-violet: #9d2eff;
    --accent-violet-deep: #6a0dad;
    --accent-magenta: #ff00ff;
    --surface-black: #000000;
    --surface-dark: #0a0a0a;
    --surface-mid: #1a1a1a;
    --surface-card: #151515;
    --text-white: #ffffff;
    --text-gray: #b8b8b8;
    --text-dim: #666666;
    --status-success: #00ff41;
    --status-warning: #ffaa00;
    --neon-cyan: #00d9ff;
    --neon-fire: #ff5e00;
    
    /* Typography System */
    --font-stack: 'Poppins', sans-serif;
    --weight-thin: 300;
    --weight-normal: 400;
    --weight-mid: 500;
    --weight-semi: 600;
    --weight-heavy: 700;
    --weight-extra: 800;
    --weight-max: 900;
    
    /* Spacing Scale */
    --gap-xs: 0.5rem;
    --gap-sm: 1rem;
    --gap-md: 1.5rem;
    --gap-lg: 2rem;
    --gap-xl: 3rem;
    --gap-2xl: 4.5rem;
    
    /* Border Radius */
    --curve-sm: 10px;
    --curve-md: 15px;
    --curve-lg: 20px;
    --curve-xl: 25px;
    --curve-pill: 100px;
    
    /* Motion */
    --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(--font-stack);
    background: var(--surface-black);
    color: var(--text-white);
    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;
}

/* ========== LAYOUT UTILITIES ========== */
.wrapper-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

.highlight-violet {
    color: var(--accent-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(--accent-lime);
    box-shadow: 0 5px 35px rgba(196, 255, 0, 0.2);
}

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

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

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

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

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

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

.menu-anchor:hover {
    color: var(--accent-lime);
}

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

.cta-masthead {
    background: linear-gradient(135deg, var(--accent-lime), var(--status-success));
    color: var(--surface-black);
    padding: 0.9rem 2.5rem;
    border-radius: var(--curve-pill);
    font-weight: var(--weight-heavy);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--motion-smooth);
    box-shadow: 0 5px 30px rgba(196, 255, 0, 0.45);
}

.cta-masthead:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 40px rgba(196, 255, 0, 0.65);
}

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

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

/* ========== BANNER SHOWCASE ========== */
.banner-showcase {
    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(--surface-black);
}

.banner-showcase::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;
}

.banner-showcase::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; }
}

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

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

.banner-text p {
    font-size: 1.35rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.85;
}

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

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

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

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

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

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

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

.metric-number {
    font-size: 3rem;
    font-weight: var(--weight-max);
    color: var(--accent-lime);
    display: block;
    text-shadow: 0 0 30px rgba(196, 255, 0, 0.65);
}

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

.banner-visual {
    position: relative;
}

.visual-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-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    border: 3px solid rgba(196, 255, 0, 0.35);
    box-shadow: 0 20px 70px rgba(157, 46, 255, 0.45);
    animation: hover-float 6s ease-in-out infinite;
    overflow: hidden;
}

@keyframes hover-float {
    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-max);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 35px rgba(196, 255, 0, 0.35);
}

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

/* ========== BENEFITS AREA ========== */
.benefits-area {
    background: linear-gradient(180deg, var(--surface-black) 0%, var(--surface-dark) 100%);
}

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

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

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

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

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

.benefit-tile h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--accent-lime);
    font-weight: var(--weight-heavy);
}

.benefit-tile p {
    color: var(--text-gray);
    line-height: 1.95;
}

/* ========== REWARDS ZONE ========== */
.rewards-zone {
    background: radial-gradient(ellipse at center, rgba(157, 46, 255, 0.12), transparent 70%),
                var(--surface-black);
}

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

.reward-tile {
    background: var(--surface-card);
    padding: 2.5rem;
    border-radius: var(--curve-lg);
    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(--accent-lime), var(--accent-violet));
}

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

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

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

.reward-amount {
    font-size: 1.4rem;
    color: var(--text-gray);
    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(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

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

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

.reward-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(157, 46, 255, 0.65);
}

/* ========== GAMING HUB ========== */
.gaming-hub {
    background: var(--surface-dark);
}

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

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

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

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

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

.category-count {
    color: var(--accent-lime);
    font-size: 1.1rem;
    font-weight: var(--weight-semi);
}

.category-desc {
    color: var(--text-gray);
    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-xl);
}

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

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

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

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

/* ========== DETAILED GAMING ========== */
.detailed-gaming {
    background: var(--surface-black);
}

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

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

.content-segment {
    margin-bottom: 3.5rem;
}

.content-segment h3 {
    font-size: 2rem;
    margin-bottom: 1.8rem;
    color: var(--accent-lime);
    font-weight: var(--weight-heavy);
}

.content-segment p {
    font-size: 1.15rem;
    line-height: 2.1;
    color: var(--text-gray);
    margin-bottom: 1.8rem;
}

/* ========== ABOUT PLATFORM ========== */
.about-platform {
    background: linear-gradient(180deg, var(--surface-dark) 0%, var(--surface-black) 100%);
}

/* ========== PAYMENTS AREA ========== */
.payments-area {
    background: var(--surface-black);
}

.payments-container {
    background: var(--surface-card);
    padding: 3rem;
    border-radius: var(--curve-lg);
    border: 2px solid rgba(196, 255, 0, 0.22);
    margin-bottom: 3rem;
}

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

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

.method-card {
    background: var(--surface-dark);
    padding: 2rem;
    border-radius: var(--curve-md);
    border: 2px solid rgba(196, 255, 0, 0.18);
}

.method-card.recommended {
    border-color: var(--status-success);
}

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

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

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

.method-badge {
    font-size: 0.75rem;
    background: rgba(0, 255, 65, 0.22);
    padding: 0.3rem 0.7rem;
    border-radius: 5px;
    font-weight: var(--weight-heavy);
}

.method-badge.popular {
    color: var(--status-success);
}

.method-badge.recommended {
    color: var(--status-success);
}

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

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

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

.detail-row .free,
.detail-row .fast {
    color: var(--status-success);
}

.payment-info {
    background: rgba(196, 255, 0, 0.06);
    padding: 2rem;
    border-radius: var(--curve-md);
    border-left: 5px solid var(--accent-lime);
}

.payment-info h4 {
    color: var(--accent-lime);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.payment-info ul {
    list-style: none;
    color: var(--text-gray);
    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-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.step-card {
    background: var(--surface-card);
    padding: 3rem 2rem;
    border-radius: var(--curve-lg);
    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(--accent-lime);
    color: var(--surface-black);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--weight-max);
    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(--accent-lime);
    font-weight: var(--weight-heavy);
}

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

.step-cta {
    display: inline-block;
    background: var(--accent-violet);
    color: var(--text-white);
    padding: 0.9rem 2.5rem;
    border-radius: var(--curve-pill);
    font-weight: var(--weight-heavy);
    transition: var(--motion-smooth);
}

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

/* ========== RESPONSIBLE GAMING ========== */
.responsible-gaming {
    background: var(--surface-dark);
}

/* ========== QUESTIONS PANEL ========== */
.questions-panel {
    background: var(--surface-black);
}

.faq-container {
    max-width: 950px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface-card);
    margin-bottom: 1.5rem;
    border-radius: var(--curve-md);
    overflow: hidden;
    border: 2px solid rgba(196, 255, 0, 0.18);
}

.faq-trigger {
    width: 100%;
    padding: 1.8rem;
    background: transparent;
    color: var(--text-white);
    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);
}

.faq-trigger:hover {
    color: var(--accent-lime);
}

.faq-indicator {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.faq-item.expanded .faq-indicator {
    transform: rotate(45deg);
}

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

.faq-item.expanded .faq-answer {
    max-height: 600px;
}

.faq-text {
    padding: 0 1.8rem 1.8rem;
    color: var(--text-gray);
    line-height: 1.95;
}

/* ========== FINALE ACTION ========== */
.finale-action {
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-violet-deep));
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.finale-action::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 25s linear infinite;
}

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

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

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

.finale-cta {
    background: var(--accent-lime);
    color: var(--surface-black);
    padding: 1.5rem 4rem;
    font-size: 1.4rem;
    font-weight: var(--weight-heavy);
    border-radius: var(--curve-pill);
    text-transform: uppercase;
    transition: var(--motion-smooth);
    display: inline-block;
    position: relative;
    z-index: 1;
    box-shadow: 0 12px 45px rgba(196, 255, 0, 0.55);
}

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

/* ========== SITE FOOTER ========== */
.site-footer {
    background: var(--surface-black);
    border-top: 3px solid var(--accent-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-col h4 {
    color: var(--accent-lime);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: var(--weight-heavy);
}

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

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

.footer-menu a {
    color: var(--text-gray);
    transition: var(--motion-quick);
    font-weight: var(--weight-mid);
}

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

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

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

.age-notice {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--surface-card);
    border-radius: var(--curve-md);
    text-align: center;
    border: 2px solid var(--status-warning);
}

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

.age-notice p {
    color: var(--text-gray);
    line-height: 1.8;
}

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

@media (max-width: 768px) {
    .navigation-panel {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .navigation-panel.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        padding: 2rem;
        border-bottom: 2px solid var(--accent-lime);
    }
    
    .navigation-panel.active .menu-items {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .banner-text h1 {
        font-size: 2.5rem;
    }
    
    .banner-metrics {
        flex-direction: column;
        gap: 2rem;
    }
    
    .segment-heading h2 {
        font-size: 2.5rem;
    }
    
    .wrapper-main {
        padding: 0 1.5rem;
    }
    
    .content-block > h2 {
        font-size: 2rem;
    }
    
    .content-segment h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .banner-text h1 {
        font-size: 2rem;
    }
    
    .segment-heading h2 {
        font-size: 2rem;
    }
    
    .action-primary,
    .action-outline {
        width: 100%;
        text-align: center;
    }
}
.tournament-zone {
    background: linear-gradient(135deg, rgba(157, 46, 255, 0.08), rgba(196, 255, 0, 0.05));
    padding: 4.5rem 0;
}

.tournament-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tournament-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.tournament-heading h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 30px rgba(196, 255, 0, 0.3);
}

.tournament-heading p {
    font-size: 1.2rem;
    color: #b8b8b8;
    max-width: 800px;
    margin: 0 auto;
}

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

.tournament-card {
    background: #151515;
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(196, 255, 0, 0.15);
    transition: all 0.35s ease;
}

.tournament-card:hover {
    transform: translateY(-8px);
    border-color: #c4ff00;
    box-shadow: 0 15px 45px rgba(196, 255, 0, 0.25);
}

.tournament-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.tournament-card h3 {
    font-size: 1.5rem;
    color: #c4ff00;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tournament-card p {
    color: #b8b8b8;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.tournament-prize {
    background: rgba(196, 255, 0, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.tournament-prize span {
    color: #c4ff00;
    font-size: 1.4rem;
    font-weight: 700;
}

/* ========== MOBILE APP SECTION ========== */
.mobile-experience {
    background: #0a0a0a;
    padding: 4.5rem 0;
}

.mobile-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mobile-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mobile-content h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(196, 255, 0, 0.3);
}

.mobile-content p {
    font-size: 1.15rem;
    color: #b8b8b8;
    line-height: 2;
    margin-bottom: 1.5rem;
}

.mobile-features {
    list-style: none;
    margin: 2rem 0;
}

.mobile-features li {
    padding: 0.8rem 0;
    color: #b8b8b8;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.mobile-features li::before {
    content: '📱';
    font-size: 1.3rem;
}

.mobile-visual {
    background: linear-gradient(135deg, rgba(157, 46, 255, 0.2), rgba(196, 255, 0, 0.15));
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    border: 2px solid rgba(196, 255, 0, 0.2);
}

.mobile-visual .device-icon {
    font-size: 8rem;
    margin-bottom: 1.5rem;
}

.mobile-visual p {
    color: #c4ff00;
    font-weight: 600;
    font-size: 1.2rem;
}

/* ========== SECURITY SECTION ========== */
.security-fortress {
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    padding: 4.5rem 0;
}

.security-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.security-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.security-heading h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
}

.security-heading p {
    font-size: 1.2rem;
    color: #b8b8b8;
    max-width: 850px;
    margin: 0 auto;
}

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

.security-item {
    background: #151515;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(157, 46, 255, 0.2);
    transition: all 0.35s ease;
}

.security-item:hover {
    border-color: #9d2eff;
    box-shadow: 0 10px 35px rgba(157, 46, 255, 0.3);
}

.security-item h4 {
    color: #9d2eff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.security-item p {
    color: #b8b8b8;
    line-height: 1.85;
}

/* ========== COMMUNITY SECTION ========== */
.community-hub {
    background: radial-gradient(ellipse at center, rgba(196, 255, 0, 0.06), transparent 70%), #000;
    padding: 4.5rem 0;
}

.community-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.community-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.community-heading h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
}

.community-heading p {
    font-size: 1.2rem;
    color: #b8b8b8;
    max-width: 800px;
    margin: 0 auto;
}

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

.community-stat {
    background: #151515;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(196, 255, 0, 0.15);
}

.community-stat .stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: #c4ff00;
    display: block;
    text-shadow: 0 0 20px rgba(196, 255, 0, 0.5);
}

.community-stat .stat-txt {
    color: #b8b8b8;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.community-content {
    background: #151515;
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(196, 255, 0, 0.15);
}

.community-content h3 {
    color: #c4ff00;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.community-content p {
    color: #b8b8b8;
    line-height: 2;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* ========== WINNING STRATEGIES SECTION ========== */
.strategies-academy {
    background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
    padding: 4.5rem 0;
}

.strategies-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.strategies-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.strategies-heading h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
}

.strategies-heading p {
    font-size: 1.2rem;
    color: #b8b8b8;
    max-width: 850px;
    margin: 0 auto;
}

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

.strategy-block {
    background: #151515;
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 2px solid rgba(196, 255, 0, 0.12);
    transition: all 0.35s ease;
}

.strategy-block:hover {
    border-color: #c4ff00;
    box-shadow: 0 10px 40px rgba(196, 255, 0, 0.2);
}

.strategy-block h3 {
    color: #c4ff00;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.strategy-block p {
    color: #b8b8b8;
    line-height: 2;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.strategy-tips {
    background: rgba(157, 46, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.strategy-tips h4 {
    color: #9d2eff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.strategy-tips ul {
    list-style: none;
}

.strategy-tips li {
    color: #b8b8b8;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.strategy-tips li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #c4ff00;
}

.highlight-lime {
    color: #c4ff00;
    font-weight: 700;
    text-shadow: 0 0 25px rgba(196, 255, 0, 0.7);
}

.highlight-violet {
    color: #9d2eff;
    text-shadow: 0 0 25px rgba(157, 46, 255, 0.7);
}

@media (max-width: 768px) {
    .mobile-layout {
        grid-template-columns: 1fr;
    }
    
    .tournament-heading h2,
    .mobile-content h2,
    .security-heading h2,
    .community-heading h2,
    .strategies-heading h2 {
        font-size: 2rem;
    }
}