        .vote-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: var(--navbar-offset) 2rem 2rem;
            display: flex;
            flex-direction: column;
        }

        /* ===== HERO SECTION ===== */
        .premium-hero {
            text-align: center;
            padding: 3rem 2rem;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.05) 50%, rgba(96, 165, 250, 0.1) 100%);
            border: 2px solid rgba(251, 191, 36, 0.3);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .premium-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
            animation: pulse-glow 4s ease-in-out infinite;
        }

        @keyframes pulse-glow {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.1); }
        }

        .premium-hero-content {
            position: relative;
            z-index: 1;
        }

        .premium-hero h1 {
            font-size: 2.8rem;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #60a5fa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.75rem;
            font-weight: 800;
        }

        .premium-hero p {
            color: #e2e8f0;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
        }

        .premium-hero .subtitle {
            color: #fbbf24;
            font-size: 1rem;
            font-weight: 600;
        }

        /* ===== PREMIUM PROGRESS CARD ===== */
        .premium-progress-card {
            margin-top: 2rem;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--card-radius);
            padding: 2rem;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                        0 0 0 1px rgba(255, 255, 255, 0.08),
                        inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }

        .premium-progress-card::before {
            content: '💎';
            position: absolute;
            top: -20px;
            right: -20px;
            font-size: 8rem;
            opacity: 0.06;
        }

        .premium-progress-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .premium-progress-header h2 {
            color: #e2e8f0;
            font-size: 1.5rem;
            margin: 0;
        }

        .progress-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.75rem;
        }

        .progress-coins {
            font-size: 1.8rem;
            font-weight: bold;
            color: #fbbf24;
        }

        .progress-coins span {
            color: #94a3b8;
            font-size: 1.2rem;
        }

        .progress-percentage {
            font-size: 1.2rem;
            color: #60a5fa;
            font-weight: 600;
        }

        .premium-progress-bar {
            height: 12px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            overflow: hidden;
            margin-bottom: 1rem;
        }

        .premium-progress-fill {
            width: 0%;
            height: 100%;
            background: linear-gradient(90deg, #fbbf24, #f59e0b);
            border-radius: 6px;
            transition: width 0.5s ease;
            box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
        }

        .progress-message {
            text-align: center;
            padding: 1rem;
            background: rgba(251, 191, 36, 0.1);
            border-radius: 8px;
            margin-bottom: 1.5rem;
        }

        .progress-message .highlight {
            color: #fbbf24;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .premium-tiers {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .tier-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .tier-item:hover {
            border-color: rgba(251, 191, 36, 0.4);
            background: rgba(251, 191, 36, 0.08);
        }

        .tier-item.active {
            border-color: rgba(251, 191, 36, 0.6);
            background: rgba(251, 191, 36, 0.15);
            box-shadow: 0 0 10px rgba(251, 191, 36, 0.2);
        }

        .tier-item.recommended {
            border-color: rgba(251, 191, 36, 0.5);
            background: rgba(251, 191, 36, 0.1);
        }

        .tier-item.recommended.active {
            border-color: rgba(251, 191, 36, 0.8);
            background: rgba(251, 191, 36, 0.2);
        }

        .tier-coins {
            font-weight: bold;
            color: #fbbf24;
        }

        .tier-duration {
            color: #e2e8f0;
        }

        .tier-savings {
            color: #22c55e;
            font-size: 0.85rem;
            margin-left: auto;
        }

        /* ===== PREMIUM FEATURES SHOWCASE ===== */
        .features-section {
            margin-bottom: 2rem;
        }

        .features-section h2 {
            text-align: center;
            color: #e2e8f0;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            border-color: rgba(251, 191, 36, 0.5);
            box-shadow: 0 8px 24px rgba(251, 191, 36, 0.2);
        }

        .feature-card.coming-soon {
            opacity: 0.7;
            border-style: dashed;
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            color: #fbbf24;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .feature-card p {
            color: #94a3b8;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* ===== BUTTON CONTAINER ===== */
        .cta-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .cta-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem 1.5rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .cta-btn.primary {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #1e1e1e;
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
        }

        .cta-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
        }

        .cta-btn.secondary {
            background: rgba(255, 255, 255, 0.1);
            color: #e2e8f0;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .cta-btn.secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(251, 191, 36, 0.4);
        }

        /* ===== BENEFITS MODAL — Overrides modal.css Base ===== */
        .modal-overlay {
            /* Nutzt opacity/visibility statt display für Animation */
            display: flex;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border: 1px solid rgba(251, 191, 36, 0.3);
            border-radius: 16px;
            padding: 2rem;
            max-width: 500px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .modal-overlay.active .modal-content {
            transform: scale(1);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .modal-header h3 {
            color: #fbbf24;
            font-size: 1.3rem;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .modal-close {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: #94a3b8;
            font-size: 1.5rem;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-close:hover {
            background: rgba(239, 68, 68, 0.2);
            color: #ef4444;
        }

        .modal-benefits-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .modal-benefit-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            color: #e2e8f0;
        }

        .modal-benefit-item::before {
            content: '✓';
            color: #22c55e;
            font-weight: bold;
            font-size: 1.1rem;
        }

        /* ===== SECTION DIVIDER ===== */
        .section-divider {
            text-align: center;
            margin: 2rem 0;
            color: #64748b;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .section-divider::before,
        .section-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        }

        /* ===== ORIGINAL STYLES (updated) ===== */
        .vote-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .vote-header h1 {
            font-size: 2rem;
            color: #e2e8f0;
            margin-bottom: 0.5rem;
        }

        .vote-header p {
            color: #94a3b8;
            font-size: 1rem;
        }

        .platform-notice {
            background: rgba(245, 158, 11, 0.1);
            border: 2px solid rgba(245, 158, 11, 0.4);
            border-radius: 12px;
            padding: 1.25rem 1.5rem;
            margin-bottom: 2rem;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .platform-notice-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
            margin-top: 0.1rem;
        }

        .platform-notice-content {
            flex: 1;
        }

        .platform-notice-title {
            font-weight: 600;
            color: #fbbf24;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .platform-notice-text {
            color: #fcd34d;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .platforms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(460px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .platform-card[data-platform-id="topgg"] { --platform-color: #FF3366; }
        .platform-card[data-platform-id="discordbotlist"] { --platform-color: #5865F2; }

        .platform-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--card-radius);
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            min-height: 300px;
        }

        .platform-card:hover {
            transform: translateY(-4px);
            border-color: rgba(96, 165, 250, 0.3);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3), 0 0 30px rgba(96, 165, 250, 0.06);
        }

        .platform-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--platform-color);
            opacity: 0.7;
        }

        .platform-icon {
            font-size: 3.5rem;
            text-align: center;
            margin-bottom: 0.75rem;
            line-height: 1;
        }

        .platform-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-primary);
            text-align: center;
            margin: 0 0 1.25rem;
        }

        .platform-details {
            background: rgba(96, 165, 250, 0.04);
            border: 1px solid var(--card-border);
            border-radius: 10px;
            padding: 0.9rem 1rem;
            margin-bottom: 1.25rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .platform-detail {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.875rem;
        }

        .platform-detail-label {
            color: var(--muted-color);
        }

        .platform-detail-value {
            color: #64748b;
            font-weight: 600;
        }

        .platform-detail-value.coins {
            color: #fbbf24;
        }

        .platform-votes {
            color: #94a3b8;
            font-size: 0.9rem;
        }

        .cooldown-section {
            margin-bottom: 1rem;
        }

        .cooldown-bar {
            background: rgba(255, 255, 255, 0.1);
            height: 8px;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 0.5rem;
        }

        .cooldown-progress {
            width: 0%;
            height: 100%;
            background: linear-gradient(90deg, #ef4444, #f59e0b);
            transition: width 0.3s ease;
        }

        .cooldown-text {
            color: #f59e0b;
            font-size: 0.85rem;
            margin-bottom: 1rem;
            text-align: center;
        }

        .vote-button {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
            text-align: center;
            margin-top: auto;
        }

        .vote-button.active {
            background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
            color: white;
        }

        .vote-button.active:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 12px rgba(96, 165, 250, 0.4);
        }

        .vote-button.cooldown {
            background: rgba(255, 255, 255, 0.1);
            color: #94a3b8;
            cursor: not-allowed;
        }

        .platform-stats {
            display: flex;
            justify-content: space-around;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .platform-stat {
            text-align: center;
        }

        .platform-stat-value {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--platform-color);
        }

        .platform-stat-label {
            font-size: 0.75rem;
            color: #94a3b8;
        }

        .loading {
            text-align: center;
            padding: 3rem;
            color: #94a3b8;
        }

        .loading-spinner {
            border: 3px solid rgba(255, 255, 255, 0.1);
            border-top: 3px solid #60a5fa;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 0 auto 1rem;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Mobile styles for vote page */
        @media (max-width: 768px) {
            .vote-container {
                padding: var(--navbar-offset) 1rem 1rem;
            }

            /* Premium Hero Mobile */
            .premium-hero {
                padding: 2rem 1rem;
            }

            .premium-hero h1 {
                font-size: 1.8rem;
            }

            .premium-hero p {
                font-size: 1rem;
            }

            /* Premium Progress Card Mobile */
            .premium-progress-card {
                padding: 1.5rem;
            }

            .premium-progress-header h2 {
                font-size: 1.2rem;
            }

            .progress-coins {
                font-size: 1.4rem;
            }

            .premium-tiers {
                grid-template-columns: 1fr;
            }

            /* Features Section Mobile */
            .features-grid {
                grid-template-columns: 1fr;
            }

            .feature-card {
                padding: 1.25rem;
            }

            .feature-icon {
                font-size: 2.5rem;
            }

            /* CTA Buttons Mobile */
            .cta-buttons {
                flex-direction: column;
            }

            .cta-btn {
                padding: 0.875rem 1rem;
                font-size: 0.95rem;
            }

            .vote-header h1 {
                font-size: 2rem;
            }

            .platforms-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                /* less dead space below the cards so the ad reaches higher up */
                margin-bottom: 1rem;
            }

            /* Empty state message in platforms grid */
        .vote-empty-msg {
            text-align: center;
            color: #94a3b8;
            grid-column: 1 / -1;
            padding: 2rem;
        }

        }

/* ===== PAGE HEADER ===== */
/* Page header (H1 + tagline) — visually hidden, kept in the DOM.
   Every page (shop, giveaways, news) has an H1; the vote page keeps one too
   for SEO + screen readers. It just takes no visual space, so the vote cards
   sit directly under the navbar. This is not cloaking — same content for
   crawlers and users, only not visually rendered. */
.vote-page-header {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.vote-intro {
    max-width: 900px;
    margin: 0 auto 2rem;
}
.vote-intro p:last-child { margin-bottom: 0; }

/* ===== INFO / HOW IT WORKS (collapsible — relies on .section-card from style.css) ===== */
.vote-info {
    margin: 2rem 0;
    padding: 0;
}

.vote-info-summary {
    list-style: none;
    cursor: pointer;
    padding: var(--card-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    user-select: none;
}
.vote-info-summary::-webkit-details-marker { display: none; }
.vote-info-summary::after {
    content: '▾';
    color: var(--text-secondary);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}
.vote-info[open] > .vote-info-summary::after { transform: rotate(180deg); }
.vote-info[open] > .vote-info-summary { border-bottom: 1px solid var(--card-border); }

.vote-info-summary .card-title { margin: 0; }

.vote-info-hint {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-left: auto;
    margin-right: 0.75rem;
}

.vote-info-section {
    padding: var(--card-padding);
    border-top: 1px solid var(--card-border);
}
.vote-info-section:first-of-type { border-top: none; }

.vote-info-q {
    font-size: 1rem;
    margin: 1.25rem 0 0.4rem;
}

.vote-info-steps,
.vote-info-modules { padding-left: 1.25rem; }
.vote-info-steps li,
.vote-info-modules li { margin-bottom: 0.5rem; }

.vote-info-rewards {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
    display: grid;
    gap: 0.5rem;
}

@media (max-width: 640px) {
    .vote-info-hint { display: none; }

    /* Compact vote cards on phones so both cards + the ad reach higher up */
    .platform-card {
        padding: 1.25rem;
        min-height: auto;
    }
    .platform-icon {
        font-size: 2.25rem;
        margin-bottom: 0.4rem;
    }
    .platform-name {
        font-size: 1.15rem;
        margin: 0 0 0.75rem;
    }
    .platform-details {
        padding: 0.7rem 0.85rem;
        margin-bottom: 0.75rem;
        gap: 0.35rem;
    }
    .vote-button {
        padding: 0.8rem;
    }
}


