/**
 * VIP Casino PH - Main Stylesheet
 * All classes use v3e0- prefix for namespace isolation
 * Color palette: #20B2AA (primary), #1C2833 (bg), #778899 (text), #006400 (highlight), #4A4A4A (muted)
 */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    /* Color palette */
    --v3e0-primary: #20B2AA;
    --v3e0-bg: #1C2833;
    --v3e0-bg-light: #2C3E50;
    --v3e0-text: #778899;
    --v3e0-text-light: #B0C4DE;
    --v3e0-highlight: #006400;
    --v3e0-muted: #4A4A4A;
    --v3e0-white: #FFFFFF;
    --v3e0-black: #000000;
    --v3e0-success: #28A745;
    --v3e0-warning: #FFC107;
    --v3e0-danger: #DC3545;

    /* Typography */
    --v3e0-font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --v3e0-font-size-xs: 0.625rem;
    --v3e0-font-size-sm: 0.75rem;
    --v3e0-font-size-base: 0.875rem;
    --v3e0-font-size-lg: 1rem;
    --v3e0-font-size-xl: 1.125rem;
    --v3e0-font-size-2xl: 1.25rem;
    --v3e0-font-size-3xl: 1.5rem;
    --v3e0-font-size-4xl: 2rem;

    /* Spacing */
    --v3e0-space-xs: 0.25rem;
    --v3e0-space-sm: 0.5rem;
    --v3e0-space-md: 0.75rem;
    --v3e0-space-lg: 1rem;
    --v3e0-space-xl: 1.25rem;
    --v3e0-space-2xl: 1.5rem;
    --v3e0-space-3xl: 2rem;

    /* Borders */
    --v3e0-radius-sm: 4px;
    --v3e0-radius-md: 8px;
    --v3e0-radius-lg: 12px;
    --v3e0-radius-xl: 16px;
    --v3e0-radius-full: 9999px;

    /* Shadows */
    --v3e0-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --v3e0-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --v3e0-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.4);
    --v3e0-shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.5);

    /* Transitions */
    --v3e0-transition-fast: 150ms ease;
    --v3e0-transition-base: 250ms ease;
    --v3e0-transition-slow: 350ms ease;

    /* Z-index layers */
    --v3e0-z-dropdown: 100;
    --v3e0-z-sticky: 200;
    --v3e0-z-modal: 1000;
    --v3e0-z-tooltip: 1500;
    --v3e0-z-mobile-menu: 9999;
}

/* ============================================
   Reset and Base Styles
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--v3e0-font-primary);
    font-size: var(--v3e0-font-size-base);
    line-height: 1.5;
    color: var(--v3e0-text-light);
    background-color: var(--v3e0-bg);
    min-height: 100vh;
    overflow-x: hidden;
}

.v3e0-is-mobile body {
    padding-bottom: 75px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--v3e0-primary);
    text-decoration: none;
    transition: color var(--v3e0-transition-fast);
}

a:hover {
    color: var(--v3e0-highlight);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ============================================
   Layout Classes
   ============================================ */
.v3e0-container {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 var(--v3e0-space-md);
}

.v3e0-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.v3e0-main {
    flex: 1;
    padding-bottom: var(--v3e0-space-3xl);
}

.v3e0-section {
    padding: var(--v3e0-space-2xl) 0;
}

.v3e0-grid {
    display: grid;
    gap: var(--v3e0-space-md);
}

.v3e0-flex {
    display: flex;
}

.v3e0-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.v3e0-flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.v3e0-flex-wrap {
    flex-wrap: wrap;
}

/* ============================================
   Typography
   ============================================ */
.v3e0-text-center {
    text-align: center;
}

.v3e0-text-left {
    text-align: left;
}

.v3e0-text-right {
    text-align: right;
}

.v3e0-title-h1 {
    font-size: var(--v3e0-font-size-3xl);
    font-weight: 700;
    color: var(--v3e0-white);
    line-height: 1.2;
    margin-bottom: var(--v3e0-space-lg);
}

.v3e0-title-h2 {
    font-size: var(--v3e0-font-size-2xl);
    font-weight: 600;
    color: var(--v3e0-white);
    line-height: 1.3;
    margin-bottom: var(--v3e0-space-md);
}

.v3e0-title-h3 {
    font-size: var(--v3e0-font-size-xl);
    font-weight: 600;
    color: var(--v3e0-white);
    line-height: 1.4;
    margin-bottom: var(--v3e0-space-sm);
}

.v3e0-text-primary {
    color: var(--v3e0-primary);
}

.v3e0-text-muted {
    color: var(--v3e0-muted);
}

.v3e0-text-small {
    font-size: var(--v3e0-font-size-sm);
}

.v3e0-text-large {
    font-size: var(--v3e0-font-size-lg);
}

/* ============================================
   Header & Navigation
   ============================================ */
.v3e0-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--v3e0-z-sticky);
    background: linear-gradient(135deg, var(--v3e0-bg) 0%, var(--v3e0-bg-light) 100%);
    border-bottom: 1px solid rgba(32, 178, 170, 0.2);
    box-shadow: var(--v3e0-shadow-md);
}

.v3e0-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--v3e0-space-sm) var(--v3e0-space-md);
    min-height: 56px;
}

.v3e0-logo {
    display: flex;
    align-items: center;
    gap: var(--v3e0-space-sm);
}

.v3e0-logo-icon {
    width: 32px;
    height: 32px;
}

.v3e0-logo-text {
    font-size: var(--v3e0-font-size-lg);
    font-weight: 700;
    color: var(--v3e0-white);
    letter-spacing: -0.5px;
}

.v3e0-header-actions {
    display: flex;
    align-items: center;
    gap: var(--v3e0-space-sm);
}

.v3e0-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--v3e0-radius-md);
    background: var(--v3e0-primary);
    color: var(--v3e0-white);
    font-size: 18px;
    transition: all var(--v3e0-transition-fast);
}

.v3e0-nav-toggle:hover {
    background: var(--v3e0-highlight);
    transform: scale(1.05);
}

/* Mobile Menu Overlay */
.v3e0-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: var(--v3e0-z-mobile-menu) - 1;
    opacity: 0;
    visibility: hidden;
    transition: all var(--v3e0-transition-base);
}

.v3e0-overlay-active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Full-Screen Menu */
.v3e0-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: var(--v3e0-bg);
    z-index: var(--v3e0-z-mobile-menu);
    transform: translateX(100%);
    transition: transform var(--v3e0-transition-base);
    overflow-y: auto;
    box-shadow: var(--v3e0-shadow-xl);
}

.v3e0-menu-active {
    transform: translateX(0);
}

.v3e0-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--v3e0-space-md);
    border-bottom: 1px solid rgba(32, 178, 170, 0.2);
}

.v3e0-menu-close {
    width: 36px;
    height: 36px;
    border-radius: var(--v3e0-radius-full);
    background: var(--v3e0-muted);
    color: var(--v3e0-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.v3e0-menu-nav {
    padding: var(--v3e0-space-md);
}

.v3e0-nav-item {
    margin-bottom: var(--v3e0-space-xs);
}

.v3e0-nav-link {
    display: flex;
    align-items: center;
    gap: var(--v3e0-space-md);
    padding: var(--v3e0-space-md);
    border-radius: var(--v3e0-radius-md);
    color: var(--v3e0-text-light);
    font-size: var(--v3e0-font-size-base);
    font-weight: 500;
    transition: all var(--v3e0-transition-fast);
}

.v3e0-nav-link:hover,
.v3e0-nav-link.v3e0-active {
    background: rgba(32, 178, 170, 0.15);
    color: var(--v3e0-primary);
}

.v3e0-nav-link i {
    width: 20px;
    text-align: center;
    font-size: 18px;
}

/* Desktop Navigation */
.v3e0-desktop-nav {
    display: none;
}

@media (min-width: 769px) {
    .v3e0-mobile-menu-btn {
        display: none;
    }

    .v3e0-desktop-nav {
        display: flex;
        align-items: center;
        gap: var(--v3e0-space-lg);
    }

    .v3e0-desktop-link {
        color: var(--v3e0-text-light);
        font-size: var(--v3e0-font-size-base);
        font-weight: 500;
        padding: var(--v3e0-space-sm) var(--v3e0-space-md);
        border-radius: var(--v3e0-radius-md);
        transition: all var(--v3e0-transition-fast);
    }

    .v3e0-desktop-link:hover {
        color: var(--v3e0-primary);
        background: rgba(32, 178, 170, 0.1);
    }
}

/* ============================================
   Buttons
   ============================================ */
.v3e0-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--v3e0-space-sm);
    padding: var(--v3e0-space-sm) var(--v3e0-space-lg);
    font-size: var(--v3e0-font-size-base);
    font-weight: 600;
    border-radius: var(--v3e0-radius-md);
    transition: all var(--v3e0-transition-fast);
    cursor: pointer;
    min-height: 44px;
    white-space: nowrap;
}

.v3e0-btn-primary {
    background: linear-gradient(135deg, var(--v3e0-primary) 0%, #16A09A 100%);
    color: var(--v3e0-white);
    box-shadow: 0 2px 4px rgba(32, 178, 170, 0.3);
}

.v3e0-btn-primary:hover {
    background: linear-gradient(135deg, var(--v3e0-highlight) 0%, #005500 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 100, 0, 0.3);
}

.v3e0-btn-secondary {
    background: var(--v3e0-bg-light);
    color: var(--v3e0-white);
    border: 1px solid rgba(32, 178, 170, 0.3);
}

.v3e0-btn-secondary:hover {
    background: rgba(32, 178, 170, 0.2);
    border-color: var(--v3e0-primary);
}

.v3e0-btn-accent {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--v3e0-black);
}

.v3e0-btn-accent:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    transform: translateY(-1px);
}

.v3e0-btn-large {
    padding: var(--v3e0-space-md) var(--v3e0-space-xl);
    font-size: var(--v3e0-font-size-lg);
    min-height: 52px;
}

.v3e0-btn-small {
    padding: var(--v3e0-space-xs) var(--v3e0-space-md);
    font-size: var(--v3e0-font-size-sm);
    min-height: 36px;
}

.v3e0-btn-block {
    width: 100%;
}

.v3e0-btn i {
    font-size: 1.1em;
}

/* ============================================
   Hero Section
   ============================================ */
.v3e0-hero {
    padding-top: 70px;
    padding-bottom: var(--v3e0-space-xl);
}

.v3e0-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--v3e0-radius-lg);
    box-shadow: var(--v3e0-shadow-lg);
    margin-bottom: var(--v3e0-space-xl);
}

.v3e0-carousel-inner {
    display: flex;
    transition: transform var(--v3e0-transition-slow);
}

.v3e0-carousel-item {
    min-width: 100%;
    aspect-ratio: 16/9;
    background: var(--v3e0-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.v3e0-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v3e0-carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--v3e0-space-sm);
    margin-top: var(--v3e0-space-md);
}

.v3e0-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--v3e0-radius-full);
    background: var(--v3e0-muted);
    cursor: pointer;
    transition: all var(--v3e0-transition-fast);
}

.v3e0-carousel-dot.v3e0-active {
    background: var(--v3e0-primary);
    width: 24px;
}

/* ============================================
   Game Cards & Grid
   ============================================ */
.v3e0-game-section {
    margin-bottom: var(--v3e0-space-2xl);
}

.v3e0-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--v3e0-space-md);
    padding-bottom: var(--v3e0-space-sm);
    border-bottom: 2px solid var(--v3e0-primary);
}

.v3e0-section-title {
    font-size: var(--v3e0-font-size-xl);
    font-weight: 700;
    color: var(--v3e0-white);
    display: flex;
    align-items: center;
    gap: var(--v3e0-space-sm);
}

.v3e0-section-title i {
    color: var(--v3e0-primary);
}

.v3e0-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--v3e0-space-sm);
}

.v3e0-game-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--v3e0-space-sm);
    background: var(--v3e0-bg-light);
    border-radius: var(--v3e0-radius-md);
    transition: all var(--v3e0-transition-fast);
    cursor: pointer;
}

.v3e0-game-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--v3e0-shadow-md);
}

.v3e0-game-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--v3e0-radius-sm);
    margin-bottom: var(--v3e0-space-xs);
}

.v3e0-game-name {
    font-size: var(--v3e0-font-size-xs);
    color: var(--v3e0-text-light);
    text-align: center;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ============================================
   Feature Cards
   ============================================ */
.v3e0-feature-card {
    background: linear-gradient(145deg, var(--v3e0-bg-light) 0%, var(--v3e0-bg) 100%);
    border-radius: var(--v3e0-radius-lg);
    padding: var(--v3e0-space-lg);
    border: 1px solid rgba(32, 178, 170, 0.15);
    transition: all var(--v3e0-transition-base);
}

.v3e0-feature-card:hover {
    border-color: var(--v3e0-primary);
    transform: translateY(-2px);
    box-shadow: var(--v3e0-shadow-lg);
}

.v3e0-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--v3e0-radius-md);
    background: rgba(32, 178, 170, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--v3e0-space-md);
}

.v3e0-feature-icon i {
    font-size: 24px;
    color: var(--v3e0-primary);
}

.v3e0-feature-title {
    font-size: var(--v3e0-font-size-lg);
    font-weight: 600;
    color: var(--v3e0-white);
    margin-bottom: var(--v3e0-space-sm);
}

.v3e0-feature-text {
    font-size: var(--v3e0-font-size-sm);
    color: var(--v3e0-text);
    line-height: 1.5;
}

/* ============================================
   Stats Component
   ============================================ */
.v3e0-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--v3e0-space-md);
    padding: var(--v3e0-space-lg);
    background: var(--v3e0-bg-light);
    border-radius: var(--v3e0-radius-lg);
}

.v3e0-stat-item {
    text-align: center;
}

.v3e0-stat-value {
    font-size: var(--v3e0-font-size-2xl);
    font-weight: 700;
    color: var(--v3e0-primary);
    margin-bottom: var(--v3e0-space-xs);
}

.v3e0-stat-label {
    font-size: var(--v3e0-font-size-xs);
    color: var(--v3e0-text);
}

/* ============================================
   Bottom Navigation
   ============================================ */
.v3e0-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--v3e0-z-sticky);
    background: linear-gradient(180deg, var(--v3e0-bg) 0%, var(--v3e0-bg-light) 100%);
    border-top: 1px solid rgba(32, 178, 170, 0.2);
    padding: var(--v3e0-space-sm) var(--v3e0-space-md) calc(var(--v3e0-space-sm) + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

.v3e0-bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.v3e0-bottom-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 60px;
    min-height: 56px;
    padding: var(--v3e0-space-xs);
    border-radius: var(--v3e0-radius-md);
    color: var(--v3e0-text);
    transition: all var(--v3e0-transition-fast);
    cursor: pointer;
}

.v3e0-bottom-btn:hover,
.v3e0-bottom-btn.v3e0-active {
    color: var(--v3e0-primary);
    background: rgba(32, 178, 170, 0.1);
}

.v3e0-bottom-btn i {
    font-size: 20px;
}

.v3e0-bottom-btn span {
    font-size: 10px;
    font-weight: 500;
}

.v3e0-bottom-btn i.fas,
.v3e0-bottom-btn i.fab,
.v3e0-bottom-btn i.far {
    font-size: 22px;
}

@media (min-width: 769px) {
    .v3e0-bottom-nav {
        display: none;
    }
}

/* ============================================
   Footer
   ============================================ */
.v3e0-footer {
    background: var(--v3e0-bg-light);
    padding: var(--v3e0-space-2xl) 0 var(--v3e0-space-3xl);
    border-top: 1px solid rgba(32, 178, 170, 0.2);
}

.v3e0-footer-content {
    display: grid;
    gap: var(--v3e0-space-lg);
    margin-bottom: var(--v3e0-space-xl);
}

.v3e0-footer-section h4 {
    font-size: var(--v3e0-font-size-base);
    font-weight: 600;
    color: var(--v3e0-white);
    margin-bottom: var(--v3e0-space-md);
}

.v3e0-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--v3e0-space-sm) var(--v3e0-space-md);
}

.v3e0-footer-link {
    color: var(--v3e0-text);
    font-size: var(--v3e0-font-size-sm);
    transition: color var(--v3e0-transition-fast);
}

.v3e0-footer-link:hover {
    color: var(--v3e0-primary);
}

.v3e0-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--v3e0-space-sm);
    padding: var(--v3e0-space-lg) 0;
    border-top: 1px solid rgba(32, 178, 170, 0.1);
    border-bottom: 1px solid rgba(32, 178, 170, 0.1);
}

.v3e0-partner-logo {
    width: 40px;
    height: 40px;
    border-radius: var(--v3e0-radius-sm);
    background: var(--v3e0-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity var(--v3e0-transition-fast);
}

.v3e0-partner-logo:hover {
    opacity: 1;
}

.v3e0-partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.v3e0-copyright {
    text-align: center;
    padding: var(--v3e0-space-lg) 0;
    font-size: var(--v3e0-font-size-xs);
    color: var(--v3e0-muted);
}

/* ============================================
   Modal Styles
   ============================================ */
.v3e0-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: var(--v3e0-z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--v3e0-space-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--v3e0-transition-base);
}

.v3e0-modal-visible {
    opacity: 1;
    visibility: visible;
}

.v3e0-modal {
    background: var(--v3e0-bg);
    border-radius: var(--v3e0-radius-lg);
    max-width: 380px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--v3e0-shadow-xl);
    transform: scale(0.9);
    transition: transform var(--v3e0-transition-base);
}

.v3e0-modal-visible .v3e0-modal {
    transform: scale(1);
}

.v3e0-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--v3e0-space-md);
    border-bottom: 1px solid rgba(32, 178, 170, 0.2);
}

.v3e0-modal-title {
    font-size: var(--v3e0-font-size-lg);
    font-weight: 600;
    color: var(--v3e0-white);
}

.v3e0-modal-close {
    width: 32px;
    height: 32px;
    border-radius: var(--v3e0-radius-full);
    background: var(--v3e0-muted);
    color: var(--v3e0-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.v3e0-modal-body {
    padding: var(--v3e0-space-lg);
}

.v3e0-modal-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--v3e0-radius-md);
    margin-bottom: var(--v3e0-space-md);
}

.v3e0-modal-description {
    color: var(--v3e0-text);
    margin-bottom: var(--v3e0-space-lg);
    text-align: center;
}

/* ============================================
   FAQ Component
   ============================================ */
.v3e0-faq-item {
    background: var(--v3e0-bg-light);
    border-radius: var(--v3e0-radius-md);
    margin-bottom: var(--v3e0-space-sm);
    overflow: hidden;
}

.v3e0-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--v3e0-space-md);
    font-size: var(--v3e0-font-size-base);
    font-weight: 600;
    color: var(--v3e0-white);
    cursor: pointer;
    transition: background var(--v3e0-transition-fast);
}

.v3e0-faq-question:hover {
    background: rgba(32, 178, 170, 0.1);
}

.v3e0-faq-answer {
    padding: 0 var(--v3e0-space-md) var(--v3e0-space-md);
    color: var(--v3e0-text);
    font-size: var(--v3e0-font-size-sm);
    line-height: 1.6;
    display: none;
}

.v3e0-faq-item.v3e0-open .v3e0-faq-answer {
    display: block;
}

.v3e0-faq-toggle {
    transition: transform var(--v3e0-transition-fast);
}

.v3e0-faq-item.v3e0-open .v3e0-faq-toggle {
    transform: rotate(180deg);
}

/* ============================================
   Promotional Banner
   ============================================ */
.v3e0-promo-banner {
    background: linear-gradient(135deg, var(--v3e0-primary) 0%, var(--v3e0-highlight) 100%);
    border-radius: var(--v3e0-radius-lg);
    padding: var(--v3e0-space-xl);
    text-align: center;
    margin-bottom: var(--v3e0-space-xl);
    position: relative;
    overflow: hidden;
}

.v3e0-promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: v3e0-promo-shine 3s infinite linear;
}

@keyframes v3e0-promo-shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.v3e0-promo-title {
    font-size: var(--v3e0-font-size-2xl);
    font-weight: 700;
    color: var(--v3e0-white);
    margin-bottom: var(--v3e0-space-sm);
    position: relative;
}

.v3e0-promo-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--v3e0-space-lg);
    position: relative;
}

/* ============================================
   Content Section
   ============================================ */
.v3e0-content {
    padding: var(--v3e0-space-xl) 0;
}

.v3e0-content h2 {
    font-size: var(--v3e0-font-size-xl);
    font-weight: 600;
    color: var(--v3e0-white);
    margin: var(--v3e0-space-xl) 0 var(--v3e0-space-md);
}

.v3e0-content h3 {
    font-size: var(--v3e0-font-size-lg);
    font-weight: 600;
    color: var(--v3e0-white);
    margin: var(--v3e0-space-lg) 0 var(--v3e0-space-sm);
}

.v3e0-content p {
    color: var(--v3e0-text);
    margin-bottom: var(--v3e0-space-md);
    line-height: 1.7;
}

.v3e0-content ul,
.v3e0-content ol {
    margin-bottom: var(--v3e0-space-md);
    padding-left: var(--v3e0-space-lg);
}

.v3e0-content li {
    color: var(--v3e0-text);
    margin-bottom: var(--v3e0-space-sm);
    list-style: disc;
}

.v3e0-content a {
    color: var(--v3e0-primary);
    text-decoration: underline;
}

/* ============================================
   Animation Classes
   ============================================ */
.v3e0-fade-in {
    animation: v3e0-fadeIn var(--v3e0-transition-base) forwards;
}

@keyframes v3e0-fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.v3e0-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--v3e0-transition-base);
}

.v3e0-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.v3e0-pulse {
    animation: v3e0-pulse 2s infinite;
}

@keyframes v3e0-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============================================
   Utility Classes
   ============================================ */
.v3e0-hidden {
    display: none !important;
}

.v3e0-visible {
    display: block !important;
}

.v3e0-mb-0 {
    margin-bottom: 0 !important;
}

.v3e0-mb-sm {
    margin-bottom: var(--v3e0-space-sm) !important;
}

.v3e0-mb-md {
    margin-bottom: var(--v3e0-space-md) !important;
}

.v3e0-mb-lg {
    margin-bottom: var(--v3e0-space-lg) !important;
}

.v3e0-mb-xl {
    margin-bottom: var(--v3e0-space-xl) !important;
}

.v3e0-mt-lg {
    margin-top: var(--v3e0-space-lg) !important;
}

.v3e0-p-lg {
    padding: var(--v3e0-space-lg) !important;
}

.v3e0-bg-card {
    background: var(--v3e0-bg-light) !important;
}

.v3e0-border {
    border: 1px solid rgba(32, 178, 170, 0.2);
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    .v3e0-game-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .v3e0-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--v3e0-space-sm);
        padding: var(--v3e0-space-md);
    }

    .v3e0-stat-value {
        font-size: var(--v3e0-font-size-xl);
    }
}

@media (max-width: 480px) {
    .v3e0-game-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--v3e0-space-xs);
    }

    .v3e0-game-card {
        padding: var(--v3e0-space-xs);
    }

    .v3e0-game-name {
        font-size: 0.55rem;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .v3e0-header,
    .v3e0-bottom-nav,
    .v3e0-footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}
