/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Link Styles */
a {
    color: #5CFFC1; /* Teal color */
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #7CFFD1; /* Lighter teal on hover */
}

a:visited {
    color: #5CFFC1; /* Keep teal for visited links */
}

:root {
    /* Primary Brand Colors */
    --pp-bg: #1B1D29;
    --pp-accent-green: #5CFFC1;
    --pp-accent-purple: #5956FF;
    --pp-white: #FFFFFF;

    /* Text Colors */
    --pp-text: #E6E8F2;
    --pp-text-dim: #A8AEC2;

    /* Surface Colors */
    --pp-surface: #232636;
    --pp-surface-2: #2A2D3F;

    /* UI Elements */
    --pp-border: rgba(255,255,255,0.08);
    --pp-glow: 0 0 0 3px rgba(89,86,255,0.25);

    /* Gradients */
    --purple-gradient: linear-gradient(135deg, #5956FF, #8B5CF6);

    /* Discord/Brand Colors */
    --discord-purple: #5865F2;
    --discord-green: #57F287;
    --primary-dark: #4A5568;

    /* Legacy Variables (for compatibility) */
    --primary-color: #5956FF;
    --secondary-color: #5CFFC1;
    --text-primary: #FFFFFF;
    --text-secondary: #B9BBBE;
    --bg-primary: #2A2D3A;
    --bg-secondary: #232631;
    --bg-dark: #1B1D29;
    --border-color: #40444B;

    /* Casino-specific Colors */
    /* Shuffle Casino */
    --shuffle-primary: #7717FF;
    --shuffle-secondary: #431E7F;
    --shuffle-dark: #431E7F;
    --shuffle-white: #FFFFFF;
    
    /* Goated Casino */
    --goated-primary: #D7FF00;
    --goated-secondary: #B8E000;
    --goated-dark: #1A1A1A;
    
    /* Thrill Casino */
    --thrill-lime: #5CFFC1;
    --thrill-purple: #5956FF;
    --thrill-bg: #1B1D29;
}

/* Base */
body.pp-root {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--pp-text);
    background:
        radial-gradient(1200px 600px at 20% -10%, rgba(89,86,255,0.15), transparent 60%),
        radial-gradient(900px 500px at 90% 10%, rgba(92,255,193,0.08), transparent 60%),
        var(--pp-bg);
}

/* Typography helpers for new fonts */
.pp-display, .pp-hero-title, .pp-section-title, .pp-title, .section-title {
    font-family: 'Oxanium', 'Barlow Condensed', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    letter-spacing: 0.01em;
}

.pp-condensed, .pp-nav a, .pp-chip, .pp-kicker, .pp-eyebrow, .pp-rank, .pp-user, .nav-link, .admin-login-btn {
    font-family: 'Barlow Condensed', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

/* Numeric alignment for leaderboard */
.pp-wager, .pp-prize, .wager-amount, .value-number {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
}

/* Layout helpers */
.pp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.pp-section {
    padding: 80px 0;
}

/* Header Improvements */
.pp-header .pp-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 24px;
}
.pp-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

/* Logo Improvements */
.pp-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    font-family: 'Oxanium', 'Barlow Condensed', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pp-logo-text {
    font-size: 20px;
    line-height: 1;
    background: linear-gradient(135deg, #5CFFC1 0%, #5956FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.pp-logo-plays {
    font-size: 15px;
    line-height: 1;
    color: #FFFFFF;
    opacity: 0.85;
    font-weight: 600;
    letter-spacing: 0.8px;
    transform: scaleY(-1);
}
.pp-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}
.pp-nav a {
    color: #5CFFC1; /* Teal color */
    text-decoration: none;
    opacity: 0.85;
    font-size: 16px;
    font-family: 'Barlow Condensed', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-weight: 600;
    transition: all 0.2s ease;
}
.pp-nav a:hover {
    color: #7CFFD1; /* Lighter teal on hover */
    opacity: 1;
    transform: translateY(-1px);
}

/* Button Improvements */
.pp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    border: 1px solid var(--pp-border);
    color: var(--pp-white);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}
.pp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}
.pp-btn:hover::before {
    left: 100%;
}
.pp-btn-primary {
    background: linear-gradient(135deg, var(--pp-accent-green), var(--pp-accent-purple));
    color: #0F1419;
    border: none;
    box-shadow: 0 8px 25px rgba(92,255,193,0.25);
    font-weight: 800;
}
.pp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(92,255,193,0.35);
}
.pp-btn-ghost {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}
.pp-btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}
.pp-cta-center { text-align: center; margin-top: 20px; }
.pp-cta-right { text-align: right; margin-top: 16px; }

/* Hero Section Improvements */
.pp-hero {
    padding: 100px 0 60px;
    position: relative;
    text-align: center;
}
.pp-kicker {
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--pp-text-dim);
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 600;
}
.pp-hero-title {
    font-size: clamp(42px, 8vw, 82px);
    letter-spacing: 2.5px;
    font-weight: 800;
    margin: 0 0 16px;
    text-transform: uppercase;
    font-family: 'Oxanium', 'Barlow Condensed', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.1;
}
.pp-hero-title span {
    background: linear-gradient(90deg, var(--pp-accent-green), var(--pp-accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.pp-hero-sub {
    max-width: 800px;
    color: var(--pp-text-dim);
    margin: 0 auto 32px;
    font-size: 18px;
    line-height: 1.6;
}
.pp-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

/* Section Improvements */
.pp-eyebrow {
    color: var(--pp-text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin: 0 0 8px;
    font-weight: 600;
}
.pp-section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin: 0 0 12px;
    font-family: 'Oxanium', 'Barlow Condensed', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--pp-text);
    text-align: center;
}
.pp-section-sub {
    color: var(--pp-text-dim);
    margin: 0 0 32px;
    max-width: 900px;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Gradient text helper for emphasis spans (e.g., in headings) */
.pp-gradient {
    background: linear-gradient(135deg, var(--pp-accent-green), var(--pp-accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Keep the highlighted part of the leaderboard title on one line on larger screens */
.leaderboard-main-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: clamp(36px, 4vw, 42px);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.leaderboard-main-title .pp-gradient {
    white-space: nowrap;
    display: inline-block;
}

/* Card Improvements */
.pp-card {
    background: var(--pp-surface);
    border: 1px solid var(--pp-border);
    border-radius: 20px;
    overflow: hidden;
}
.pp-card-elevated {
    box-shadow:
        0 25px 50px rgba(0,0,0,0.4),
        0 0 0 1px rgba(255,255,255,0.02) inset,
        0 0 40px rgba(89,86,255,0.08);
}

/* Bonuses Section Improvements */
.pp-bonuses {
    padding: 40px;
}
.pp-bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.pp-bonus {
    background: var(--pp-surface-2);
    border: 1px solid var(--pp-border);
    padding: 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pp-bonus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pp-accent-green), var(--pp-accent-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.pp-bonus:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: var(--pp-accent-green);
}
.pp-bonus:hover::before {
    opacity: 1;
}
.pp-bonus-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin: 0 auto 16px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.pp-bonus h3 {
    font-size: 20px;
    margin: 0 0 12px;
    color: var(--pp-white);
    font-weight: 700;
}
.pp-bonus p {
    color: var(--pp-text-dim);
    margin: 0 0 20px;
    line-height: 1.5;
    font-size: 15px;
}
.pp-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

/* Snapshot */
.pp-controls { display: flex; gap: 8px; margin: 10px 0 16px; }
.pp-chip { padding: 9px 13px; border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid var(--pp-border); color: var(--pp-text); font-weight: 700; font-family: 'Barlow Condensed', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; font-size: 15px; }
.pp-chip.is-active { background: linear-gradient(90deg, rgba(92,255,193,0.2), rgba(89,86,255,0.18)); border-color: rgba(255,255,255,0.2); }

.pp-table { margin-top: 10px; border-radius: 14px; overflow: hidden; border: 1px solid var(--pp-border); box-shadow: 0 10px 30px rgba(0,0,0,0.35); }
.pp-row { display: grid; grid-template-columns: 72px 1fr 220px 120px; align-items: center; padding: 14px 16px; background: var(--pp-surface-2); }
.pp-row + .pp-row { border-top: 1px solid var(--pp-border); }
.pp-row-1 { box-shadow: inset 0 0 0 2px rgba(92,255,193,0.15); }
.pp-row-2 { box-shadow: inset 0 0 0 2px rgba(89,86,255,0.12); }
.pp-row-3 { box-shadow: inset 0 0 0 2px rgba(255,255,255,0.06); }
.pp-rank { font-weight: 800; color: var(--pp-white); opacity: 0.9; }
.pp-user { color: var(--pp-text); }
.pp-wager, .pp-prize { text-align: right; color: var(--pp-text-dim); }
[data-placeholder] { font-style: italic; opacity: 0.7; }

/* VIP */
.pp-vip { padding: 28px; }
.pp-vip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 10px; }
.pp-col-title { font-size: 18px; margin-bottom: 10px; color: var(--pp-white); }
.pp-list { margin: 0; padding-left: 18px; color: var(--pp-text); }
.pp-steps { margin: 0; padding-left: 18px; }
.pp-note { margin-top: 8px; color: var(--pp-text-dim); font-size: 12px; }
.pp-emoji { margin-right: 6px; }

/* Twitter Updates Section */
.twitter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.twitter-card {
    background: linear-gradient(135deg, var(--pp-bg-primary) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--pp-border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.twitter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pp-accent-green), var(--pp-accent-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.twitter-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--pp-accent-green);
}

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

.twitter-card blockquote {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
}

/* Mobile Responsive for Twitter Section */
@media (max-width: 768px) {
    .twitter-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 32px;
    }

    .twitter-card {
        padding: 20px;
    }
}

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

/* Desktop Leaderboard Header Styles */
.leaderboard-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.leaderboard-main-title {
    font-size: clamp(36px, 4vw, 42px);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.leaderboard-subtitle {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Responsive Enhanced Headers */
@media (max-width: 768px) {
    .leaderboard-header {
        margin-bottom: 32px;
        padding: 16px;
    }

    .leaderboard-main-title {
        font-size: clamp(28px, 8vw, 42px) !important;
        margin-bottom: 12px !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: visible !important;
    }

    .leaderboard-subtitle {
        font-size: 16px !important;
        max-width: 500px !important;
    }

    .pp-section-title {
        font-size: clamp(28px, 6vw, 36px);
    }

    .pp-section-sub {
        font-size: 16px;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .leaderboard-header {
        margin-bottom: 24px;
        padding: 12px;
    }

    .leaderboard-main-title {
        font-size: clamp(24px, 10vw, 32px) !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: visible !important;
    }

    .leaderboard-subtitle {
        font-size: 14px !important;
        max-width: 400px !important;
    }
}

.pp-footer {
    padding: 40px 0 20px;
    background: var(--pp-bg);
    border-top: 1px solid var(--pp-border);
}

.pp-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}
.pp-footer a {
    color: #5CFFC1; /* Teal color */
    text-decoration: none;
    transition: color 0.2s ease;
}
.pp-footer a:hover {
    color: #7CFFD1; /* Lighter teal on hover */
}
.pp-footnote {
    color: var(--pp-text-dim);
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

/* Footer quote styling */
.pp-footer-left p.pp-footnote:first-child {
    font-style: italic;
    color: var(--pp-text);
    margin: 16px 0 8px;
    font-size: 14px;
    line-height: 1.6;
    max-width: 600px;
    border-left: 3px solid var(--pp-accent-green);
    padding-left: 16px;
    opacity: 0.9;
}

.pp-footer-left p.pp-footnote:first-child::before {
    content: '"';
    font-size: 24px;
    color: var(--pp-accent-green);
    position: relative;
    top: 2px;
    margin-right: 4px;
}

.pp-footer-left p.pp-footnote:first-child::after {
    content: '"';
    font-size: 24px;
    color: var(--pp-accent-green);
    position: relative;
    top: 2px;
    margin-left: 4px;
}

/* Footer responsive styling */
@media (max-width: 768px) {
    .pp-footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .pp-footer-left {
        width: 100%;
    }
}
.pp-heart {
    color: #FF6B6B;
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Admin panel minor alignment in new layout context */
.admin-modal, .admin-panel { font-family: inherit; }
/* Prize editor layout */
.prize-editor { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 8px; margin-top: 6px; }
.prize-editor .prize-input { display: flex; align-items: center; gap: 6px; }
.prize-editor .prize-input input { width: 100%; padding: 0.5rem; border: 2px solid var(--border-color); border-radius: 0.5rem; background: var(--bg-darker); color: var(--text-primary); }
.prize-editor .prize-input label { font-size: 0.85rem; color: var(--text-secondary); min-width: 2.5rem; }
/* Preset buttons */
.preset-buttons { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.preset-btn { padding: 0.4rem 0.6rem; font-size: 0.8rem; border: 1px solid var(--border-color); border-radius: 0.4rem; background: var(--bg-darker); color: var(--text-secondary); cursor: pointer; transition: all 0.2s; }
.preset-btn:hover { background: var(--accent-primary); color: var(--text-primary); border-color: var(--accent-primary); }
.preset-btn.clear-btn { background: var(--bg-error); color: var(--text-error); border-color: var(--border-error); }
.preset-btn.clear-btn:hover { background: var(--bg-error-hover); }
/* Admin panel sizing tweaks so date pickers fit */
.admin-panel { font-size: 14px; }
.admin-panel .form-group input,
.admin-panel .date-input,
.admin-panel select,
.admin-panel textarea { font-size: 14px; width: 100%; max-width: 100%; }
.admin-panel .leaderboard-config { padding: 1rem; }
.admin-panel .date-controls { gap: 0.75rem; }
@media (max-width: 768px) {
    .admin-panel { font-size: 13px; }
}

/* Enhanced Mobile Responsiveness */

/* Tablet and Small Desktop */
@media (max-width: 1024px) {
    .pp-container {
        padding: 0 20px;
    }
    .pp-section {
        padding: 60px 0;
    }
    .pp-bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .pp-container {
        padding: 0 16px;
    }
    .pp-header .pp-container {
        height: 70px;
        padding: 0 16px;
    }
    .pp-logo-text {
        font-size: 18px;
    }
    .pp-logo-plays {
        font-size: 13px;
        transform: scaleY(-1);
    }
    .pp-nav {
        gap: 16px;
    }
    .pp-nav a {
        font-size: 15px;
    }
    .pp-hero {
        padding: 60px 0 40px;
    }
    .pp-hero-title {
        font-size: clamp(36px, 10vw, 56px);
        letter-spacing: 1.5px;
    }
    .pp-hero-sub {
        font-size: 16px;
        max-width: 100%;
    }
    .pp-hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    .pp-bonus-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .pp-bonuses {
        padding: 24px;
    }
    .pp-vip-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .pp-section {
        padding: 48px 0;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .pp-container {
        padding: 0 12px;
    }
    .pp-header .pp-container {
        height: 64px;
        padding: 0 12px;
    }
    .pp-brand {
        gap: 8px;
    }
    .pp-logo-text {
        font-size: 16px;
    }
    .pp-logo-plays {
        font-size: 12px;
        transform: scaleY(-1);
    }
    .pp-nav {
        gap: 12px;
    }
    .pp-nav a {
        font-size: 14px;
    }
    .pp-hero {
        padding: 40px 0 32px;
    }
    .pp-hero-title {
        font-size: clamp(32px, 12vw, 48px);
        letter-spacing: 1px;
    }
    .pp-kicker {
        font-size: 13px;
        letter-spacing: 1.5px;
    }
    .pp-hero-sub {
        font-size: 15px;
        margin-bottom: 24px;
    }
    .pp-bonuses {
        padding: 20px;
    }
    .pp-bonus {
        padding: 20px;
    }
    .pp-bonus h3 {
        font-size: 18px;
    }
    .pp-bonus p {
        font-size: 14px;
    }
    .pp-section-title {
        font-size: clamp(28px, 8vw, 36px);
    }
    .pp-footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hidden {
    display: none !important;
}

/* Header Styles */
.header {
    background: rgba(32, 34, 37, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--discord-purple), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: var(--shadow-neon);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--discord-green);
}

.admin-login-btn {
    background: var(--discord-purple);
    color: white;
    border: 1px solid var(--pp-border);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.admin-login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pp-accent-green), var(--pp-accent-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.admin-login-btn:hover {
    background: var(--primary-dark);
    border-color: var(--pp-accent-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.admin-login-btn:hover::before {
    opacity: 1;
}

/* Hero Section */
.hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    display: flex;
    align-items: center;
    min-height: 600px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--discord-purple), var(--discord-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--discord-green);
    margin-bottom: 0.25rem;
}

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

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-discord {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--discord-purple);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-discord:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Leaderboard Snapshot */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.leaderboard-snapshot {
    background: var(--bg-secondary);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    min-width: 350px;
    border: 1px solid var(--border-color);
}

.leaderboard-snapshot h3 {
    color: var(--discord-green);
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 800;
    font-size: 1.25rem;
}

.snapshot-subtitle {
    color: var(--text-secondary);
    text-align: center;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.top-players {
    margin-bottom: 1.5rem;
}

.player-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.player-row:last-child {
    border-bottom: none;
}

.rank {
    font-weight: 800;
    width: 40px;
}

.rank.gold { color: #FFD700; }
.rank.silver { color: #C0C0C0; }
.rank.bronze { color: #CD7F32; }

.player-name {
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-family: 'Barlow Condensed', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-primary);
}

.wager-amount {
    color: var(--discord-green);
    font-weight: 700;
    font-size: 0.875rem;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
}

.view-full-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--discord-green), var(--secondary-color));
    color: var(--bg-dark);
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
}

.view-full-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
}

/* Offers Section */
.offers-section {
    padding: 4rem 2rem;
    background: var(--bg-primary);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.offer-card {
    background: var(--bg-secondary);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.2s;
}

.offer-card:hover {
    transform: translateY(-4px);
    border-color: var(--discord-green);
}

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

.offer-card h3 {
    color: var(--discord-green);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.offer-card p {
    color: var(--text-secondary);
}

/* Button Styles */
.btn-primary, .btn-secondary, .casino-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--purple-gradient);
    color: white;
    box-shadow: var(--shadow-purple);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Admin Styles */
.admin-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.admin-modal-content {
    background-color: var(--bg-primary);
    margin: 15% auto;
    padding: 2rem;
    border-radius: 1rem;
    width: 400px;
    box-shadow: var(--shadow-xl);
}

.close-admin {
    color: var(--text-light);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-admin:hover {
    color: var(--text-primary);
}

.admin-modal h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.admin-modal input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.admin-modal button {
    width: 100%;
    background: var(--purple-gradient);
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
}

.admin-panel {
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-panel.hidden {
    display: none;
}

.admin-panel-content {
    background: var(--bg-primary);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    overflow-y: auto;
    position: relative;
    padding: 2rem;
    resize: none;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.logout-btn {
    background: #EF4444;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
}

.api-config h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.leaderboard-timing-info {
    background: var(--bg-darker);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.timing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.timing-item:last-child {
    margin-bottom: 0;
}

.casino-name {
    font-weight: 600;
    color: var(--text-primary);
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
}

.form-group small {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

.save-btn {
    background: var(--accent-color);
    color: var(--bg-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.save-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.admin-security, .developer-support, .leaderboard-management {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.admin-security h4, .developer-support h4, .leaderboard-management h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Leaderboard Management Styles */
.leaderboard-management {
    border: 2px solid var(--accent-color);
}

.leaderboard-configs {
    margin-bottom: 2rem;
}

.leaderboard-config {
    background: var(--bg-darker);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.leaderboard-config:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.1);
}

.leaderboard-config h5 {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.date-input {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.75rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.date-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
    outline: none;
}

.date-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.bulk-actions {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
}

.save-btn.primary {
    background: var(--accent-color);
    color: var(--bg-dark);
    flex: 1;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.save-btn.primary:hover {
    background: #E5C100;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.save-btn.secondary {
    background: var(--bg-darker);
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
    flex: 1;
}

.save-btn.secondary:hover {
    background: var(--text-secondary);
    color: var(--bg-dark);
    border-color: var(--text-secondary);
}

.support-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    background: var(--bg-darker);
    color: var(--text-primary);
    font-family: inherit;
    resize: vertical;
}

.support-form select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    background: var(--bg-darker);
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    display: flex;
    align-items: center;
    min-height: 600px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Enhanced Hero Elements */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--thrill-lime));
    color: var(--bg-dark);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--thrill-lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-benefits {
    margin: 2rem 0;
    display: grid;
    gap: 0.75rem;
}

.benefit-item {
    color: var(--text-primary);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-large {
    background: linear-gradient(135deg, var(--primary-color), var(--thrill-lime));
    color: var(--bg-dark);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 280px;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(89, 86, 255, 0.4);
}

.btn-subtext {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

.cta-urgency {
    margin-top: 1rem;
    text-align: center;
}

.urgency-text {
    color: var(--thrill-lime);
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.social-proof {
    margin-top: 2rem;
    text-align: center;
}

.proof-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Enhanced Leaderboard Snapshot */
.leaderboard-snapshot.enhanced {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.leaderboard-snapshot.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--thrill-lime), var(--primary-color));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.snapshot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.live-text {
    color: #ff4444;
    font-size: 0.8rem;
    font-weight: 700;
}

.countdown-timer {
    color: var(--pp-accent-green);
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
    padding: 0.2rem 0.4rem;
    background: rgba(92, 255, 193, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(92, 255, 193, 0.3);
}

/* Data Source Indicator Styles */
.data-source {
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.5rem;
    padding: 0.15rem 0.3rem;
    border-radius: 3px;
    border: 1px solid;
    cursor: help;
    transition: opacity 0.2s ease;
}

.data-source.mock-data {
    color: #ffa500;
    background: rgba(255, 165, 0, 0.1);
    border-color: rgba(255, 165, 0, 0.3);
}

.data-source.real-data {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
    border-color: rgba(255, 68, 68, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Podium Styles */
.podium-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem 0;
}

.podium-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    position: relative;
    background: var(--pp-surface);
    border: 2px solid;
    min-width: 140px;
    text-align: center;
}

.podium-first {
    border-color: #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    transform: scale(1.1);
    order: 2;
}

.podium-second {
    border-color: #C0C0C0;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), rgba(192, 192, 192, 0.05));
    order: 1;
}

.podium-third {
    border-color: #CD7F32;
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.1), rgba(205, 127, 50, 0.05));
    order: 3;
}

.podium-rank {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.podium-first .podium-rank {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.podium-second .podium-rank {
    background: linear-gradient(135deg, #C0C0C0, #A0A0A0);
    color: #000;
}

.podium-third .podium-rank {
    background: linear-gradient(135deg, #CD7F32, #B8860B);
    color: #fff;
}

.podium-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.podium-username {
    font-weight: 700;
    font-size: 1rem;
    color: var(--pp-white);
}

.podium-wager {
    font-size: 0.875rem;
    color: var(--pp-text-dim);
    font-weight: 600;
}

.podium-prize {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--pp-accent-green);
}

/* Mobile responsiveness for podium */
@media (max-width: 768px) {
    .podium-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .podium-player {
        min-width: auto;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        transform: none !important;
    }
    
    .podium-first {
        order: 1;
    }
    
    .podium-second {
        order: 2;
    }
    
    .podium-third {
        order: 3;
    }
}

.player-row.winner {
    background: linear-gradient(90deg, rgba(89, 86, 255, 0.1), rgba(92, 255, 193, 0.1));
    animation: winnerGlow 3s infinite;
}

@keyframes winnerGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(89, 86, 255, 0.3); }
    50% { box-shadow: 0 0 20px rgba(92, 255, 193, 0.4); }
}

.profit-badge {
    background: var(--thrill-lime);
    color: var(--bg-dark);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: auto;
}

.view-full-btn.enhanced {
    background: linear-gradient(135deg, var(--primary-color), var(--thrill-lime));
    color: var(--bg-dark);
    transform: scale(1.05);
}

.competition-note {
    text-align: center;
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--bg-darker);
    border-radius: 0.5rem;
    border-left: 3px solid var(--thrill-lime);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Enhanced Value Proposition */
.offers-section.enhanced {
    padding: 5rem 2rem;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-subtitle {
    font-size: 1.1rem;
    margin-top: 1rem;
    color: var(--text-secondary);
}

.benefits-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 1rem;
    border: 1px solid var(--border-color);
}

.benefit-highlight {
    text-align: center;
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--thrill-lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.highlight-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

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

.offer-card.premium {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-darker));
    border: 2px solid var(--primary-color);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.offer-card.premium:hover {
    transform: translateY(-5px);
    border-color: var(--thrill-lime);
    box-shadow: 0 10px 30px rgba(89, 86, 255, 0.2);
}

.offer-card.premium .offer-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.offer-card.premium h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.offer-card.premium p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offer-value {
    background: var(--thrill-lime);
    color: var(--bg-dark);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
}

.testimonials-section {
    margin: 4rem 0;
    text-align: center;
}

.testimonials-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

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

.testimonial {
    background: var(--bg-secondary);
    border-radius: 1rem;
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
}

.testimonial-content {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

.cta-section {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-premium {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--thrill-lime));
    color: var(--bg-dark);
    padding: 1.5rem 3rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(89, 86, 255, 0.4);
}

.btn-note {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.leaderboard-preview {
    background: var(--bg-primary);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    min-width: 300px;
    border: 2px solid rgba(139, 92, 246, 0.1);
}

.leaderboard-preview h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.leaderboard-loading {
    color: var(--text-secondary);
    text-align: center;
}

.leaderboard-empty {
    color: var(--text-secondary);
    text-align: center;
    padding: 3rem 2rem;
}

.leaderboard-empty p {
    margin: 0.5rem 0;
    line-height: 1.5;
}

.leaderboard-empty p:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

/* VIP Highlight Section */
.vip-highlight {
    padding: 4rem 2rem;
    background: var(--purple-gradient);
    color: white;
}

.vip-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vip-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--bg-dark);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.vip-highlight h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.vip-highlight p {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.benefit-icon {
    font-size: 2rem;
}

.benefit-text h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.benefit-text p {
    opacity: 0.8;
    font-size: 0.875rem;
    margin: 0;
}

/* Casino Section */
.casinos {
    padding: 4rem 2rem;
    background: var(--bg-darker);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--discord-green), var(--discord-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Oxanium', 'Barlow Condensed', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.casino-card {
    background: var(--bg-secondary);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--border-color);
}

.casino-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--discord-green);
}

.casino-promo-header {
    background: linear-gradient(135deg, var(--discord-purple), var(--discord-green));
    padding: 0.75rem;
    text-align: center;
}

.promo-badge {
    color: white;
    font-weight: 800;
    font-size: 0.875rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.shuffle-promo {
    background: linear-gradient(135deg, var(--shuffle-primary), var(--shuffle-dark));
    color: var(--shuffle-white);
}

.goated-promo {
    background: linear-gradient(135deg, var(--goated-primary), var(--goated-secondary));
    color: var(--goated-dark);
}

.thrill-promo {
    background: linear-gradient(135deg, var(--thrill-lime), var(--thrill-purple));
    color: var(--thrill-bg);
}

.casino-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.casino-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.casino-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 800;
    color: white;
}

.casino-logo h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

.casino-content {
    padding: 1.5rem;
}

.casino-description {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-darker);
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

.casino-description p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.vip-benefits h4, .thrill-highlights h4, .leaderboard-info h4 {
    color: var(--primary-color);
    margin: 1rem 0 0.5rem 0;
    font-size: 1rem;
}

.goated-features, .thrill-highlights {
    margin: 1rem 0;
}

.leaderboard-info {
    background: var(--bg-darker);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid var(--goated-primary);
}

.leaderboard-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.casino-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.shuffle .casino-logo-img {
    background: var(--shuffle-white);
    padding: 4px;
}

.goated .casino-logo-img {
    background: var(--goated-dark);
    padding: 4px;
}

.thrill .casino-logo-img {
    background: var(--thrill-white);
    padding: 4px;
}

.discord-code {
    background: var(--bg-darker);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    text-align: center;
}

.code-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

.code-value {
    color: var(--discord-green);
    font-weight: 800;
    font-size: 1.125rem;
}

.vip-section {
    margin-bottom: 1.5rem;
}

.vip-section h4 {
    color: var(--discord-yellow);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.vip-section p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

.vip-transfer-promo {
    background: linear-gradient(135deg, rgba(87, 242, 135, 0.1), rgba(254, 231, 92, 0.1));
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(87, 242, 135, 0.3);
}

.vip-transfer-promo h4 {
    color: var(--discord-green);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.vip-transfer-promo p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.transfer-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 600;
}

.arrow {
    color: var(--discord-yellow);
    font-size: 1.5rem;
}

.features {
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    background: var(--bg-darker);
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary-color);
    transition: all 0.2s ease;
}

.shuffle .feature {
    border-left-color: var(--shuffle-primary);
}

.goated .feature {
    border-left-color: var(--goated-primary);
}

.thrill .feature {
    border-left-color: var(--thrill-lime);
}

.feature:hover {
    background: var(--bg-primary);
    transform: translateX(5px);
    color: var(--text-primary);
}

.casino-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.casino-btn {
    flex: 1;
    background: var(--discord-green);
    color: var(--bg-dark);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.shuffle-btn {
    background: linear-gradient(135deg, var(--shuffle-primary), var(--shuffle-dark));
    color: var(--shuffle-white);
    border: 2px solid var(--shuffle-primary);
}

.shuffle-btn:hover {
    background: linear-gradient(135deg, var(--shuffle-dark), var(--shuffle-primary));
    border-color: var(--shuffle-white);
}

.goated-btn {
    background: linear-gradient(135deg, var(--goated-primary), var(--goated-secondary));
    color: var(--goated-dark);
    border: 2px solid var(--goated-primary);
}

.goated-btn:hover {
    background: linear-gradient(135deg, var(--goated-secondary), var(--goated-primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(215, 255, 0, 0.3);
}

.thrill-btn {
    background: linear-gradient(135deg, var(--thrill-lime), var(--thrill-purple));
    color: var(--thrill-bg);
    border: 2px solid var(--thrill-lime);
}

.thrill-btn:hover {
    background: linear-gradient(135deg, var(--thrill-purple), var(--thrill-lime));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(92, 255, 193, 0.3);
}

.vip-btn {
    background: var(--discord-yellow);
    color: var(--bg-dark);
}

.casino-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Enhanced Casino Marketing Styles */
.casinos.enhanced {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.casinos-header {
    text-align: center;
    margin-bottom: 3rem;
}

.urgency-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    margin-top: 1rem;
    animation: pulse 2s infinite;
}

.urgency-icon {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.casino-grid.enhanced {
    gap: 2.5rem;
}

.casino-card.premium {
    position: relative;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    transform: scale(1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.casino-card.premium:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.casino-ribbon {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: var(--bg-dark);
    padding: 0.5rem 3rem;
    font-weight: 700;
    font-size: 0.8rem;
    transform: rotate(45deg);
    z-index: 10;
    border-radius: 0.25rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.casino-ribbon.monthly {
    background: linear-gradient(45deg, var(--goated-neon), var(--goated-dark));
    color: var(--bg-dark);
}

.casino-ribbon.elite {
    background: linear-gradient(45deg, var(--thrill-purple), var(--thrill-lime));
    color: var(--bg-dark);
}

.casino-rating {
    font-size: 0.9rem;
    color: #ffd700;
    margin-top: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.value-props {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-prop {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.value-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.casino-description.premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.discord-code.premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid var(--accent);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.discord-code.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.code-label {
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.code-value {
    font-family: 'Courier New', monospace;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: transform 0.2s;
}

.code-value:hover {
    transform: scale(1.05);
}

.code-savings {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: var(--bg-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.features.enhanced {
    margin: 2rem 0;
}

.feature.premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature.premium:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.leaderboard-info.premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 0.75rem;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.competition-timeline {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-item {
    flex: 1;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -1rem;
    color: var(--text-secondary);
}

.casino-cta-section {
    margin-top: 2rem;
    text-align: center;
}

.casino-actions.premium {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.casino-btn.premium {
    position: relative;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border: 2px solid var(--accent);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.casino-btn.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.casino-btn.premium:hover::before {
    left: 100%;
}

.casino-btn.premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-urgency {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    margin-top: 0.25rem;
    opacity: 0.8;
    text-transform: none;
    letter-spacing: normal;
}

.social-proof {
    font-size: 0.9rem;
    color: var(--discord-green);
    margin-top: 0.75rem;
    font-weight: 600;
}

.casinos-footer {
    margin-top: 4rem;
    text-align: center;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.disclaimer-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.7;
    line-height: 1.4;
}

/* Responsive enhancements */
@media (max-width: 768px) {
    .value-props {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .competition-timeline {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .timeline-item:not(:last-child)::after {
        content: '↓';
        position: relative;
        right: 0;
        display: block;
        margin: 0.5rem 0;
    }
    
    .trust-badges {
        gap: 1rem;
    }
    
    .trust-badge {
        flex: 1;
        min-width: 140px;
        justify-content: center;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .casino-ribbon {
        font-size: 0.7rem;
        padding: 0.4rem 2.5rem;
        right: -1.5rem;
    }
}

/* Community Section */
.community {
    padding: 4rem 2rem;
    background: var(--bg-primary);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.community-card {
    background: var(--bg-secondary);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(139, 92, 246, 0.1);
}

.community-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.update-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.update-item:last-child {
    border-bottom: none;
}

.update-date {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.update-text {
    color: var(--text-primary);
    font-weight: 500;
}

.stats-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

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

/* Help Modal Styles */
.help-modal {
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.help-modal.hidden {
    display: none;
}

.help-modal-content {
    background: var(--bg-primary);
    margin: 5% auto;
    padding: 0;
    border-radius: 1rem;
    width: 85%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    position: relative;
}

.help-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
}

.help-modal-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.close-help {
    color: var(--text-secondary);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.close-help:hover {
    color: var(--text-primary);
    background: var(--bg-secondary);
}

.help-content {
    padding: 2rem;
}

.help-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
}

.help-section h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.help-section p {
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.help-section ul {
    margin-left: 1.5rem;
    color: var(--text-secondary);
}

.help-section li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.help-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Responsive Help Modal */
@media (max-width: 768px) {
    .help-modal-content {
        width: 95%;
        max-width: none;
        margin: 2% auto;
        max-height: 85vh;
    }
    
    .help-modal-header {
        padding: 1.5rem;
    }
    
    .help-content {
        padding: 1.5rem;
    }
    
    .help-section {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .help-modal-content {
        width: 98%;
        margin: 1% auto;
        max-height: 90vh;
    }
    
    .help-modal-header {
        padding: 1rem;
    }
    
    .help-content {
        padding: 1rem;
    }
}

.help-section p {
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.help-section ul {
    margin-left: 1.5rem;
    color: var(--text-secondary);
}

.help-section li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.help-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Admin Header Actions */
.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.help-btn {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.2s;
}

.help-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Leaderboard Section */
.leaderboard {
    padding: 4rem 2rem;
    background: var(--bg-secondary);
    text-align: center;
}

.leaderboard-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-secondary);
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.tab-logo {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
}

.thrill-logo {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.goated-logo {
    background: linear-gradient(135deg, #10B981, #059669);
}

.tab-btn.active,
.tab-btn:hover {
    border-color: var(--primary-color);
    color: white;
    background: var(--purple-gradient);
    box-shadow: var(--shadow-purple);
}

.leaderboard-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-primary);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--pp-border);
    position: relative;
    margin-top: 1rem;
}

/* Enable horizontal scrolling on mobile for leaderboard tables */
@media (max-width: 768px) {
    .leaderboard-container {
        overflow-x: auto;
        overflow-y: hidden;
    }
}

.leaderboard-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pp-accent-green), var(--pp-accent-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.leaderboard-container:hover::before {
    opacity: 1;
}

.leaderboard-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border-color: var(--pp-accent-green);
}

.leaderboard-content {
    padding: 2rem;
}

/* Leaderboard Table Styles */
.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.leaderboard-table th,
.leaderboard-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.leaderboard-table th {
    background: var(--bg-secondary);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leaderboard-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.leaderboard-rank {
    font-weight: 700;
    color: var(--primary-color);
    width: 4rem;
}

.leaderboard-player {
    font-weight: 600;
    color: var(--text-primary);
    min-width: 8rem;
}

.leaderboard-wager,
.leaderboard-prize {
    text-align: right;
    font-weight: 600;
    min-width: 6rem;
}

.leaderboard-wager {
    color: var(--text-secondary);
}

.leaderboard-prize {
    color: var(--accent-color);
}

/* Mobile responsiveness for leaderboard table */
@media (max-width: 768px) {
    .leaderboard-table {
        min-width: 500px; /* Ensure minimum width to prevent cramping */
    }
    
    .leaderboard-table th,
    .leaderboard-table td {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .leaderboard-rank {
        min-width: 3rem;
    }
    
    .leaderboard-player {
        min-width: 7rem;
    }
    
    .leaderboard-wager,
    .leaderboard-prize {
        min-width: 5rem;
    }
}

.leaderboard-loading {
    text-align: center;
    color: var(--text-secondary);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Chat Bubble */
.chat-bubble {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: var(--purple-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-purple);
    z-index: 999;
    transition: all 0.3s ease;
}

/* Hide chat bubble when admin panel is open */
.chat-bubble.admin-open {
    display: none !important;
}

.chat-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}

/* Hide chat bubble when admin panel is open */
.chat-bubble.admin-open {
    display: none !important;
}

.chat-icon {
    font-size: 1.5rem;
    color: white;
}

.chat-tooltip {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.chat-bubble:hover .chat-tooltip {
    opacity: 1;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.chat-header {
    background: var(--purple-gradient);
    color: white;
    padding: 1rem;
    border-radius: 1rem 1rem 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 1rem;
}

.bot-message .message-text {
    background: var(--bg-secondary);
    padding: 0.75rem;
    border-radius: 0.75rem 0.75rem 0.75rem 0.25rem;
    color: var(--text-primary);
}

.user-message .message-text {
    background: var(--purple-gradient);
    padding: 0.75rem;
    border-radius: 0.75rem 0.75rem 0.25rem 0.75rem;
    color: white;
    margin-left: 2rem;
}

.chat-options {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
}

.chat-option {
    display: block;
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.chat-option:hover {
    background: var(--primary-color);
    color: white;
}

.chat-input-area {
    display: flex;
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    gap: 0.5rem;
}

.chat-input-area input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
}

.chat-input-area button {
    background: var(--purple-gradient);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: var(--bg-primary);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}

.testimonial-card.featured {
    transform: scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-card.featured::before {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    height: 4px;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    border-color: var(--accent);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.member-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.member-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-dark);
}

.member-details h4 {
    margin: 0;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.member-status {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
}

.testimonial-rating {
    color: #ffd700;
    font-size: 1rem;
}

.testimonial-content {
    margin: 0 0 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 0.75rem;
    border-left: 4px solid var(--accent);
    font-style: italic;
    line-height: 1.6;
    color: var(--text-primary);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.testimonial-stats .stat {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--bg-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonials-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.community-stat {
    text-align: center;
}

.community-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.community-stat .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.join-cta {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 2rem auto 0;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card.featured {
        transform: none;
    }
    
    .community-stats {
        gap: 2rem;
        flex-direction: column;
    }
    
    .community-stat .stat-number {
        font-size: 2rem;
    }
    
    .testimonial-stats {
        justify-content: center;
    }
    
    .member-info {
        gap: 0.75rem;
    }
    
    .member-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Thrill VIP Highlight Section */
.thrill-vip-highlight {
    margin: 3rem 0;
    background: linear-gradient(135deg, var(--thrill-purple) 0%, var(--thrill-lime) 100%);
    border-radius: 1rem;
    padding: 2rem;
    color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.thrill-vip-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.vip-highlight-content {
    position: relative;
    z-index: 2;
}

.vip-highlight-header {
    text-align: center;
    margin-bottom: 2rem;
}

.vip-highlight-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--bg-dark);
}

.vip-highlight-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.vip-highlight-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.vip-highlight-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 800px;
}

.highlight-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 0.5rem;
    color: white;
}

.feature-icon {
    font-size: 1.5rem;
    min-width: 2rem;
}

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

.vip-highlight-btn {
    background: var(--bg-dark);
    color: var(--thrill-lime);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--bg-dark);
}

.vip-highlight-btn:hover {
    background: transparent;
    color: var(--bg-dark);
    border-color: var(--bg-dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .vip-highlight-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .vip-highlight-header h3 {
        font-size: 1.5rem;
    }
    
    .thrill-vip-highlight {
        margin: 2rem 0;
        padding: 1.5rem;
    }
}

/* Community Links Styling */
.community-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.community-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.community-link:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    transform: translateX(5px);
}

.link-icon {
    font-size: 1.2rem;
    min-width: 1.5rem;
}

.link-text {
    color: var(--text-primary);
    font-weight: 500;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-secondary);
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
        max-height: 400px;
    }
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 300px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.floating-cta.visible {
    transform: translateY(0);
    opacity: 1;
}

.floating-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.floating-cta-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    text-align: center;
}

.cta-text {
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0;
}

.cta-button {
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-dark);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.cta-close {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--bg-dark);
    color: var(--text-primary);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    transition: all 0.2s ease;
}

.cta-close:hover {
    background: #ff4444;
    color: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        padding: 0.75rem 1rem;
    }
    
    .floating-cta-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .cta-text {
        font-size: 0.8rem;
    }
    
    .cta-button {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-light);
}

.footer-brand p {
    color: var(--text-light);
}

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

.link-group h4 {
    margin-bottom: 1rem;
    color: white;
}

.link-group a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.link-group a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: var(--text-light);
}

.disclaimer {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

.disclaimer p {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.disclaimer p:last-child {
    margin-bottom: 0;
}

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

.disclaimer a {
    color: var(--primary-light);
    text-decoration: underline;
    transition: color 0.2s;
}

.disclaimer a:hover {
    color: var(--primary-color);
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    margin: 0;
    font-size: 0.875rem;
}

.developer-credit {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.8;
}

.developer-credit a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.developer-credit a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.heart {
    color: #ff6b6b;
    animation: heartbeat 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .casino-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .casino-description, .leaderboard-info {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .casino-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .casino-btn {
        text-align: center;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .feature {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .vip-benefits {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .benefit {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-meta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .disclaimer {
        padding: 1rem;
        text-align: left;
    }
    
    .disclaimer p {
        font-size: 0.85rem;
    }
    
    .navbar {
        padding: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .chat-widget {
        width: 90vw;
        right: 5vw;
        left: 5vw;
    }
    
    .admin-panel-content {
        width: 95%;
        max-width: none;
        margin: 2rem;
        padding: 1rem;
    }
    
    .date-controls {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .bulk-actions {
        flex-direction: column;
    }
    
    .leaderboard-config {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
    
    .casino-card {
        margin: 0 1rem;
    }
    
    .leaderboard-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 200px;
    }
}

/* Leaderboard Error Styles */
.leaderboard-error {
    background: var(--pp-surface);
    border: 2px solid #ff6b6b;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.leaderboard-error h3 {
    color: #ff6b6b;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.leaderboard-error p {
    color: var(--pp-text);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.leaderboard-error .error-actions {
    margin: 1.5rem 0;
}

.leaderboard-error .btn-primary {
    background: #ff6b6b;
    border-color: #ff6b6b;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.leaderboard-error .btn-primary:hover {
    background: #ff5252;
    transform: translateY(-1px);
}

.leaderboard-error small {
    color: var(--pp-text-dim);
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Enhanced Error Diagnostics */
.error-diagnostics {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 8px;
    margin: 1rem 0;
    padding: 0;
    font-size: 0.9rem;
}

.error-diagnostics summary {
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-weight: 600;
    color: #ff6b6b;
    user-select: none;
    list-style: none;
    background: rgba(255, 107, 107, 0.05);
    border-radius: 8px 8px 0 0;
    transition: background-color 0.2s ease;
}

.error-diagnostics summary:hover {
    background: rgba(255, 107, 107, 0.1);
}

.error-diagnostics summary::-webkit-details-marker {
    display: none;
}

.error-diagnostics summary::before {
    content: '▶';
    margin-right: 0.5rem;
    transition: transform 0.2s ease;
}

.error-diagnostics[open] summary::before {
    transform: rotate(90deg);
}

.diagnostic-info {
    padding: 1rem;
    background: var(--pp-surface);
    border-radius: 0 0 8px 8px;
}

.diagnostic-info p {
    margin: 0.5rem 0;
    font-size: 0.85rem;
    line-height: 1.4;
    max-width: none;
}

.diagnostic-info strong {
    color: var(--pp-text);
    font-weight: 600;
}

.leaderboard-loading {
    background: var(--pp-surface);
    border: 1px solid var(--pp-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: var(--pp-text);
    font-size: 1rem;
    margin: 2rem 0;
}