/* ============================================================
   PATREON SUGGESTIONS - GLASSMORPHISM REDESIGN
   A bold, modern glass-effect design system
   ============================================================ */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --color-coral: #ff6b6b;
    --color-coral-glow: rgba(255, 107, 107, 0.5);
    --color-teal: #4ecdc4;
    --color-teal-glow: rgba(78, 205, 196, 0.5);
    --color-purple: #8b5cf6;
    --color-purple-glow: rgba(139, 92, 246, 0.5);
    --color-gold: #ffd86b;
    --color-blue: #45b7d1;
    --color-mint: #96ceb4;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-hover: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.15);
    
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-medium: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --text-faint: rgba(255, 255, 255, 0.3);
}

/* Reset */
.patreon-suggestions-layout * {
    box-sizing: border-box;
}

/* ============================================================
   ANIMATED BACKGROUND
   ============================================================ */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    background: #0a0a0f;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 60% at 80% 20%, rgba(255, 107, 107, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 70% 70% at 60% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 10% 90%, rgba(255, 216, 107, 0.08) 0%, transparent 50%);
    animation: bgPulse 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

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

/* Floating orbs animation */
body::after {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-purple-glow) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: floatOrb 30s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
    filter: blur(60px);
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-100px, 50px) scale(1.1); }
    50% { transform: translate(-50px, 100px) scale(0.9); }
    75% { transform: translate(50px, 50px) scale(1.05); }
}

/* ============================================================
   MAIN LAYOUT
   ============================================================ */
.patreon-suggestions-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 32px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 40px;
    min-height: 100vh;
    align-items: start;
}

@media (max-width: 1200px) {
    .patreon-suggestions-layout {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }
}

/* Align both columns at the top */
.patreon-suggestions-main {
    padding-top: 0;
    margin-top: 0;
}

/* Ensure first elements in each column align */
.patreon-suggestion-form-card > *:first-child {
    margin-top: 0;
}

.patreon-suggestions-main > *:first-child {
    margin-top: 0;
}

/* ============================================================
   GLASS CARD BASE
   ============================================================ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
}

/* ============================================================
   SUGGESTION FORM CARD
   ============================================================ */
.patreon-suggestion-form-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 36px;
    transition: all 0.4s ease;
    overflow: hidden;
    height: fit-content;
}

.patreon-suggestion-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-coral), var(--color-purple), var(--color-teal));
    border-radius: 32px 32px 0 0;
}

.patreon-suggestion-form-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 
        0 0 60px rgba(139, 92, 246, 0.1),
        0 0 100px rgba(255, 107, 107, 0.05);
}

/* Form Title */
.patreon-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-purple) 50%, var(--color-teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: -0.03em;
}

/* Form Labels */
#patreon-suggestion-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    margin-top: 20px;
}

/* Form Inputs */
#patreon-suggestion-form input[type="text"],
#patreon-suggestion-form input[type="number"],
#patreon-suggestion-form select,
#patreon-suggestion-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-white);
    outline: none;
    transition: all 0.3s ease;
}

#patreon-suggestion-form input::placeholder,
#patreon-suggestion-form textarea::placeholder {
    color: var(--text-faint);
}

#patreon-suggestion-form input:focus,
#patreon-suggestion-form select:focus,
#patreon-suggestion-form textarea:focus {
    border-color: var(--color-purple);
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

#patreon-suggestion-form textarea {
    min-height: 100px;
    resize: vertical;
}

/* Form Footer */
.patreon-form-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
    gap: 16px;
    width: 100%;
}

.patreon-form-footer .patreon-submit-btn {
    flex-shrink: 0;
    padding: 14px 24px;
}

.patreon-remaining {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
}

/* Submit Button - Glowing Gradient */
.patreon-submit-btn {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-coral));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px var(--color-purple-glow);
}

.patreon-submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px var(--color-purple-glow);
}

.patreon-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.patreon-submit-btn:hover::before {
    transform: translateX(100%);
}

/* Message Display */
#patreon-suggestion-message {
    display: block;
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 16px;
    color: var(--color-teal);
    font-weight: 500;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* ============================================================
   SCHEDULE BOX
   ============================================================ */
.patreon-schedule-box {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 24px;
    margin-top: 0;
    transition: all 0.3s ease;
}

.patreon-schedule-box:hover {
    border-color: var(--glass-border-hover);
}

.patreon-schedule-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 16px;
    text-align: center;
}

.patreon-schedule-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.patreon-schedule-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.patreon-schedule-image-container:hover .patreon-schedule-image {
    transform: scale(1.03);
}

.patreon-schedule-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.patreon-schedule-image-container:hover .patreon-schedule-overlay {
    opacity: 1;
}

.patreon-schedule-click-text {
    color: white;
    font-weight: 600;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-coral));
    border-radius: 50px;
    font-size: 0.9rem;
}

/* ============================================================
   MAIN SUGGESTIONS AREA
   ============================================================ */
.patreon-suggestions-main {
    min-width: 0;
}

/* Votes Badge - Pill Style */
.patreon-votes-remaining-badge-wrap {
    margin-bottom: 16px;
    margin-top: 0;
}

.patreon-votes-remaining-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(255, 216, 107, 0.15), rgba(255, 216, 107, 0.05));
    border: 1px solid rgba(255, 216, 107, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-gold) !important;
    backdrop-filter: blur(10px);
}

/* Announcement Banner - Gradient Border */
.patreon-announcement-banner {
    position: relative;
    padding: 20px 28px;
    margin-bottom: 28px;
    margin-top: 0;
    border-radius: 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    display: flex;
    align-items: center;
    gap: 16px;
    overflow: hidden;
}

.patreon-announcement-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent 0%, 
        transparent 40%,
        rgba(255,255,255,0.12) 50%, 
        transparent 60%,
        transparent 100%
    );
    animation: shimmer 4s ease-in-out infinite;
}

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

.patreon-announcement-icon {
    font-size: 1.5rem;
}

.patreon-announcement-text-wrap {
    flex: 1;
    min-height: 1.5em;
}

.patreon-announcement-text {
    font-weight: 600;
    color: var(--text-white);
}

.patreon-announcement-cursor {
    display: none;
    width: 3px;
    height: 1.1em;
    background: var(--color-gold, #ffd86b);
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: patreon-announcement-cursor-blink 0.9s step-end infinite;
}

@keyframes patreon-announcement-cursor-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Genre Restriction Banner */
.patreon-genre-restriction-banner {
    padding: 16px 24px;
    margin-bottom: 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 107, 107, 0.05));
    border: 1px solid rgba(255, 107, 107, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
}

.patreon-genre-restriction-icon {
    font-size: 1.3rem;
}

.patreon-genre-restriction-text {
    font-weight: 600;
    color: var(--color-coral);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

/* Restriction Error */
.patreon-restriction-error {
    padding: 14px 20px;
    margin: 12px 0;
    border-radius: 12px;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: var(--color-coral);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: shake 0.5s ease;
}

.patreon-restriction-error::before {
    content: '⚠';
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-5px); }
    40% { transform: translateX(5px); }
    60% { transform: translateX(-5px); }
    80% { transform: translateX(5px); }
}

/* ============================================================
   SEARCH & FILTER - FLOATING BAR
   ============================================================ */
.patreon-search-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    margin-bottom: 28px;
    align-items: center;
    position: relative;
    z-index: 100;
}

.patreon-search-box {
    position: relative;
    flex: 1;
    min-width: 220px;
}

#patreon-search-input {
    width: 100%;
    padding: 14px 20px;
    padding-left: 48px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-white);
    outline: none;
    transition: all 0.3s ease;
}

#patreon-search-input::placeholder {
    color: var(--text-faint);
}

#patreon-search-input:focus {
    border-color: var(--color-teal);
    background: rgba(78, 205, 196, 0.1);
}

.patreon-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
}

/* Filter Pills */
#patreon-type-filter,
#patreon-sort,
#patreon-category-filter,
#patreon-genre-filter {
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-light);
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    min-width: 140px;
    position: relative;
    z-index: 101;
}

#patreon-type-filter:focus,
#patreon-sort:focus,
#patreon-category-filter:focus,
#patreon-genre-filter:focus {
    border-color: var(--color-purple);
    background: rgba(139, 92, 246, 0.1);
}

#patreon-type-filter option,
#patreon-sort option,
#patreon-category-filter option,
#patreon-genre-filter option {
    background: #1a1a2e !important;
    color: white !important;
}

@media (max-width: 800px) {
    .patreon-search-filter {
        flex-direction: column;
    }
    
    .patreon-search-box,
    #patreon-type-filter,
    #patreon-sort,
    #patreon-category-filter,
    #patreon-genre-filter {
        width: 100%;
        min-width: 0;
    }
}

/* ============================================================
   SUGGESTIONS TITLE
   ============================================================ */
.suggestions-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 16px;
}

.patreon-suggestions-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 44px;
    padding: 0 18px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-coral));
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px var(--color-purple-glow);
}

/* ============================================================
   SUGGESTIONS LIST
   ============================================================ */
#patreon-suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Suggestion Card - Glass Morphism */
#patreon-suggestions-list li {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

#patreon-suggestions-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-coral), var(--color-purple), var(--color-teal));
    opacity: 0;
    transition: opacity 0.3s ease;
}

#patreon-suggestions-list li:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateX(8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

#patreon-suggestions-list li:hover::before {
    opacity: 1;
}

/* Pixel Card Canvas Overlay */
.pixel-card-canvas-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    border-radius: 0 0 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pixel-card-canvas {
    width: 100%;
    height: 100%;
}

#patreon-suggestions-list li:hover .pixel-card-canvas-wrapper {
    opacity: 1;
}

#patreon-suggestions-list li > div:first-child {
    flex: 1;
    min-width: 0;
}

/* Suggestion Title */
.patreon-suggestion-title {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-white);
    cursor: pointer;
    transition: color 0.2s ease;
    text-decoration: none;
}

.patreon-suggestion-title:hover {
    color: var(--color-teal);
}

.patreon-suggestion-title-disabled {
    text-decoration: line-through;
    color: var(--color-coral) !important;
    opacity: 0.6;
}

/* Description */
.patreon-desc {
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================================
   BADGES - FLOATING PILLS
   ============================================================ */
.patreon-type-badge,
.patreon-year-badge,
.patreon-season-badge,
.patreon-category-badge,
.patreon-genre-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 8px;
    vertical-align: middle;
    border: none;
}

.patreon-type-badge {
    background: linear-gradient(135deg, var(--color-coral), #ff8585);
    color: white;
    box-shadow: 0 2px 12px var(--color-coral-glow);
}

.patreon-year-badge {
    background: linear-gradient(135deg, var(--color-teal), #6ed9d2);
    color: white;
    box-shadow: 0 2px 12px var(--color-teal-glow);
}

.patreon-season-badge {
    background: linear-gradient(135deg, var(--color-purple), #a78bfa);
    color: white;
    box-shadow: 0 2px 12px var(--color-purple-glow);
    animation: none;
}

/* Category Badges */
.patreon-category-action { background: linear-gradient(135deg, #ef4444, #f87171); color: white; }
.patreon-category-adventure { background: linear-gradient(135deg, #10b981, #34d399); color: white; }
.patreon-category-rpg { background: linear-gradient(135deg, #8b5cf6, #a78bfa); color: white; }
.patreon-category-strategy { background: linear-gradient(135deg, #3b82f6, #60a5fa); color: white; }
.patreon-category-horror { background: linear-gradient(135deg, #18181b, #27272a); color: #ef4444; border: 1px solid #ef4444; }
.patreon-category-multiplayer { background: linear-gradient(135deg, #06b6d4, #22d3ee); color: white; }
.patreon-category-racing { background: linear-gradient(135deg, #f97316, #fb923c); color: white; }
.patreon-category-puzzle { background: linear-gradient(135deg, #a855f7, #c084fc); color: white; }
.patreon-category-shooter { background: linear-gradient(135deg, #52525b, #71717a); color: white; }
.patreon-category-simulation { background: linear-gradient(135deg, #22c55e, #4ade80); color: white; }
.patreon-category-sports { background: linear-gradient(135deg, #eab308, #facc15); color: #18181b; }
.patreon-category-platformer { background: linear-gradient(135deg, #14b8a6, #2dd4bf); color: white; }
.patreon-category-fighting { background: linear-gradient(135deg, #e11d48, #f43f5e); color: white; }
.patreon-category-survival { background: linear-gradient(135deg, #84cc16, #a3e635); color: #18181b; }
.patreon-category-sandbox { background: linear-gradient(135deg, #facc15, #fde047); color: #18181b; }
.patreon-category-rhythm { background: linear-gradient(135deg, #ec4899, #f472b6); color: white; }
.patreon-category-stealth { background: linear-gradient(135deg, #475569, #64748b); color: white; }
.patreon-category-mmo { background: linear-gradient(135deg, #7c3aed, #8b5cf6); color: white; }
.patreon-category-card { background: linear-gradient(135deg, #6366f1, #818cf8); color: white; }
.patreon-category-roguelike { background: linear-gradient(135deg, #b45309, #d97706); color: white; }
.patreon-category-tower-defense { background: linear-gradient(135deg, #0d9488, #14b8a6); color: white; }
.patreon-category-educational { background: linear-gradient(135deg, #2563eb, #3b82f6); color: white; }
.patreon-category-casual { background: linear-gradient(135deg, #f472b6, #f9a8d4); color: white; }
.patreon-category-retro { background: linear-gradient(135deg, #fb923c, #fdba74); color: #18181b; }

/* Genre Badges */
.patreon-genre-badge {
    padding: 3px 10px;
    font-size: 0.65rem;
}

.patreon-genre-action { background: linear-gradient(135deg, #ef4444, #f87171); color: white; }
.patreon-genre-adventure { background: linear-gradient(135deg, #22c55e, #4ade80); color: white; }
.patreon-genre-animation { background: linear-gradient(135deg, #f472b6, #f9a8d4); color: white; }
.patreon-genre-biography { background: linear-gradient(135deg, #a78bfa, #c4b5fd); color: white; }
.patreon-genre-comedy { background: linear-gradient(135deg, #fbbf24, #fcd34d); color: #18181b; }
.patreon-genre-crime { background: linear-gradient(135deg, #525252, #737373); color: white; }
.patreon-genre-documentary { background: linear-gradient(135deg, #10b981, #34d399); color: white; }
.patreon-genre-drama { background: linear-gradient(135deg, #fb923c, #fdba74); color: #18181b; }
.patreon-genre-family { background: linear-gradient(135deg, #60a5fa, #93c5fd); color: white; }
.patreon-genre-fantasy { background: linear-gradient(135deg, #c084fc, #d8b4fe); color: white; }
.patreon-genre-history { background: linear-gradient(135deg, #dc2626, #ef4444); color: white; }
.patreon-genre-horror { background: linear-gradient(135deg, #18181b, #27272a); color: #ef4444; border: 1px solid #ef4444; }
.patreon-genre-music, .patreon-genre-musical { background: linear-gradient(135deg, #ec4899, #f472b6); color: white; }
.patreon-genre-mystery { background: linear-gradient(135deg, #6b7280, #9ca3af); color: white; }
.patreon-genre-romance { background: linear-gradient(135deg, #f472b6, #f9a8d4); color: white; }
.patreon-genre-science-fiction, .patreon-genre-sci-fi { background: linear-gradient(135deg, #38bdf8, #7dd3fc); color: white; }
.patreon-genre-sport, .patreon-genre-sports { background: linear-gradient(135deg, #10b981, #34d399); color: white; }
.patreon-genre-thriller { background: linear-gradient(135deg, #71717a, #a1a1aa); color: white; }
.patreon-genre-war { background: linear-gradient(135deg, #57534e, #78716c); color: white; }
.patreon-genre-western { background: linear-gradient(135deg, #b45309, #d97706); color: white; }

/* ============================================================
   SUGGESTION ACTIONS
   ============================================================ */
.patreon-suggestion-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex-shrink: 0;
}

.patreon-action-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.patreon-votes-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Vote Button - Neon Style */
.patreon-vote-btn,
.patreon-unvote-btn {
    padding: 12px 24px;
    background: transparent;
    color: var(--color-purple);
    border: 2px solid var(--color-purple);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.patreon-vote-btn:hover,
.patreon-unvote-btn:hover {
    background: var(--color-purple);
    color: white;
    box-shadow: 0 0 30px var(--color-purple-glow);
    transform: scale(1.05);
}

.patreon-vote-btn[disabled] {
    background: rgba(16, 185, 129, 0.2) !important;
    border-color: #10b981 !important;
    color: #10b981 !important;
    cursor: not-allowed;
    transform: none;
}

.patreon-vote-btn[disabled]:hover {
/* Unvote button uses warning color to distinguish from voting */
.patreon-unvote-btn {
    color: var(--color-coral);
    border-color: var(--color-coral);
}

.patreon-unvote-btn:hover {
    background: var(--color-coral);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.35);
}

    box-shadow: none;
    transform: none;
}

/* Delete Button */
.patreon-delete-btn,
button.patreon-delete-btn,
.patreon-action-buttons .patreon-delete-btn {
    padding: 10px 18px !important;
    background: transparent !important;
    color: var(--color-coral) !important;
    border: 2px solid var(--color-coral) !important;
    border-radius: 50px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    font-family: inherit !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
}

.patreon-delete-btn:hover,
button.patreon-delete-btn:hover,
.patreon-action-buttons .patreon-delete-btn:hover {
    background: var(--color-coral) !important;
    color: white !important;
    box-shadow: 0 0 30px var(--color-coral-glow) !important;
    transform: scale(1.05) !important;
}

.patreon-delete-countdown {
    font-size: 0.85em;
    opacity: 0.9;
}

/* Disabled Suggestion */
.patreon-suggestion-disabled {
    background: rgba(255, 107, 107, 0.05) !important;
    opacity: 0.7;
}

/* ============================================================
   COUNTDOWN TIMER - FUTURISTIC
   ============================================================ */
.patreon-flip-clock {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    margin-bottom: 32px;
}

.flip-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.flip-card-single {
    position: relative;
    width: 80px;
    height: 90px;
    perspective: 500px;
}

.flip-card-front {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.75rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(145deg, var(--color-purple), var(--color-coral));
    border-radius: 16px;
    box-shadow: 0 8px 32px var(--color-purple-glow);
    backface-visibility: hidden;
}

.flip-card-single.flipping .flip-card-front {
    animation: flipNum 0.5s ease-in-out;
}

@keyframes flipNum {
    0% { transform: rotateX(0deg); }
    50% { transform: rotateX(-90deg); }
    51% { transform: rotateX(90deg); }
    100% { transform: rotateX(0deg); }
}

.patreon-timer-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.patreon-flip-clock.pulse-blue .flip-card-front {
    background: linear-gradient(145deg, var(--color-purple), #7c3aed);
    animation: timerPulse 2s ease-in-out infinite;
}

.patreon-flip-clock.pulse-red .flip-card-front {
    background: linear-gradient(145deg, var(--color-coral), #e55555);
    animation: timerPulseRed 2s ease-in-out infinite;
}

@keyframes timerPulse {
    0%, 100% { box-shadow: 0 8px 32px var(--color-purple-glow); }
    50% { box-shadow: 0 8px 50px var(--color-purple-glow), 0 0 60px var(--color-purple-glow); }
}

@keyframes timerPulseRed {
    0%, 100% { box-shadow: 0 8px 32px var(--color-coral-glow); }
    50% { box-shadow: 0 8px 50px var(--color-coral-glow), 0 0 60px var(--color-coral-glow); }
}

/* ============================================================
   MODALS - FROSTED GLASS
   ============================================================ */
.patreon-closed-modal {
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.patreon-closed-content {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    padding: 48px;
    border-radius: 32px;
    text-align: center;
    max-width: 480px;
    width: 90%;
    animation: modalPop 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.patreon-closed-content h2 {
    color: var(--color-coral);
    margin-bottom: 16px;
    font-weight: 700;
}

.patreon-closed-content p {
    color: var(--text-medium);
}

/* Schedule Modal */
.patreon-schedule-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    overflow: auto;
}

.patreon-schedule-modal.active,
.patreon-schedule-modal[style*="display: flex"],
.patreon-schedule-modal[style*="display: block"] {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.patreon-schedule-modal-content {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 12px;
    overflow: visible;
    max-width: 80vw;
    max-height: 85vh;
    margin: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    animation: modalPop 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.patreon-schedule-modal-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 30, 50, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 400;
    color: white;
    cursor: pointer;
    z-index: 100;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.patreon-schedule-modal-close:hover {
    background: var(--color-coral);
    border-color: var(--color-coral);
    transform: scale(1.1);
}

.patreon-schedule-modal-image-wrapper {
    position: relative;
    display: block;
    line-height: 0;
}

.patreon-schedule-modal-image {
    display: block;
    max-width: 80vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* Hotspots */
.patreon-schedule-hotspots {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.patreon-schedule-hotspot {
    position: absolute;
    background: transparent;
    border-radius: 8px;
    pointer-events: auto;
    cursor: pointer;
}

/* Detail Panel */
.patreon-schedule-detail {
    position: absolute;
    top: 16px;
    left: 16px;
    max-width: 320px;
    min-width: 260px;
    background: rgba(10, 10, 20, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    border-radius: 16px;
    padding: 20px;
    padding-right: 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 20;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.patreon-schedule-detail .psd-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    line-height: 1.4;
}

.patreon-schedule-detail .psd-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

.patreon-schedule-detail .psd-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.3rem;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0;
    line-height: 1;
}

.patreon-schedule-detail .psd-close:hover {
    color: white;
}

/* Auto Text Overlay */
.patreon-schedule-auto-text,
.patreon-schedule-modal-auto-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}

.patreon-schedule-auto-text span,
.patreon-schedule-modal-auto-text span {
    color: white;
    font-size: 0.7em;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.patreon-schedule-auto-text-bottom { bottom: 2%; }
.patreon-schedule-auto-text-top { top: 2%; }
.patreon-schedule-auto-text-center { top: 50%; }

/* ============================================================
   CLOSED MESSAGE
   ============================================================ */
.patreon-closed-message {
    padding: 16px 24px;
    margin-bottom: 24px;
    border-radius: 16px;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: var(--color-coral);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.patreon-closed-message::before {
    content: '⚠';
    font-size: 1.3rem;
}

/* ============================================================
   INFO TIP
   ============================================================ */
.patreon-omdb-info-tip {
    background: rgba(255, 216, 107, 0.08);
    border: 1px solid rgba(255, 216, 107, 0.2);
    color: var(--color-gold);
    font-size: 0.85rem;
    padding: 14px 16px;
    border-radius: 12px;
    margin: 8px 0 16px 0;
    line-height: 1.5;
}

/* ============================================================
   LOGIN MESSAGE
   ============================================================ */
.patreon-login-message {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
    padding: 24px;
}

/* ============================================================
   HIGHLIGHT ANIMATION
   ============================================================ */
.patreon-suggestion-highlight {
    animation: glowPulse 2s ease-out;
}

@keyframes glowPulse {
    0% { 
        background: rgba(78, 205, 196, 0.2);
        box-shadow: 0 0 40px var(--color-teal-glow);
    }
    100% { 
        background: var(--glass-bg);
        box-shadow: none;
    }
}

/* ============================================================
   FRANCHISE MODALS
   ============================================================ */
#franchise-warning-modal,
#secondary-franchise-modal {
    animation: fadeIn 0.3s ease;
}

#franchise-warning-modal > div,
.secondary-franchise-content {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    animation: modalPop 0.3s ease;
}

/* ============================================================
   SNOW EFFECT
   ============================================================ */
#patreon-snow-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}

.patreon-snowflake {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.9;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.patreon-snowflake-0 {
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,0.6) 100%);
}

.patreon-snowflake-1,
.patreon-snowflake-2 {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.9), 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Snow Accumulation */
.patreon-snow-accumulation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.7) 100%) !important;
    border-radius: 20px 20px 0 0;
    pointer-events: none;
    z-index: 10;
    transition: height 0.4s ease;
}

/* ============================================================
   CHRISTMAS TREE
   ============================================================ */
#patreon-christmas-tree-container {
    position: absolute;
    pointer-events: auto;
    z-index: 9997;
    cursor: pointer;
    transition: filter 0.3s ease;
}

#patreon-christmas-tree-container:hover {
    filter: brightness(1.15);
}

@media (max-width: 1024px) {
    #patreon-christmas-tree-container {
        display: none !important;
    }
}

.patreon-christmas-tree {
    position: relative;
    width: 100%;
    height: 100%;
}

.patreon-tree-streak {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--streak-color), transparent);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 0 20px var(--streak-color), 0 0 40px var(--streak-color);
    animation: streakDraw var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes streakDraw {
    0% { opacity: 0; transform: scale(0); }
    10% { opacity: 1; }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; }
}

.patreon-tree-ornament {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), var(--ornament-color) 50%);
    box-shadow: 0 0 20px var(--ornament-color), 0 0 40px var(--ornament-color);
    z-index: 9999;
}

.patreon-tree-ornament.flicker-slow { animation: flicker 2s ease-in-out infinite; }
.patreon-tree-ornament.flicker-fast { animation: flicker 1.2s ease-in-out infinite; }
.patreon-tree-ornament.flicker-random { animation: flickerRandom 2.5s ease-in-out infinite; }
.patreon-tree-ornament.steady-glow { animation: glow 2s ease-in-out infinite; }
.patreon-tree-ornament.pulse-gentle { animation: gentlePulse 1.5s ease-in-out infinite; }

@keyframes flicker {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.4); }
}

@keyframes flickerRandom {
    0%, 100% { filter: brightness(1); }
    25% { filter: brightness(1.5); }
    50% { filter: brightness(0.8); }
    75% { filter: brightness(1.3); }
}

@keyframes glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

@keyframes gentlePulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.15); }
}

.patreon-tree-star-streak {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    box-shadow: 0 0 25px #ffd700, 0 0 50px #ffd700;
    animation: starPulse 1.5s ease-in-out infinite;
}

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

#patreon-christmas-tree-container.shaking {
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(-50%) rotate(0); }
    25% { transform: translateX(-50%) translateX(-8px) rotate(-2deg); }
    75% { transform: translateX(-50%) translateX(8px) rotate(2deg); }
}

.patreon-tree-burst-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--particle-color);
    box-shadow: 0 0 15px var(--particle-color);
    opacity: 0;
    pointer-events: none;
}

.patreon-tree-merry-christmas {
    position: absolute;
    bottom: -15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
}

/* ============================================================
   NOTIFICATIONS - FLOATING CARDS
   ============================================================ */
.patreon-notifications-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 360px;
    pointer-events: none;
}

.patreon-notification {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.patreon-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-purple), var(--color-coral));
}

.patreon-notification.vote::before {
    background: linear-gradient(180deg, #10b981, #34d399);
}

.patreon-notification.submit::before {
    background: linear-gradient(180deg, var(--color-blue), var(--color-teal));
}

.patreon-notification-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.patreon-notification-poster-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.patreon-notification-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.patreon-notification-poster-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.65), rgba(59, 130, 246, 0.65));
}

.patreon-notification-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.patreon-notification-text {
    flex: 1;
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.4;
}

.patreon-notification-text strong {
    color: var(--color-purple);
    font-weight: 600;
}

.patreon-notification-toggle {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(20, 20, 40, 0.65);
    color: #e6e6ff;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.patreon-notification-toggle:hover {
    background: rgba(34, 34, 66, 0.8);
}

.patreon-notification-toggle.is-muted {
    color: #ffd6d6;
    border-color: rgba(209, 44, 54, 0.55);
    background: rgba(209, 44, 54, 0.22);
}

.patreon-notification.vote .patreon-notification-text strong {
    color: #10b981;
}

.patreon-notification.submit .patreon-notification-text strong {
    color: var(--color-teal);
}

.patreon-notification-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    transition: color 0.2s ease;
}

.patreon-notification-close:hover {
    color: var(--text-white);
}

.patreon-notification.fade-out {
    animation: slideOut 0.3s ease forwards;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* ============================================================
   CUSTOM DROPDOWNS
   ============================================================ */
.custom-dropdown {
    position: relative;
    display: inline-block;
    min-width: 140px;
    z-index: 101;
}

.custom-dropdown.open {
    z-index: 9998;
}

.custom-dropdown-button {
    width: 100%;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.custom-dropdown-button:hover {
    border-color: var(--glass-border-hover);
}

.custom-dropdown.open .custom-dropdown-button {
    border-color: var(--color-purple);
    background: rgba(139, 92, 246, 0.1);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.custom-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.custom-dropdown-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(20, 20, 40, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    overflow: hidden;
}

.custom-dropdown.open .custom-dropdown-list {
    display: block;
    animation: dropdownOpen 0.2s ease;
}

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

.custom-dropdown-option {
    padding: 12px 18px;
    cursor: pointer;
    transition: background 0.2s ease;
    color: var(--text-light);
}

.custom-dropdown-option:hover {
    background: rgba(139, 92, 246, 0.2);
}

.custom-dropdown-option.selected {
    background: rgba(139, 92, 246, 0.15);
    color: var(--color-purple);
    font-weight: 600;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 800px) {
    .patreon-suggestions-layout {
        padding: 20px;
    }
    
    .patreon-suggestion-form-card {
        position: static;
        padding: 28px;
        border-radius: 24px;
    }
    
    #patreon-suggestions-list li {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
    
    .patreon-suggestion-actions {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .patreon-action-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .patreon-vote-btn,
    .patreon-unvote-btn,
    .patreon-delete-btn {
        width: 100%;
        justify-content: center;
    }
    
    .patreon-flip-clock {
        gap: 16px;
        padding: 28px;
    }
    
    .flip-card-single {
        width: 60px;
        height: 70px;
    }
    
    .flip-card-front {
        font-size: 2rem;
    }
    
    .suggestions-title {
        font-size: 1.75rem;
    }
    
    .patreon-notifications-container {
        left: 16px;
        right: 16px;
        max-width: none;
    }
    
    .patreon-schedule-detail {
        left: 50% !important;
        transform: translateX(-50%);
        width: 90%;
        max-width: none;
    }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.patreon-own,
.patreon-voted {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}
