@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@600;700&display=swap');

/* --- CSS VARIABLES & THEME --- */
:root {
    /* Main Accent Color provided by user */
    --accent-color: #880FFA;
    --accent-glow: rgba(136, 15, 250, 0.5);
    --accent-hover: #9c33fa;

    /* Backgrounds & Glassmorphism */
    --glass-bg: rgba(15, 15, 20, 0.75);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b7280;

    /* Status Colors */
    --danger: #ef4444;
    --success: #22c55e;
    --warning: #eab308;
}

/* --- GLOBAL RESET --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    /* Smooth scrolling */
    scroll-behavior: smooth;
}

/* Deep overlay over the background image to ensure text readability */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark radial gradient for a premium subtle vignette effect */
    background: radial-gradient(circle at center, rgba(10, 10, 15, 0.6) 0%, rgba(5, 5, 8, 0.9) 100%);
    z-index: -1;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:hover {
    color: var(--accent-hover);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* --- LAYOUT UTILS --- */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* GLASSMORPHISM PANEL (The core aesthetic component) */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    padding: 40px;
    margin-bottom: 30px;
}

/* --- HEADER & NAVIGATION --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    height: 45px;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.2));
}

.logo span {
    font-family: var(--font-heading);
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #fff 0%, #d1d5db 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li {
    position: relative;
}

nav ul li > a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1.05em;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

nav ul li > a:hover {
    color: var(--text-primary);
}

/* Active navigation dot effect */
nav ul li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

nav ul li > a:hover::after,
nav ul li > a.active::after {
    width: 100%;
    box-shadow: 0 0 10px var(--accent-glow);
}

.dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 15px;
    min-width: 400px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.8), 0 0 30px rgba(168, 85, 247, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
}

/* Arrow pointer for dropdown */
.dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 25px;
    transform: rotate(45deg);
    width: 14px;
    height: 14px;
    background: rgba(10, 10, 15, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

nav ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    width: 100%;
}

.dropdown li a {
    color: var(--text-secondary);
    padding: 14px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 6px 0;
    border: 1px solid transparent;
}

.dropdown li a .menu-icon {
    font-size: 1.4em;
    min-width: 32px;
    display: flex;
    justify-content: center;
}

.dropdown li a .menu-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown li a .menu-title {
    color: var(--text-primary);
    font-size: 0.95em;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.dropdown li a .menu-desc {
    color: var(--text-secondary);
    font-size: 0.75em;
    font-weight: 400;
    opacity: 0.7;
}

.dropdown li a:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.2);
    transform: translateX(6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2), inset 0 0 15px rgba(168, 85, 247, 0.05);
}

.dropdown li a:hover .menu-desc {
    opacity: 1;
    color: var(--text-primary);
}

/* HEADER INFO (Players & Socials) */
.header-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.players-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9em;
    font-weight: 500;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.1);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--success);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.socials img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

.socials a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--accent-glow);
}

.socials a:hover img {
    filter: brightness(1) invert(1);
}

/* --- HERO SECTION (Index Page) --- */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4.5em;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #a0a0b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.hero p {
    font-size: 1.25em;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 40px;
}

/* --- BUTTONS --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: #fff !important;
    padding: 16px 40px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px var(--accent-glow);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::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 ease;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(136, 15, 250, 0.7);
}

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

/* --- PAGE HEADERS / BANNERS --- */
.page-header {
    text-align: center;
    padding: 80px 20px 60px;
    position: relative;
}

.page-header h1 {
    font-size: 3em;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2em;
    color: var(--accent-color);
}

/* --- CONTENT SECTIONS (Rules & FAQ) --- */
.content-section {
    margin-bottom: 40px;
}

.section-title-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.section-title-box h2 {
    margin: 0;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title-box:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.section-title-box.active {
    border-color: var(--accent-color);
    background: rgba(136, 15, 250, 0.08);
    box-shadow: 0 0 20px rgba(136, 15, 250, 0.1);
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 10px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(136, 15, 250, 0.3);
}

.faq-question {
    border: none;
    margin-bottom: 0;
    background: transparent;
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--text-secondary);
    font-size: 0.95em;
    display: none;
}

.section-title-box.active .toggle-icon {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.section-content {
    display: none; /* hidden by default, toggled via JS */
    padding: 0 25px 30px;
    color: var(--text-secondary);
}

.section-content.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

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

/* Lists styling inside content */
.section-content ul {
    list-style: none;
    padding-left: 10px;
    margin-top: 15px;
}

.section-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.section-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Text Highlight Utilities */
.highlight {
    color: var(--accent-color);
    font-weight: 600;
}
.danger {
    color: var(--danger);
    font-weight: 600;
}
.warning {
    color: var(--warning);
    font-weight: 600;
}

/* --- RANKS / HIERARCHY BADGES --- */
.rank-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 6px;
    font-size: 0.85em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 3px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.rank-cartel { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); } /* Amber/Gold */
.rank-orga { background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%); }   /* Purple */
.rank-mc { background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); }     /* Orange */
.rank-gang { background: linear-gradient(135deg, #22c55e 0%, #15803d 100%); }   /* Green */
.rank-pf { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); }     /* Blue */

/* --- FAQ Bubble Redesign --- */
.faq-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.4), rgba(136, 15, 250, 0.4));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8em;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(168, 85, 247, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.faq-bubble:hover {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.6), rgba(136, 15, 250, 0.6));
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(168, 85, 247, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.faq-bubble:hover ~ .faq-tip-bubble {
    opacity: 1;
    transform: translateY(0);
}

.pulse-animation {
    animation: bubblePulse 2s infinite;
}

@keyframes bubblePulse {
    0% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(168, 85, 247, 0); }
    100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0); }
}

/* --- STREAMERS GRID --- */
.content-streams {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.streamer-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.streamer-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.streamer-header {
    padding: 15px 20px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.streamer-name {
    font-weight: 600;
    font-family: var(--font-heading);
}

.live-indicator {
    font-size: 0.75em;
    background: var(--danger);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.embed-container {
    aspect-ratio: 16/9;
    background: #000;
}

/* Controls (Filters/Search) */
.controls-bar {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 250px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 12px 20px;
    color: #fff;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: var(--accent-color);
}

.sort-buttons {
    display: flex;
    background: rgba(255,255,255,0.05);
    padding: 4px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.sort-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.sort-btn.active {
    background: var(--accent-color);
    color: #fff;
}

/* --- RESPONSIVE DESIGN (Consolidated Mobile Elite) --- */
@media (max-width: 1024px) {
    header {
        padding: 15px 20px;
    }

    .header-info {
        display: flex;
        gap: 10px;
        order: 2;
    }

    .socials {
        display: none; /* Keep desktop clean on mobile header */
    }

    .players-badge {
        padding: 6px 12px;
        font-size: 0.85em;
        background: rgba(136, 15, 250, 0.15);
    }

    /* Total Mobile UI Overhaul (Extreme Premium Overlay) */
    nav ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 15, 0.96);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        padding: 60px 40px;
        gap: 25px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        border-left: none;
        overflow-y: auto;
    }

    nav ul.mobile-active {
        opacity: 1;
        visibility: visible;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        border: none;
    }

    nav ul.mobile-active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Staggered entry animation */
    nav ul.mobile-active li:nth-child(1) { transition-delay: 0.1s; }
    nav ul.mobile-active li:nth-child(2) { transition-delay: 0.18s; }
    nav ul.mobile-active li:nth-child(3) { transition-delay: 0.26s; }
    nav ul.mobile-active li:nth-child(4) { transition-delay: 0.34s; }
    nav ul.mobile-active li:nth-child(5) { transition-delay: 0.42s; }
    nav ul.mobile-active li:nth-child(6) { transition-delay: 0.5s; }

    nav ul li > a {
        font-size: 1.6em;
        font-weight: 700;
        color: var(--text-primary);
        padding: 12px 0;
        width: auto;
        justify-content: center;
        text-transform: uppercase;
        letter-spacing: 2px;
        border: none;
    }

    nav ul li > a::after {
        display: none; /* Hide desktop hover effect */
    }

    nav ul li.has-dropdown > a::after {
        content: '▼';
        font-size: 0.5em;
        margin-left: 15px;
        opacity: 0.4;
    }

    /* Mobile Dropdowns (Clean Indented List) */
    .dropdown {
        position: static;
        background: rgba(255, 255, 255, 0.02);
        border: none;
        border-radius: 20px;
        margin: 10px 0;
        padding: 5px;
        display: none;
        min-width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    nav ul li.active-dropdown .dropdown {
        display: flex;
        flex-direction: column;
        animation: slideInDown 0.4s ease forwards;
    }

    .dropdown li a {
        padding: 12px;
        font-size: 0.95em;
        justify-content: center;
        text-align: center;
    }

    .dropdown li a .menu-desc {
        display: none;
    }

    /* Premium Hamburger Toggle */
    .label-check {
        display: none;
    }

    .hamburger-label {
        width: 32px;
        height: 24px;
        display: block;
        cursor: pointer;
        position: relative;
        z-index: 1001;
    }

    .hamburger-label div {
        width: 30px;
        height: 2px;
        background-color: var(--text-primary);
        position: absolute;
        left: 0;
        border-radius: 2px;
    }

    .line1 { top: 0; transition: all .3s ease; }
    .line2 { top: 10px; transition: all .3s ease; }
    .line3 { top: 20px; transition: all .3s ease; }

    #label-check:checked + .hamburger-label .line1 {
        transform: rotate(35deg) scaleX(.55) translate(14px, 3px);
    }
    #label-check:checked + .hamburger-label .line3 {
        transform: rotate(-35deg) scaleX(.55) translate(14px, -3px);
    }
    #label-check:checked + .hamburger-label .line2 {
        width: 20px;
    }

    /* Layout adjustments for small screens */
    .hero h1 { font-size: 2.2em; }
    .hero p { font-size: 1.1em; }
    .players-badge { display: none; }
}

@media (max-width: 768px) {
    .container { padding: 15px; }
    .hero h1 { font-size: 2em; }
    .page-header h1 { font-size: 2em; }
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

    .glass-panel {
        padding: 20px;
    }

    .hero h1 {
        font-size: 2.2em;
    }

    .page-header h1 {
        font-size: 2.2em;
    }

    .content-streams {
        grid-template-columns: 1fr;
    }

    .business-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes slideInDown {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: rgba(10, 10, 15, 0.9);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Hide menu toggle by default on desktop */
.hamburger-label, .label-check {
    display: none;
}
/* --- SMART VOTE POPUP --- */
.vote-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10002;
    background: rgba(15, 15, 20, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(136, 15, 250, 0.3);
    border-radius: 20px;
    padding: 20px;
    width: 380px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(136, 15, 250, 0.1);
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vote-popup.active {
    transform: translateX(0);
    opacity: 1;
}

.vote-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.vote-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vote-popup h3 {
    font-size: 1.1em;
    margin-bottom: 5px;
    color: white;
}

.vote-popup p {
    font-size: 0.85em;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.vote-actions {
    display: flex;
    gap: 10px;
}

.vote-actions .btn-primary {
    flex: 2;
    padding: 10px;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vote-actions .btn-secondary {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.8em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vote-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* --- Global Desktop Safety Rules --- */
.hamburger-label, .label-check {
    display: none;
}

@media (max-width: 480px) {
    .vote-popup {
        width: calc(100% - 40px);
        left: 20px;
        bottom: 20px;
    }
}
