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

/* SEO Hidden Content */
.seo-content {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    visibility: hidden !important;
}

/* Google Drive Loading Screen */
.drive-loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    background-attachment: fixed;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.drive-loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-container {
    text-align: center;
    max-width: 500px;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 20px;
    border: 2px solid var(--border-color);
    box-shadow: 0 20px 40px var(--shadow-color);
    backdrop-filter: blur(10px);
}

.loading-icon {
    position: relative;
    margin-bottom: 2rem;
}

.drive-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: drivePulse 2s ease-in-out infinite;
}

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

.loading-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px var(--glow-color);
    letter-spacing: 2px;
}

.loading-subtitle {
    color: var(--text-secondary);
    font-size: 0.55rem;
    margin-bottom: 2rem;
}

.loading-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--glow-color);
}

.progress-text {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.loading-steps {
    text-align: left;
}

.step {
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.step.active {
    color: var(--accent-primary);
    opacity: 1;
    text-shadow: 0 0 10px var(--glow-color);
}

.step.completed {
    color: var(--accent-success);
    opacity: 1;
}

/* Loading Animations */
@keyframes drivePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

:root {
    /* Theme 1: Dark Gradient Gaming (Default) */
    --bg-primary: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a0a0a 100%);
    --bg-secondary: rgba(0, 0, 0, 0.8);
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #b8c5d6;
    --text-muted: #8892b0;
    --accent-primary: #ff6b6b;
    --accent-secondary: #4d9de0;
    --accent-success: #6bcf7f;
    --accent-warning: #ffd93d;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.5);
    --glow-color: rgba(255, 107, 107, 0.3);
}

body {
    font-family: 'Orbitron', 'Roboto', sans-serif;
    background: var(--bg-primary);
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    transition: all 0.3s ease;
    position: relative;
    overflow-x: hidden;
}

/* Gaming Background Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(77, 157, 224, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(107, 207, 127, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Animated Grid Background */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(25px, 25px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

/* Theme Switcher */
.theme-switcher {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: var(--bg-card);
    padding: 15px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-color);
    min-width: 320px;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.theme-switcher:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.theme-switcher.hidden {
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
}

.theme-switcher-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.theme-switcher-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
}

.theme-switcher-label::before {
    content: '🎨';
    margin-right: 5px;
}

.theme-toggle-btn {
    background: var(--accent-primary);
    color: white;
    border: none;
    border-radius: 8px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-left: 10px;
}

.theme-toggle-btn:hover {
    background: var(--accent-secondary);
    transform: scale(1.1);
}

.theme-toggle-btn.rotated .toggle-icon {
    transform: rotate(180deg);
}

/* Hidden Theme Switcher Bar */
.theme-switcher-bar {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateX(-100%);
}

.theme-switcher-bar.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.theme-show-btn {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 15px var(--shadow-color);
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.theme-show-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-color);
    border-color: var(--accent-primary);
    background: var(--bg-card-hover);
}

.show-icon {
    font-size: 1.2rem;
}

.show-text {
    font-size: 0.8rem;
}

.theme-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    justify-content: center;
}

/* Mobile theme toggle button */
.theme-toggle-mobile {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 15px var(--shadow-color);
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.theme-toggle-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.theme-toggle-mobile.active {
    background: var(--accent-secondary);
    border-color: var(--accent-primary);
}

/* Mobile theme chooser overlay */
.theme-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    backdrop-filter: blur(5px);
}

.theme-mobile-chooser {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-card);
    padding: 20px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    box-shadow: 0 20px 40px var(--shadow-color);
    backdrop-filter: blur(15px);
    min-width: 280px;
    text-align: center;
}

.theme-mobile-chooser h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
}

.theme-mobile-chooser h3::before {
    content: '🎨';
    margin-right: 10px;
}

.theme-mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.theme-mobile-btn {
    width: 60px;
    height: 60px;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bg-card);
    color: var(--text-primary);
    margin: 0 auto;
}

.theme-mobile-btn:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: var(--accent-secondary);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.theme-mobile-btn.active {
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px var(--glow-color);
}

.theme-mobile-label {
    font-size: 0.6rem;
    margin-top: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.theme-mobile-close {
    background: var(--accent-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.theme-mobile-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--glow-color);
}

.theme-btn {
    width: 45px;
    height: 45px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: var(--bg-card);
    color: var(--text-primary);
}

.theme-btn:hover {
    transform: translateY(-2px) scale(1.05);
    border-color: var(--accent-secondary);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.theme-btn.active {
    transform: translateY(-2px) scale(1.1);
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px var(--glow-color);
}

.theme-btn-label {
    font-size: 0.6rem;
    margin-top: 2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.theme-btn.dark {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f3460 100%);
    color: #ffffff;
}

.theme-btn.light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    color: #212529;
}

.theme-btn.retro {
    background: linear-gradient(135deg, #2d1b69 0%, #11998e 50%, #38ef7d 100%);
    color: #ffffff;
}

.theme-btn.cyberpunk {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 50%, #2d1b69 100%);
    color: #00ffff;
    border-color: #00ffff;
}

.theme-btn.glitch {
    background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #330066 100%);
    color: #ff0000;
    border-color: #ff0000;
}

.theme-btn.matrix {
    background: linear-gradient(135deg, #000000 0%, #001100 50%, #003300 100%);
    color: #00ff00;
    border-color: #00ff00;
}

/* Mobile theme button styles */
.theme-mobile-btn.dark {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f3460 100%);
    color: #ffffff;
}

.theme-mobile-btn.light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    color: #212529;
}

.theme-mobile-btn.retro {
    background: linear-gradient(135deg, #2d1b69 0%, #11998e 50%, #38ef7d 100%);
    color: #ffffff;
}

.theme-mobile-btn.cyberpunk {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 50%, #2d1b69 100%);
    color: #00ffff;
    border-color: #00ffff;
}

.theme-mobile-btn.glitch {
    background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #330066 100%);
    color: #ff0000;
    border-color: #ff0000;
}

.theme-mobile-btn.matrix {
    background: linear-gradient(135deg, #000000 0%, #001100 50%, #003300 100%);
    color: #00ff00;
    border-color: #00ff00;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
    background: var(--bg-card);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

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

.title {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.title-main {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 3.25rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-warning), var(--accent-success), var(--accent-secondary));
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px var(--glow-color);
    position: relative;
}

.title-subtitle {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin: 8px 0;
    text-align: center;
    letter-spacing: 1px;
    opacity: 0.9;
}

.denuvo-info {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    background: linear-gradient(45deg, var(--accent-warning), var(--accent-primary), var(--accent-secondary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 2s ease-in-out infinite;
    margin: 12px 0 !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.denuvo-info:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.clickable-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: white;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    margin-left: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--accent-secondary);
}

.clickable-circle:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Denuvo Info Popup */
.denuvo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.denuvo-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--bg-primary);
    border: 2px solid var(--accent-primary);
    border-radius: 12px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.denuvo-popup.show .popup-content {
    transform: scale(1);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px 15px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 10px 10px 0 0;
}

.popup-header h3 {
    margin: 0;
    color: white;
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 700;
}

.popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.popup-body {
    padding: 25px;
    color: var(--text-primary);
    line-height: 1.6;
}

.popup-body p {
    margin: 0 0 15px 0;
    font-size: 1rem;
}

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

.popup-body strong {
    color: var(--accent-primary);
    font-weight: 600;
}

.title-icon {
    display: inline-block;
    font-size: 2rem;
    margin: 0 0.5rem;
    animation: pulse 2s infinite;
}

.title-icon:nth-child(1) { animation-delay: 0s; }
.title-icon:nth-child(3) { animation-delay: 0.5s; }
.title-icon:nth-child(4) { animation-delay: 1s; }
.title-icon:nth-child(5) { animation-delay: 1.5s; }
.title-icon:nth-child(6) { animation-delay: 2s; }

.title-sub {
    display: block;
    font-size: 0.6rem;
    color: var(--text-secondary);
    margin-top: 10px;
    font-weight: 300;
    position: relative;
}

.title-sub::before {
    content: '🎮';
    margin-right: 10px;
    animation: bounce 2s infinite;
}

.intro {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--accent-primary);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: introGlow 3s ease-in-out infinite;
}

/* About Section Styles */
.about-section {
    margin-bottom: 20px;
    max-width: 100%;
    overflow: hidden;
}

.about-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px var(--shadow-color);
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 0 0 15px var(--glow-color);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.about-text h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.about-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--accent-primary);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.about-stat .stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-shadow: 0 0 10px var(--glow-color);
}

.about-stat .stat-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

/* Mobile Responsive for About Section */
@media (max-width: 768px) {
    .about-section {
        margin-bottom: 15px;
    }
    
    .about-card {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .about-card h2 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-text h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
        margin-top: 1.2rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 0.8rem;
    }
    
    .about-stat {
        flex: 1;
        padding: 0.8rem 0.5rem;
        min-width: 0;
    }
    
    .about-stat .stat-number {
        font-size: 1.5rem;
    }
    
    .about-stat .stat-label {
        font-size: 0.8rem;
        margin-top: 0.2rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        margin-bottom: 10px;
    }
    
    .about-card {
        padding: 0.8rem;
        border-radius: 10px;
        overflow: hidden;
        word-wrap: break-word;
    }
    
    .about-card h2 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .about-content {
        gap: 1rem;
        overflow: hidden;
    }
    
    .about-text {
        overflow: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .about-text h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        margin-top: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .about-text p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        text-align: justify;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 0.6rem;
        overflow: hidden;
    }
    
    .about-stat {
        padding: 0.6rem;
        flex: none;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .about-stat .stat-number {
        font-size: 1.3rem;
    }
    
    .about-stat .stat-label {
        font-size: 0.75rem;
        margin-top: 0.15rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .about-section {
        margin-bottom: 8px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .about-card {
        padding: 0.6rem;
        border-radius: 8px;
        max-width: 100%;
        overflow: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .about-card h2 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .about-content {
        gap: 0.8rem;
        max-width: 100%;
        overflow: hidden;
    }
    
    .about-text {
        max-width: 100%;
        overflow: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .about-text h3 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
        margin-top: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .about-text p {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 0.6rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        text-align: justify;
        max-width: 100%;
    }
    
    .about-stats {
        gap: 0.5rem;
        max-width: 100%;
        overflow: hidden;
    }
    
    .about-stat {
        padding: 0.5rem;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .about-stat .stat-number {
        font-size: 1.2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .about-stat .stat-label {
        font-size: 0.7rem;
        margin-top: 0.1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Ultra small mobile devices */
@media (max-width: 320px) {
    .about-section {
        margin-bottom: 6px;
    }
    
    .about-card {
        padding: 0.4rem;
        border-radius: 6px;
    }
    
    .about-card h2 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .about-content {
        gap: 0.6rem;
    }
    
    .about-text h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
        margin-top: 0.6rem;
    }
    
    .about-text p {
        font-size: 0.8rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    .about-stats {
        gap: 0.4rem;
    }
    
    .about-stat {
        padding: 0.4rem;
    }
    
    .about-stat .stat-number {
        font-size: 1.1rem;
    }
    
    .about-stat .stat-label {
        font-size: 0.65rem;
        margin-top: 0.1rem;
    }
}

.intro p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-primary);
    text-align: center;
}

.intro strong {
    color: var(--accent-primary);
    font-weight: 600;
}

@keyframes introGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        border-color: var(--accent-primary);
    }
    50% {
        box-shadow: 0 0 30px var(--accent-primary);
        border-color: var(--accent-secondary);
    }
}

/* Vote Button Emojis */
.vote-button .button-emoji {
    font-size: 1.5rem;
    margin: 0 0.3rem;
    animation: middleFingerPulse 1s infinite;
}

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

/* Gaming Loader */
.gaming-loader {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 20px 0;
    box-shadow: 0 8px 32px var(--shadow-color);
    backdrop-filter: blur(10px);
    text-align: center;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.loader-icon {
    font-size: 60px;
    animation: gameIconPulse 2s infinite;
}

@keyframes gameIconPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.loader-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.loader-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-primary);
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: textGlow 2s infinite;
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 10px var(--accent-primary); }
    50% { text-shadow: 0 0 20px var(--accent-primary), 0 0 30px var(--accent-primary); }
}

.loader-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    font-style: italic;
}

.loader-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 400px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--accent-primary);
}

.progress-text {
    font-size: 14px;
    color: var(--accent-primary);
    font-weight: bold;
    font-family: 'Orbitron', monospace;
}

/* User Location Info Box */
.user-location-info {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 12px;
    margin: 15px 0;
    box-shadow: 0 4px 15px var(--shadow-color);
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Loading State */
.location-loading {
    text-align: center;
    padding: 20px;
}

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

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

.loading-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.loading-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--accent-primary);
    font-family: 'Orbitron', monospace;
}

.loading-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
}

/* Location Content */
.location-content {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.location-icon {
    font-size: 20px;
    color: var(--accent-primary);
}

.location-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-primary);
    font-family: 'Orbitron', monospace;
}

/* Table Layout */
.location-table {
    width: 100%;
}

.location-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    align-items: start;
}

.location-cell {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    padding: 8px 4px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.location-cell:last-child {
    border-right: none;
}

.location-label {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-value {
    font-size: 12px;
    color: var(--accent-primary);
    font-weight: bold;
    font-family: 'Orbitron', monospace;
    word-break: break-word;
}

/* Responsive */
@media (max-width: 768px) {
    .user-location-info {
        max-width: 100%;
        margin: 20px 10px;
    }
    
    .location-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .location-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .location-cell {
        text-align: center;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 10px 4px;
    }
    
    .location-cell:last-child {
        border-bottom: none;
    }
    
    /* Hide all cells except country on mobile */
    .location-cell:not(:first-child) {
        display: none;
    }
    
    /* Show only country with full width */
    .location-cell:first-child {
        width: 100%;
        text-align: center;
        padding: 15px 8px;
    }
    
    .location-cell:first-child .location-label {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .location-cell:first-child .location-value {
        font-size: 16px;
    }
}

/* Vote Success Notification */
.vote-success-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.vote-success-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.success-content {
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
    border: 2px solid #00ff00;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.success-plus {
    font-size: 2rem;
    animation: successPulse 0.5s ease-out;
}

.success-text {
    font-size: 1.2rem;
}



@keyframes successPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Flying Emojis Animation */
.flying-emoji {
    position: fixed;
    font-size: 2rem;
    pointer-events: none;
    z-index: 999;
    animation: flyAway 3s ease-out forwards;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.8));
}

@keyframes flyAway {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1) rotate(0deg);
        filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.8));
    }
    50% {
        opacity: 0.8;
        transform: translate(calc(var(--random-x, 200px) * 0.5), calc(var(--random-y, -200px) * 0.5)) scale(1.2) rotate(calc(var(--random-rotation, 360deg) * 0.5));
        filter: drop-shadow(0 0 15px rgba(255, 0, 0, 1));
    }
    100% {
        opacity: 0;
        transform: translate(var(--random-x, 200px), var(--random-y, -200px)) scale(0.3) rotate(var(--random-rotation, 360deg));
        filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.3));
    }
}

/* Epic Secret Emojis */
.epic-emoji {
    animation: epicFlyAway 4s ease-out forwards;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1));
}

@keyframes epicFlyAway {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1) rotate(0deg);
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1));
    }
    25% {
        opacity: 1;
        transform: translate(calc(var(--random-x, 200px) * 0.25), calc(var(--random-y, -200px) * 0.25)) scale(1.5) rotate(calc(var(--random-rotation, 360deg) * 0.25));
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1));
    }
    50% {
        opacity: 0.9;
        transform: translate(calc(var(--random-x, 200px) * 0.5), calc(var(--random-y, -200px) * 0.5)) scale(1.8) rotate(calc(var(--random-rotation, 360deg) * 0.5));
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1));
    }
    100% {
        opacity: 0;
        transform: translate(var(--random-x, 200px), var(--random-y, -200px)) scale(0.2) rotate(var(--random-rotation, 360deg));
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    }
}

/* Secret Notifications */
.secret-notification .secret-content {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    border: 2px solid #ffd700;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
    animation: secretPulse 0.8s ease-out;
}

/* Epic +30 Vote Notifications */
.secret-notification.epic-30 .secret-content {
    background: linear-gradient(45deg, #ff6b6b, #ffd700, #4ecdc4, #45b7d1);
    background-size: 400% 400%;
    animation: secretPulse 0.8s ease-out, epicGradient 2s ease-in-out infinite;
    border: 3px solid #ffd700;
    box-shadow: 0 0 60px rgba(255, 215, 0, 1), 0 0 100px rgba(255, 107, 107, 0.6);
    font-weight: 900;
    font-size: 1.2rem;
}

@keyframes secretPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

@keyframes epicGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive adjustments for vote button and notifications */
@media (max-width: 768px) {
    .vote-button .button-emoji {
        font-size: 1.2rem;
    }
    
    .vote-success-notification {
        top: 10px;
        right: 10px;
    }
    
    .success-content {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .success-plus {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .vote-button .button-emoji {
        font-size: 1rem;
    }
    
    .success-content {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .success-plus {
        font-size: 1.3rem;
    }
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
    position: relative;
}

.tagline::before {
    content: '🔥';
    margin-right: 8px;
    animation: flicker 1.5s infinite alternate;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes flicker {
    0% { opacity: 1; }
    100% { opacity: 0.7; }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Stats Section */
.stats-section {
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::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;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px var(--shadow-color);
    border-color: var(--accent-secondary);
}

.stat-card:nth-child(1)::after { content: '⚔️'; }
.stat-card:nth-child(2)::after { content: '🔥'; }
.stat-card:nth-child(3)::after { content: '⚡'; }
.stat-card:nth-child(4)::after { content: '🎮'; }
.stat-card:nth-child(5)::after { content: '🌍'; }
.stat-card:nth-child(6)::after { content: '💬'; }

.stat-card::after {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-secondary);
    margin-bottom: 8px;
    text-shadow: 0 0 15px var(--glow-color);
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

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

/* Action Section */
.action-section {
    margin-bottom: 40px;
}

.action-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.action-card h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-primary);
    position: relative;
    z-index: 2;
}

.action-card h2::before {
    content: '🎯';
    margin-right: 15px;
    animation: spin 4s linear infinite;
}

.action-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.spam-text {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
    font-style: italic;
    margin-top: 5px !important;
    margin-bottom: 10px !important;
    opacity: 0.7;
}

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

.vote-section {
    margin-bottom: 30px;
}

.vote-button {
    background: linear-gradient(45deg, var(--accent-primary), #ff8e8e);
    border: none;
    border-radius: 50px;
    padding: 20px 25%;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px var(--glow-color);
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.vote-button:hover::before {
    left: 100%;
}

.vote-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px var(--glow-color);
    background: linear-gradient(45deg, #ff5252, #ff7979);
}

.vote-button:active {
    transform: translateY(-1px) scale(0.98);
}

.vote-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.button-icon {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

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

.vote-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vote-message.success {
    background: rgba(107, 207, 127, 0.2);
    color: #6bcf7f;
    border: 1px solid rgba(107, 207, 127, 0.3);
    opacity: 1;
}

.vote-message.error {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
    opacity: 1;
}



/* World Map Section */
.map-section {
    margin-bottom: 40px;
}

.map-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px var(--shadow-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.map-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.map-card h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-primary);
    position: relative;
    z-index: 2;
}

.map-card > p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.map-container {
    position: relative;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.world-map {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

/* Leaflet map styling */
.leaflet-container {
    background: var(--map-bg) !important;
    border-radius: 13px;
}

/* Mobile responsive map section */
@media (max-width: 768px) {
    .map-card {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .map-card h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .map-card > p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .world-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .map-card {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .map-card h2 {
        font-size: 1.3rem;
    }
    
    .world-map {
        height: 250px;
    }
}

/* Custom gun sight icon */
.gun-sight-icon {
    background: transparent;
    border: none;
}

.gun-sight-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, transparent 8px, #ff0000 8px, #ff0000 10px, transparent 10px);
    border: 2px solid #ff0000;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

.gun-sight-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: 
        linear-gradient(90deg, transparent 12px, #ff0000 12px, #ff0000 18px, transparent 18px),
        linear-gradient(0deg, transparent 12px, #ff0000 12px, #ff0000 18px, transparent 18px);
    border-radius: 50%;
    animation: crosshairPulse 2s infinite;
}

@keyframes crosshairPulse {
    0%, 100% { 
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.05);
    }
}





/* 🔥 Compact Theme-Aware Resistance Rankings with Flame Effects */
.countries-list-container {
    margin-top: 15px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 15px;
    box-shadow: 0 4px 15px var(--shadow-color);
    backdrop-filter: blur(10px);
}



.countries-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}



.countries-list-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.countries-count {
    background: var(--accent-primary);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Top 3 Champions - Compact Single Line */
.top-3-champions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px 15px;
    background: var(--bg-secondary);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    position: relative;
}



.champion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

/* 🔥 EPIC Flame Effects for Top 3 Champions */
.champion-item {
    position: relative;
    overflow: visible;
    /* Performance optimizations */
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.champion-item::before {
    content: '';
    position: absolute;
    top: 0px; /* No overflow - contained within div */
    left: 0px; /* No overflow - contained within div */
    right: 0px; /* No overflow - contained within div */
    bottom: 0px; /* No overflow - contained within div */
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    pointer-events: none;
}

/* 🥇 GOLD CHAMPION - Ring of Fire */
.champion-item:nth-child(1)::before {
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.6) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 69, 0, 0.4) 0%, transparent 60%);
    animation: goldRingOfFire 3s ease-in-out infinite;
    filter: blur(1px);
}

@keyframes goldRingOfFire {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1);
        filter: blur(0.5px) brightness(1);
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.005); /* Very subtle scale */
        filter: blur(1px) brightness(1.1);
    }
}

/* 🥈 SILVER CHAMPION - Electric Plasma Field */
.champion-item:nth-child(2)::before {
    background: 
        radial-gradient(circle at 30% 30%, rgba(135, 206, 250, 0.7) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 191, 255, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(70, 130, 180, 0.4) 0%, transparent 60%);
    animation: silverPlasmaField 2.5s ease-in-out infinite;
    filter: blur(1px);
}

@keyframes silverPlasmaField {
    0%, 100% { 
        opacity: 0.2; 
        transform: scale(1);
        filter: blur(0.5px) brightness(1);
    }
    50% { 
        opacity: 0.5; 
        transform: scale(1.005); /* Very subtle scale */
        filter: blur(1px) brightness(1.1);
    }
}

/* 🥉 BRONZE CHAMPION - Ember Storm */
.champion-item:nth-child(3)::before {
    background: 
        radial-gradient(circle at 25% 25%, rgba(205, 127, 50, 0.6) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 140, 0, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 69, 19, 0.4) 0%, transparent 60%);
    animation: bronzeEmberStorm 3.5s ease-in-out infinite;
    filter: blur(1px);
}

@keyframes bronzeEmberStorm {
    0%, 100% { 
        opacity: 0.2; 
        transform: scale(1);
        filter: blur(0.5px) brightness(1);
    }
    50% { 
        opacity: 0.5; 
        transform: scale(1.005); /* Very subtle scale */
        filter: blur(1px) brightness(1.1);
    }
}

.champion-item:hover::before {
    opacity: 1;
    animation-play-state: paused;
}

/* 🔥 Additional Flame Particles */
.champion-item::after {
    content: '';
    position: absolute;
    top: 0px; /* No overflow - contained within div */
    left: 0px; /* No overflow - contained within div */
    right: 0px; /* No overflow - contained within div */
    bottom: 0px; /* No overflow - contained within div */
    pointer-events: none;
    z-index: -2;
}

/* Gold Champion - Floating Embers */
.champion-item:nth-child(1)::after {
    background: 
        radial-gradient(circle at 10% 10%, rgba(255, 215, 0, 0.4) 0%, transparent 20%),
        radial-gradient(circle at 90% 90%, rgba(255, 165, 0, 0.3) 0%, transparent 20%),
        radial-gradient(circle at 50% 20%, rgba(255, 69, 0, 0.3) 0%, transparent 20%);
    animation: floatingEmbers 4s ease-in-out infinite;
}

@keyframes floatingEmbers {
    0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
    50% { opacity: 0.6; transform: translateY(-10px) scale(1.2); }
}

/* Silver Champion - Electric Sparks */
.champion-item:nth-child(2)::after {
    background: 
        radial-gradient(circle at 20% 20%, rgba(135, 206, 250, 0.4) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(0, 191, 255, 0.3) 0%, transparent 20%),
        radial-gradient(circle at 50% 80%, rgba(70, 130, 180, 0.3) 0%, transparent 20%);
    animation: electricSparks 3s ease-in-out infinite;
}

@keyframes electricSparks {
    0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
    50% { opacity: 0.5; transform: translateY(-8px) scale(1.1); }
}

/* Bronze Champion - Heat Waves */
.champion-item:nth-child(3)::after {
    background: 
        radial-gradient(circle at 30% 30%, rgba(205, 127, 50, 0.4) 0%, transparent 20%),
        radial-gradient(circle at 70% 70%, rgba(255, 140, 0, 0.3) 0%, transparent 20%),
        radial-gradient(circle at 50% 60%, rgba(139, 69, 19, 0.3) 0%, transparent 20%);
    animation: heatWaves 5s ease-in-out infinite;
}

@keyframes heatWaves {
    0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
    50% { opacity: 0.4; transform: translateY(-6px) scale(1.15); }
}

.champion-flag {
    font-size: 2rem;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

/* 3D Flag Effects */
.champion-flag::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    filter: blur(4px) brightness(0.8);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateZ(-10px);
    z-index: -1;
    opacity: 0.6;
}

.champion-flag::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.champion-item:hover .champion-flag {
    transform: perspective(1000px) rotateY(-20deg) rotateX(10deg) scale(1.1);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.6));
}

.champion-item:hover .champion-flag::after {
    opacity: 1;
}

.champion-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.champion-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}

.champion-votes {
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent-secondary);
}

.champion-rank {
    background: var(--accent-primary);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 6px 16px var(--shadow-color);
}

.countries-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-height: 300px; /* Increased height to accommodate more countries dynamically */
    overflow-y: auto;
    padding-right: 8px;
}

/* Ensure exactly 3 rows are visible */
.countries-list::after {
    content: '';
    grid-column: 1 / -1;
    height: 0;
    visibility: hidden;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px; /* Reduced padding to make them more compact */
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    text-align: left;
}

.country-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--shadow-color);
    border-color: var(--accent-primary);
}

.country-item.top-3 {
    background: linear-gradient(135deg, var(--bg-secondary), var(--accent-primary));
    border-color: var(--accent-primary);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.country-item.top-3 .country-name {
    color: var(--text-primary);
    font-weight: 700;
}

.country-item.top-3 .country-votes {
    color: var(--accent-secondary);
    font-weight: 600;
}

.top-3-rank {
    background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
    color: #333 !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4) !important;
}

.country-flag {
    font-size: 1.1rem; /* Smaller flag to reduce card height */
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.country-info {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the name and votes */
    gap: 2px;
    flex: 1;
    min-width: 0;
    text-align: center; /* Center the text */
}

.country-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem; /* Smaller to reduce height */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.country-votes {
    color: var(--text-secondary);
    font-size: 0.8rem; /* Smaller to reduce height */
    font-weight: 600;
}

.country-rank {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align number to the right */
    min-width: 40px;
    margin-left: auto; /* Push to the right */
}

.rank-number {
    background: var(--accent-primary);
    color: white;
    padding: 6px 10px; /* Smaller padding to reduce height */
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem; /* Smaller font to reduce height */
    box-shadow: 0 2px 6px var(--shadow-color); /* Smaller shadow */
}

.no-countries {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    padding: 20px;
    font-size: 0.9rem;
}

/* Placeholder for missing countries */
.country-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px 4px;
    background: var(--bg-secondary);
    border: 2px dashed var(--border-color);
    border-radius: 6px;
    text-align: center;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.country-placeholder:hover {
    opacity: 1;
    border-color: var(--accent-primary);
}

.placeholder-text {
    color: var(--text-secondary);
    font-size: 0.6rem;
    font-style: italic;
    line-height: 1.2;
}

.placeholder-rank {
    background: var(--border-color);
    color: var(--text-secondary);
    padding: 2px 5px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.5rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .top-3-champions {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .champion-item {
        width: 100%;
        justify-content: center;
    }
    
    .countries-list {
        max-height: 400px; /* Increased height for more countries on mobile */
    }
    
    .countries-list-container {
        padding: 12px;
        margin-top: 12px;
    }
    
    .countries-list-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .countries-list {
        max-height: 500px; /* Increased height for more countries on small mobile */
    }
}

/* Map Markers */
.flame-icon {
    animation: flameGlow 2s ease-in-out infinite alternate;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(255, 69, 0, 0.6));
}

.flame-icon:hover {
    transform: perspective(1000px) rotateY(-20deg) rotateX(10deg) scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(255, 69, 0, 0.8));
}

/* All country items now have consistent styling */

@keyframes flameGlow {
    0% { filter: drop-shadow(0 2px 4px rgba(255, 69, 0, 0.5)) brightness(1); }
    100% { filter: drop-shadow(0 4px 8px rgba(255, 69, 0, 0.8)) brightness(1.2); }
}

/* Scrollbar */
.countries-list::-webkit-scrollbar {
    width: 6px;
}

.countries-list::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 3px;
}

.countries-list::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 3px;
}

.countries-list::-webkit-scrollbar-thumb:hover {
    background: var(--accent-secondary);
}

/* Mobile responsive countries list */
@media (max-width: 768px) {
    .countries-list-container {
        padding: 12px; /* Smaller padding */
        margin-top: 12px; /* Smaller margin */
    }
    
    .countries-list-title {
        font-size: 1rem; /* Smaller title */
    }
    
    .countries-count {
        font-size: 0.8rem; /* Smaller count */
        padding: 4px 8px; /* Smaller padding */
    }
    
    /* Top 3 champions - always visible on mobile */
    .top-3-champions {
        gap: 8px; /* Smaller gap */
        padding: 12px; /* Smaller padding */
    }
    
    .champion-item {
        gap: 8px; /* Smaller gap */
        padding: 10px 12px; /* Smaller padding */
    }
    
    .champion-flag {
        font-size: 1.2rem; /* Smaller flag */
    }
    
    .champion-name {
        font-size: 0.9rem; /* Smaller name */
    }
    
    .champion-votes {
        font-size: 0.8rem; /* Smaller votes */
    }
    
    .champion-rank {
        width: 28px; /* Smaller medal */
        height: 28px;
        font-size: 0.8rem;
    }
    
    /* Other countries - hidden by default on mobile */
    .countries-list {
        display: none; /* Hidden by default on mobile */
        max-height: none; /* Remove height limit */
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 8px; /* Smaller gap */
    }
    
    .country-item {
        padding: 8px 10px; /* Smaller padding */
        gap: 8px; /* Smaller gap */
    }
    
    .country-flag {
        font-size: 1rem; /* Smaller flag */
    }
    
    .country-name {
        font-size: 0.8rem; /* Smaller name */
    }
    
    .country-votes {
        font-size: 0.7rem; /* Smaller votes */
    }
    
    .rank-number {
        padding: 4px 8px; /* Smaller padding */
        font-size: 0.7rem; /* Smaller font */
    }
    
    /* Show all countries button - mobile only */
    .show-all-countries-btn {
        display: block;
        width: 100%;
        padding: 10px;
        margin-top: 10px;
        background: var(--accent-primary);
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .show-all-countries-btn:hover {
        background: var(--accent-secondary);
        transform: translateY(-1px);
    }
    
    .show-all-countries-btn.hidden {
        display: none;
    }
    
    .show-all-countries-btn.active {
        background: var(--accent-secondary);
        transform: translateY(-1px);
    }
}

@media (max-width: 480px) {
    .countries-list-container {
        padding: 12px;
    }
    
    .countries-list-title {
        font-size: 1.1rem;
    }
    
    .country-item {
        padding: 10px;
        gap: 10px;
    }
    
    .country-flag {
        font-size: 1.3rem;
    }
    
    .rank-number {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
}

/* Leaflet popup styling */
.leaflet-popup-content-wrapper {
    background: var(--bg-card) !important;
    color: var(--text-primary) !important;
    border: 2px solid var(--border-color) !important;
    border-radius: 10px !important;
    box-shadow: 0 5px 20px var(--shadow-color) !important;
    backdrop-filter: blur(10px) !important;
}

.leaflet-popup-content {
    margin: 10px !important;
    font-family: 'Orbitron', monospace !important;
}

.leaflet-popup-tip {
    background: var(--bg-card) !important;
    border: 2px solid var(--border-color) !important;
}

.leaflet-popup-close-button {
    color: var(--text-primary) !important;
    font-size: 18px !important;
    font-weight: bold !important;
}

.leaflet-popup-close-button:hover {
    color: var(--accent-primary) !important;
}

/* Map markers */
.map-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.map-marker::before {
    content: '🎯';
    font-size: 20px;
    display: block;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.8));
    animation: markerPulse 2s infinite;
}

.map-marker.high-activity::before {
    content: '🔥';
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 1));
}

.map-marker:hover {
    transform: scale(1.3);
}

.map-marker:hover::before {
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 1));
}

@keyframes markerPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.8));
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 8px rgba(255, 0, 0, 1));
    }
}

/* Map tooltip */
.map-tooltip {
    position: absolute;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px var(--shadow-color);
    font-size: 0.9rem;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.map-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

.map-tooltip .country-name {
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 4px;
}

.map-tooltip .vote-count {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Map legend */
.map-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.legend-marker {
    font-size: 1.2rem;
}

.legend-text {
    font-weight: 500;
}

/* Map stats */
.map-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    flex-wrap: wrap;
}

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

.map-stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-secondary);
    margin-bottom: 5px;
    text-shadow: 0 0 10px var(--glow-color);
}

.map-stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile responsive map */
@media (max-width: 768px) {
    .map-card {
        padding: 25px;
    }
    
    .world-map {
        height: 300px;
    }
    
    .map-legend {
        flex-direction: column;
        gap: 15px;
    }
    
    .map-stats {
        gap: 20px;
    }
    
    .map-stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .world-map {
        height: 250px;
    }
    
    .map-stats {
        flex-direction: column;
        gap: 15px;
    }
}

/* Secret Game Section */
.secret-game-section {
    margin-bottom: 40px;
}

.secret-game-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px var(--shadow-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.secret-game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.secret-game-card h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-primary);
    position: relative;
    z-index: 2;
}

.secret-game-card > p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.secret-hints-toggle {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.hints-toggle-btn {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    color: var(--bg-primary);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hints-toggle-btn::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;
}

.hints-toggle-btn:hover::before {
    left: 100%;
}

.hints-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.hints-toggle-btn:active {
    transform: translateY(0);
}

.secret-hints {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

/* Mobile responsive secret game section */
@media (max-width: 768px) {
    .secret-game-card {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .secret-game-card h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .secret-game-card > p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .secret-game-card {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .secret-game-card h2 {
        font-size: 1.3rem;
    }
}

.hint-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.hint-key {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    color: var(--accent-warning);
    background: rgba(255, 215, 0, 0.2);
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid var(--accent-warning);
    min-width: 80px;
    text-align: center;
}

.hint-text {
    color: var(--text-primary);
    font-size: 0.9rem;
}

.hidden-hint {
    opacity: 0.6;
    border-style: dashed;
}

.hidden-hint .hint-key {
    opacity: 0.7;
}

.hidden-hint .hint-text {
    font-style: italic;
    opacity: 0.8;
}

.secret-status {
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid var(--accent-secondary);
    position: relative;
    z-index: 2;
}

#secretStatus {
    color: var(--accent-secondary);
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Comments Section */
.comments-section {
    margin-bottom: 40px;
}

.comments-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px var(--shadow-color);
}

.comments-card h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-primary);
    text-align: center;
}

.comments-card > p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.comment-form {
    margin-bottom: 40px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 15px 20px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    resize: vertical;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--glow-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    min-height: 120px;
}

/* Captcha Styling */
.captcha-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.captcha-question {
    flex: 1;
    min-width: 120px;
}

.captcha-question span {
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    color: var(--accent-primary);
    font-size: 1.1rem;
    background: rgba(255, 107, 107, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--accent-primary);
    display: inline-block;
    min-width: 80px;
    text-align: center;
}

.captcha-group input[type="number"] {
    width: 240px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.captcha-group input[type="number"]:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--glow-color);
}

.captcha-group input[type="number"]::placeholder {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.refresh-captcha {
    background: linear-gradient(45deg, var(--accent-secondary), var(--accent-success));
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.refresh-captcha:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(77, 157, 224, 0.3);
    background: linear-gradient(45deg, #4d9de0, #6bcf7f);
}

.refresh-captcha:active {
    transform: translateY(0);
}

/* Mobile responsive captcha */
@media (max-width: 768px) {
    .captcha-group {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .captcha-question {
        text-align: center;
    }
    
    .captcha-group input[type="number"] {
        width: 100%;
        max-width: 120px;
        margin: 0 auto;
    }
    
    .refresh-captcha {
        width: 100%;
        max-width: 120px;
        margin: 0 auto;
    }
}

/* Mobile responsive comments section */
@media (max-width: 768px) {
    .comments-card {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .comments-card h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .comments-card > p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .submit-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .comment-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .comment-meta {
        gap: 6px;
    }
    
    .comment-flag {
        font-size: 1rem;
    }
    
    .comment-name {
        font-size: 0.9rem;
        padding: 3px 6px;
    }
    
    .comment-time {
        font-size: 0.8rem;
    }
    
    .comment-text {
        font-size: 0.95rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .comments-card {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .comments-card h2 {
        font-size: 1.3rem;
    }
    
    .captcha-group {
        padding: 12px;
        gap: 8px;
    }
    
    .captcha-question span {
        font-size: 1rem;
        padding: 6px 10px;
    }
    
    .captcha-group input[type="number"] {
        max-width: 100px;
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .refresh-captcha {
        max-width: 100px;
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .comment-item {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .comment-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

.submit-button {
    background: linear-gradient(45deg, #4d9de0, #6bcf7f);
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(77, 157, 224, 0.3);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.comments-list {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.comment-item {
    background: var(--bg-card-hover);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-primary);
    transition: transform 0.2s ease;
    box-shadow: 0 2px 8px var(--shadow-color);
}

.comment-item:hover {
    transform: translateX(5px);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-flag {
    font-size: 1.2rem;
    cursor: help;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.comment-name {
    font-weight: 600;
    color: var(--accent-primary);
    font-family: 'Orbitron', monospace;
    background: rgba(0, 0, 0, 0.45);
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
}

.comment-time {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.comment-text {
    color: var(--text-primary);
    line-height: 1.6;
    word-wrap: break-word;
    background: rgba(0, 0, 0, 0.005);
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 8px;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 2px solid var(--border-color);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.footer-section h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: var(--accent-primary);
    margin-bottom: 15px;
    text-align: center;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-btn {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    color: var(--bg-primary);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    align-self: center;
    margin-top: auto;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hidden-email {
    margin-top: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.hidden-email p {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.hidden-email input {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: 5px;
    margin: 0 10px;
    width: 60px;
    text-align: center;
}

.hidden-email button {
    background: linear-gradient(45deg, var(--accent-warning), #ffed4e);
    color: #000;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hidden-email button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

#contactResult, #complaintResult {
    margin-top: 10px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    color: var(--accent-primary);
}

.footer-mobile-toggle {
    display: none;
    text-align: center;
    padding: 20px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.footer-toggle-btn {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    color: var(--bg-primary);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.footer-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-subtitle {
        font-size: 1rem;
        margin: 6px 0;
    }
    
    .title-icon {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
        margin: 8px 0;
    }
    
    .denuvo-info {
        font-size: 1.2rem !important;
        margin: 10px 0 !important;
    }
    
    .clickable-circle {
        width: 24px;
        height: 24px;
        font-size: 14px;
        margin-left: 6px;
    }
    
    .intro {
        margin-top: 1rem;
        padding: 0.8rem;
        max-width: 90%;
    }
    
    .intro p {
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .action-card,
    .comments-card {
        padding: 25px;
    }
    
    .vote-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Footer mobile */
    .footer-content {
        display: none;
    }
    
    .footer-mobile-toggle {
        display: block;
    }
    
    .footer.show-mobile .footer-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .footer.show-mobile .footer-section {
        min-height: auto;
    }
    
    .footer.show-mobile .footer-section p {
        text-align: left;
        margin-bottom: 15px;
    }
    
    .footer.show-mobile .footer-section h3 {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 2rem;
    }
    
    .title-subtitle {
        font-size: 0.9rem;
        margin: 4px 0;
    }
    
    .title-icon {
        font-size: 1.2rem;
        margin: 0 0.2rem;
    }
    
    .subtitle {
        font-size: 0.8rem;
        margin: 6px 0;
    }
    
    .denuvo-info {
        font-size: 1rem !important;
        margin: 8px 0 !important;
    }
    
    .clickable-circle {
        width: 20px;
        height: 20px;
        font-size: 12px;
        margin-left: 4px;
    }
    
    .intro {
        margin-top: 0.8rem;
        padding: 0.6rem;
        max-width: 95%;
    }
    
    .intro p {
        font-size: 0.85rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .action-card,
    .comments-card {
        padding: 20px;
    }
    
    .vote-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Scrollbar Styling - Default Dark Theme */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 16px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.4);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff5252, #4d9de0);
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.6);
    transform: scale(1.05);
}

::-webkit-scrollbar-corner {
    background: rgba(255, 255, 255, 0.1);
}

/* Firefox scrollbar */
html {
    scrollbar-width: thick;
    scrollbar-color: var(--accent-primary) rgba(255, 255, 255, 0.1);
}

/* Default Dark Theme Map */
:root {
    --map-bg: #000000;
}

/* Theme Definitions */
body.theme-light {
    --bg-primary: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 25%, #dee2e6 50%, #ced4da 75%, #f8f9fa 100%);
    --bg-secondary: rgba(255, 255, 255, 0.9);
    --bg-card: rgba(255, 255, 255, 0.8);
    --bg-card-hover: rgba(255, 255, 255, 0.9);
    --text-primary: #212529;
    --text-secondary: #495057;
    --text-muted: #6c757d;
    --accent-primary: #dc3545;
    --accent-secondary: #007bff;
    --accent-success: #28a745;
    --accent-warning: #ffc107;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --glow-color: rgba(220, 53, 69, 0.3);
}

body.theme-light::before {
    background: 
        radial-gradient(circle at 20% 80%, rgba(220, 53, 69, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(40, 167, 69, 0.05) 0%, transparent 50%);
}

body.theme-light::after {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
}

/* Light Theme Scrollbar */
body.theme-light ::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 0, 0, 0.2);
}

/* Light Theme Map */
body.theme-light {
    --map-bg: #ffffff;
    scrollbar-color: #dc3545 rgba(0, 0, 0, 0.1);
}

body.theme-light ::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #dc3545, #007bff);
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.4);
}

body.theme-light ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #c82333, #0056b3);
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.6);
}

body.theme-light ::-webkit-scrollbar-corner {
    background: rgba(0, 0, 0, 0.1);
}

/* Light Theme Firefox */
body.theme-light {
    scrollbar-color: #dc3545 rgba(0, 0, 0, 0.1);
}

/* Light Theme Loading Screen */
body.theme-light .drive-loading-screen {
    background: var(--bg-primary);
}

body.theme-light .loading-container {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body.theme-light .loading-content h1 {
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(220, 53, 69, 0.3);
}

body.theme-light .progress-fill {
    background: linear-gradient(90deg, #dc3545, #007bff);
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.4);
}

body.theme-light .step.active {
    color: #dc3545;
    text-shadow: 0 0 10px rgba(220, 53, 69, 0.4);
}

body.theme-retro {
    --bg-primary: linear-gradient(135deg, #1a0033 0%, #2d1b69 25%, #11998e 50%, #38ef7d 75%, #1a0033 100%);
    --bg-secondary: rgba(26, 0, 51, 0.9);
    --bg-card: rgba(17, 153, 142, 0.15);
    --bg-card-hover: rgba(17, 153, 142, 0.25);
    --text-primary: #ffffff;
    --text-secondary: #a8e6cf;
    --text-muted: #88d8a3;
    --accent-primary: #ff6b6b;
    --accent-secondary: #38ef7d;
    --accent-success: #11998e;
    --accent-warning: #ffd93d;
    --border-color: rgba(56, 239, 125, 0.4);
    --shadow-color: rgba(26, 0, 51, 0.6);
    --glow-color: rgba(56, 239, 125, 0.5);
}

body.theme-retro::before {
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(56, 239, 125, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(17, 153, 142, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(45, 27, 105, 0.1) 0%, transparent 50%);
}

body.theme-retro::after {
    background-image: 
        linear-gradient(rgba(56, 239, 125, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 239, 125, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Retro Theme Scrollbar */
body.theme-retro ::-webkit-scrollbar-track {
    background: rgba(56, 239, 125, 0.15);
    border: 2px solid rgba(56, 239, 125, 0.3);
}

body.theme-retro ::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff6b6b, #38ef7d);
    box-shadow: 0 0 15px rgba(56, 239, 125, 0.5);
}

body.theme-retro ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff5252, #2dd4bf);
    box-shadow: 0 0 20px rgba(56, 239, 125, 0.7);
}

body.theme-retro ::-webkit-scrollbar-corner {
    background: rgba(56, 239, 125, 0.15);
}

/* Retro Theme Firefox */
body.theme-retro {
    scrollbar-color: #38ef7d rgba(56, 239, 125, 0.15);
}

/* Retro Theme Loading Screen */
body.theme-retro .drive-loading-screen {
    background: var(--bg-primary);
}

body.theme-retro .loading-container {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(56, 239, 125, 0.2);
}

body.theme-retro .loading-content h1 {
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(56, 239, 125, 0.5);
}

body.theme-retro .progress-fill {
    background: linear-gradient(90deg, #ff6b6b, #38ef7d);
    box-shadow: 0 0 10px rgba(56, 239, 125, 0.6);
}

body.theme-retro .step.active {
    color: #38ef7d;
    text-shadow: 0 0 10px rgba(56, 239, 125, 0.6);
}

/* Retro theme specific animations */
body.theme-retro .title-main {
    animation: retroGlow 2s ease-in-out infinite alternate;
}

body.theme-retro .stat-card {
    border: 2px solid var(--border-color);
    box-shadow: 0 0 20px var(--glow-color);
}

body.theme-retro .vote-button {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    box-shadow: 0 0 30px var(--glow-color);
}

body.theme-retro .action-card,
body.theme-retro .comments-card {
    border: 2px solid var(--border-color);
    box-shadow: 0 0 25px var(--glow-color);
}

@keyframes retroGlow {
    0% { 
        text-shadow: 0 0 20px var(--accent-secondary), 0 0 30px var(--accent-secondary), 0 0 40px var(--accent-secondary);
    }
    100% { 
        text-shadow: 0 0 10px var(--accent-secondary), 0 0 20px var(--accent-secondary), 0 0 30px var(--accent-secondary);
    }
}

/* Theme notification */
.theme-notification {
    position: fixed;
    top: 220px;
    left: 20px;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--accent-secondary);
    box-shadow: 0 3px 10px var(--shadow-color);
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    text-align: center;
    z-index: 2000;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 0.7rem;
    min-width: 320px;
    transform: translateY(-10px);
}

.theme-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.theme-notification::before {
    content: '🎨';
    margin-right: 8px;
    font-size: 1rem;
}

/* Light theme specific adjustments */
body.theme-light .title-main {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-warning), var(--accent-success), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cyberpunk Theme */
body.theme-cyberpunk {
    --bg-primary: linear-gradient(135deg, #0a0a0a 0%, #1a0033 25%, #2d1b69 50%, #0a0a0a 75%, #000000 100%);
    --bg-secondary: rgba(0, 0, 0, 0.9);
    --bg-card: rgba(255, 0, 255, 0.1);
    --bg-card-hover: rgba(255, 0, 255, 0.2);
    --text-primary: #00ffff;
    --text-secondary: #ff00ff;
    --text-muted: #00ff00;
    --accent-primary: #ff0080;
    --accent-secondary: #00ffff;
    --accent-success: #00ff00;
    --accent-warning: #ffff00;
    --border-color: rgba(0, 255, 255, 0.5);
    --shadow-color: rgba(255, 0, 255, 0.3);
    --glow-color: rgba(0, 255, 255, 0.6);
}

body.theme-cyberpunk::before {
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 128, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(255, 255, 0, 0.1) 0%, transparent 50%);
}

body.theme-cyberpunk::after {
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: cyberpunkGrid 10s linear infinite;
}

/* Cyberpunk Theme Scrollbar */
body.theme-cyberpunk ::-webkit-scrollbar-track {
    background: rgba(0, 255, 255, 0.15);
    border: 2px solid rgba(0, 255, 255, 0.4);
}

body.theme-cyberpunk ::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff0080, #00ffff);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

body.theme-cyberpunk ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff0066, #00cccc);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

body.theme-cyberpunk ::-webkit-scrollbar-corner {
    background: rgba(0, 255, 255, 0.15);
}

/* Cyberpunk Theme Firefox */
body.theme-cyberpunk {
    scrollbar-color: #00ffff rgba(0, 255, 255, 0.15);
}

/* Cyberpunk Theme Loading Screen */
body.theme-cyberpunk .drive-loading-screen {
    background: var(--bg-primary);
}

body.theme-cyberpunk .loading-container {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

body.theme-cyberpunk .loading-content h1 {
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

body.theme-cyberpunk .progress-fill {
    background: linear-gradient(90deg, #ff0080, #00ffff);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

body.theme-cyberpunk .step.active {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

@keyframes cyberpunkGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

/* Cyberpunk specific effects */
body.theme-cyberpunk .title-main {
    animation: cyberpunkGlow 1.5s ease-in-out infinite alternate;
    text-shadow: 0 0 20px var(--accent-secondary), 0 0 40px var(--accent-secondary), 0 0 60px var(--accent-secondary);
}

body.theme-cyberpunk .stat-card,
body.theme-cyberpunk .action-card,
body.theme-cyberpunk .comments-card {
    border: 2px solid var(--border-color);
    box-shadow: 0 0 20px var(--glow-color);
    position: relative;
}

body.theme-cyberpunk .stat-card::before,
body.theme-cyberpunk .action-card::before,
body.theme-cyberpunk .comments-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.1) 50%, transparent 70%);
    animation: cyberpunkScan 3s linear infinite;
    pointer-events: none;
}

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

@keyframes cyberpunkGlow {
    0% { 
        text-shadow: 0 0 20px var(--accent-secondary), 0 0 40px var(--accent-secondary), 0 0 60px var(--accent-secondary);
    }
    100% { 
        text-shadow: 0 0 10px var(--accent-secondary), 0 0 20px var(--accent-secondary), 0 0 30px var(--accent-secondary);
    }
}

/* Glitch Theme 1 - VHS Glitch */
body.theme-glitch {
    --bg-primary: linear-gradient(135deg, #000000 0%, #1a0033 25%, #330066 50%, #1a0033 75%, #000000 100%);
    --bg-secondary: rgba(0, 0, 0, 0.95);
    --bg-card: rgba(255, 0, 0, 0.1);
    --bg-card-hover: rgba(255, 0, 0, 0.2);
    --text-primary: #ff0000;
    --text-secondary: #00ff00;
    --text-muted: #0000ff;
    --accent-primary: #ff0000;
    --accent-secondary: #00ff00;
    --accent-success: #0000ff;
    --accent-warning: #ffff00;
    --border-color: rgba(255, 0, 0, 0.5);
    --shadow-color: rgba(0, 0, 0, 0.8);
    --glow-color: rgba(255, 0, 0, 0.6);
}

body.theme-glitch::before {
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 0, 255, 0.1) 0%, transparent 50%);
    animation: vhsStatic 0.1s infinite;
}

body.theme-glitch::after {
    background-image: 
        linear-gradient(rgba(255, 0, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: vhsScanlines 0.05s linear infinite;
}

/* Glitch Theme Scrollbar */
body.theme-glitch ::-webkit-scrollbar-track {
    background: rgba(255, 0, 0, 0.15);
    border: 2px solid rgba(255, 0, 0, 0.4);
}

body.theme-glitch ::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff0000, #00ff00);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

body.theme-glitch ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #cc0000, #00cc00);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
}

body.theme-glitch ::-webkit-scrollbar-corner {
    background: rgba(255, 0, 0, 0.15);
}

/* Glitch Theme Firefox */
body.theme-glitch {
    scrollbar-color: #ff0000 rgba(255, 0, 0, 0.15);
}

/* Glitch Theme Loading Screen */
body.theme-glitch .drive-loading-screen {
    background: var(--bg-primary);
}

body.theme-glitch .loading-container {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
}

body.theme-glitch .loading-content h1 {
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

body.theme-glitch .progress-fill {
    background: linear-gradient(90deg, #ff0000, #00ff00);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

body.theme-glitch .step.active {
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

@keyframes vhsStatic {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes vhsScanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

/* VHS Glitch specific effects */
body.theme-glitch .title-main {
    animation: vhsGlitch 3s ease-in-out infinite;
    position: relative;
    filter: contrast(1.2) brightness(1.1);
}

body.theme-glitch .title-main::before {
    content: 'FUCK DENUVO';
    position: absolute;
    top: 0;
    left: 0;
    color: #00ff00;
    animation: vhsChannelShift 0.2s infinite;
    z-index: -1;
    mix-blend-mode: screen;
}

body.theme-glitch .title-main::after {
    content: 'FUCK DENUVO';
    position: absolute;
    top: 0;
    left: 0;
    color: #0000ff;
    animation: vhsChannelShift 0.2s infinite reverse;
    z-index: -2;
    mix-blend-mode: screen;
}

body.theme-glitch .stat-card,
body.theme-glitch .action-card,
body.theme-glitch .comments-card {
    border: 2px solid var(--border-color);
    box-shadow: 0 0 20px var(--glow-color);
    position: relative;
    animation: vhsFlicker 4s ease-in-out infinite;
}

body.theme-glitch .stat-card::before,
body.theme-glitch .action-card::before,
body.theme-glitch .comments-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 30%, rgba(255, 0, 0, 0.1) 50%, transparent 70%);
    animation: vhsTapeError 2s linear infinite;
    pointer-events: none;
}

body.theme-glitch .vote-button {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    box-shadow: 0 0 30px var(--glow-color);
    animation: vhsButtonGlitch 5s ease-in-out infinite;
}

@keyframes vhsGlitch {
    0%, 90%, 100% { 
        transform: translate(0);
        filter: contrast(1.2) brightness(1.1);
    }
    2% { 
        transform: translate(-2px, 1px);
        filter: contrast(1.5) brightness(1.3) hue-rotate(90deg);
    }
    4% { 
        transform: translate(2px, -1px);
        filter: contrast(1.5) brightness(1.3) hue-rotate(-90deg);
    }
    6% { 
        transform: translate(-1px, 2px);
        filter: contrast(1.5) brightness(1.3) hue-rotate(180deg);
    }
    8% { 
        transform: translate(1px, -2px);
        filter: contrast(1.5) brightness(1.3) hue-rotate(-180deg);
    }
}

@keyframes vhsChannelShift {
    0% { transform: translate(0); }
    20% { transform: translate(-1px, 1px); }
    40% { transform: translate(-1px, -1px); }
    60% { transform: translate(1px, 1px); }
    80% { transform: translate(1px, -1px); }
}

@keyframes vhsFlicker {
    0%, 98%, 100% { opacity: 1; }
    99% { opacity: 0.7; }
}

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

@keyframes vhsButtonGlitch {
    0%, 95%, 100% { 
        transform: translateY(0);
        filter: none;
    }
    96% { 
        transform: translateY(-1px);
        filter: hue-rotate(90deg);
    }
    97% { 
        transform: translateY(1px);
        filter: hue-rotate(-90deg);
    }
    98% { 
        transform: translateY(0);
        filter: hue-rotate(180deg);
    }
}

/* Glitch Theme 2 - Matrix Glitch */
body.theme-matrix {
    --bg-primary: linear-gradient(135deg, #000000 0%, #001100 25%, #003300 50%, #001100 75%, #000000 100%);
    --bg-secondary: rgba(0, 0, 0, 0.95);
    --bg-card: rgba(0, 255, 0, 0.1);
    --bg-card-hover: rgba(0, 255, 0, 0.2);
    --text-primary: #00ff00;
    --text-secondary: #00cc00;
    --text-muted: #009900;
    --accent-primary: #00ff00;
    --accent-secondary: #00cc00;
    --accent-success: #009900;
    --accent-warning: #ffff00;
    --border-color: rgba(0, 255, 0, 0.5);
    --shadow-color: rgba(0, 0, 0, 0.8);
    --glow-color: rgba(0, 255, 0, 0.6);
}

body.theme-matrix::before {
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 0, 0.05) 0%, transparent 50%);
}

body.theme-matrix::after {
    background-image: 
        linear-gradient(rgba(0, 255, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 0, 0.1) 1px, transparent 1px);
    background-size: 15px 15px;
    animation: matrixRain 8s linear infinite;
}

/* Matrix Theme Scrollbar */
body.theme-matrix ::-webkit-scrollbar-track {
    background: rgba(0, 255, 0, 0.15);
    border: 2px solid rgba(0, 255, 0, 0.4);
}

body.theme-matrix ::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00ff00, #00cc00);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
}

body.theme-matrix ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #00cc00, #009900);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
}

body.theme-matrix ::-webkit-scrollbar-corner {
    background: rgba(0, 255, 0, 0.15);
}

/* Matrix Theme Firefox */
body.theme-matrix {
    scrollbar-color: #00ff00 rgba(0, 255, 0, 0.15);
}

/* Matrix Theme Loading Screen */
body.theme-matrix .drive-loading-screen {
    background: var(--bg-primary);
}

body.theme-matrix .loading-container {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 255, 0, 0.3);
}

body.theme-matrix .loading-content h1 {
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
}

body.theme-matrix .progress-fill {
    background: linear-gradient(90deg, #00ff00, #00cc00);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
}

body.theme-matrix .step.active {
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
}

@keyframes matrixRain {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Matrix specific effects */
body.theme-matrix .title-main {
    animation: matrixGlow 1s ease-in-out infinite alternate;
    text-shadow: 0 0 20px var(--accent-primary), 0 0 40px var(--accent-primary);
}

body.theme-matrix .stat-card,
body.theme-matrix .action-card,
body.theme-matrix .comments-card {
    border: 2px solid var(--border-color);
    box-shadow: 0 0 15px var(--glow-color);
    position: relative;
}

body.theme-matrix .stat-card::before,
body.theme-matrix .action-card::before,
body.theme-matrix .comments-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 30%, rgba(0, 255, 0, 0.1) 50%, transparent 70%);
    animation: matrixScan 4s linear infinite;
    pointer-events: none;
}

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

@keyframes matrixGlow {
    0% { 
        text-shadow: 0 0 20px var(--accent-primary), 0 0 40px var(--accent-primary);
    }
    100% { 
        text-shadow: 0 0 10px var(--accent-primary), 0 0 20px var(--accent-primary);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px var(--glow-color);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-color);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 30px var(--glow-color);
    background: linear-gradient(45deg, #ff5252, #4d9de0);
}

.scroll-to-top:active {
    transform: translateY(-1px) scale(1.05);
}

.scroll-icon {
    font-size: 1.2rem;
    margin-bottom: 2px;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

/* Mobile responsive scroll button */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .scroll-icon {
        font-size: 1rem;
        margin-bottom: 1px;
    }
    
    .scroll-text {
        font-size: 0.5rem;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-icon {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    
    .scroll-text {
        font-size: 0.45rem;
    }
}

/* Responsive adjustments for theme switcher */
@media (max-width: 768px) {
    .theme-switcher {
        display: none;
    }
    
    .theme-toggle-mobile {
        display: flex;
    }
    
    .theme-notification {
        top: 80px;
        left: 10px;
        font-size: 0.65rem;
        padding: 6px 10px;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .theme-toggle-mobile {
        top: 15px;
        left: 15px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .theme-notification {
        top: 70px;
        left: 15px;
        font-size: 0.6rem;
        padding: 5px 8px;
        min-width: 180px;
    }
}
