/* OnDeck Styles - Combined from index.html */
/* Main Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Better text selection */
::selection {
    background: var(--accent-primary);
    color: white;
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-elevated);
    border-radius: 5px;
    border: 2px solid var(--bg-secondary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-dim);
}

:root {
    --bg-primary: #08080c;
    --bg-secondary: #0d0d12;
    --bg-tertiary: #131318;
    --bg-card: #18181f;
    --bg-elevated: #1e1e26;
    
    --accent-primary: #ff4d4d;
    --accent-secondary: #ff6b6b;
    --accent-glow: rgba(255, 77, 77, 0.4);
    --accent-subtle: rgba(255, 77, 77, 0.08);
    
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --text-dim: #52525b;
    
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.15);
    
    --netflix: #e50914;
    --max: #002be7;
    --disney: #113ccf;
    --prime: #00a8e1;
    --apple: #000000;
    --hulu: #1ce783;
    --peacock: #000000;
    --paramount: #0064ff;
    --theaters: #ffd700;
    --fx: #f7a400;
    --starz: #000000;
    --amc: #32cd32;
    
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    /* New enhanced variables */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* Refresh Button & API Status */
.refresh-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    border-radius: 20px;
    color: white;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.refresh-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.refresh-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.refresh-btn.loading .refresh-icon {
    animation: spin 1s linear infinite;
}

.refresh-icon {
    width: 16px;
    height: 16px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.api-status {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    border-radius: 10px;
    font-family: 'JetBrains Mono', monospace;
}

.api-status.success {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.api-status.error {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.api-status.loading {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

/* API Badge on Cards */
.api-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(59, 130, 246, 0.7);
    color: white;
    font-size: 0.5rem;
    padding: 0.15rem 0.35rem;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
    opacity: 0.6;
    pointer-events: none;
}

/* Hide TMDB badge on mobile to prevent overlap */
@media (max-width: 768px) {
    .api-badge {
        display: none;
    }
}

/* Modal Poster */
.modal-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.modal-poster.loaded {
    opacity: 0.4;
}

.modal-header:has(.modal-poster.loaded) .modal-monogram {
    opacity: 0;
}

/* Discover View */
.discover-view {
    display: none;
    padding: 2rem 0;
}

.discover-view.active {
    display: block;
}

/* Lists View */
.lists-view {
    display: none;
    padding: 2rem 0;
}

.lists-view.active {
    display: block;
    animation: fadeInView 0.4s ease;
}

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

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

.lists-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #f59e0b 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.lists-subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

.list-section {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.list-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 77, 77, 0.3), transparent);
}

.list-section-header {
    margin-bottom: 2rem;
}

.list-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.list-icon {
    font-size: 1.6rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.list-section-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.list-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    animation: listCardFadeIn 0.5s ease forwards;
}

.list-card:nth-child(1) { animation-delay: 0.05s; }
.list-card:nth-child(2) { animation-delay: 0.1s; }
.list-card:nth-child(3) { animation-delay: 0.15s; }
.list-card:nth-child(4) { animation-delay: 0.2s; }
.list-card:nth-child(5) { animation-delay: 0.25s; }
.list-card:nth-child(6) { animation-delay: 0.3s; }
.list-card:nth-child(7) { animation-delay: 0.35s; }
.list-card:nth-child(8) { animation-delay: 0.4s; }

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

.list-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 77, 77, 0.15);
}

.list-card-rank {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent-primary), #ff8080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: white;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.list-card:hover .list-card-rank {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 77, 77, 0.6);
}

.list-card-poster {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.list-card:hover .list-card-poster {
    transform: scale(1.05);
}

.list-card-body {
    padding: 1.25rem;
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
}

.list-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.list-card:hover .list-card-title {
    color: var(--accent-primary);
}

.list-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.list-card-platform {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.list-card-platform-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: 0 0 8px currentColor;
}

.list-card-date {
    color: var(--text-secondary);
    font-weight: 500;
}

.list-card-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--accent-primary);
    font-weight: 600;
    background: rgba(255, 77, 77, 0.1);
    padding: 0.35rem 0.7rem;
    border-radius: 20px;
    margin-top: 0.25rem;
}

.list-card-stat svg {
    width: 14px;
    height: 14px;
}

.list-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .lists-title {
        font-size: 1.8rem;
    }
    .list-section {
        padding: 1.25rem;
    }
    .list-grid {
        grid-template-columns: 1fr;
    }
}

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

.discover-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-primary), #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.discover-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.discover-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.discover-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.discover-section-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.tmdb-search-container,
.recommend-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.tmdb-search-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.25rem;
    background: var(--bg-tertiary);
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.tmdb-search-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px var(--accent-subtle);
}

.tmdb-search-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    border-radius: 12px;
    color: white;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tmdb-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.tmdb-search-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.recommend-type-toggle {
    display: flex;
    gap: 0.5rem;
    background: var(--bg-tertiary);
    padding: 0.25rem;
    border-radius: 10px;
}

.recommend-type-btn {
    padding: 0.6rem 1rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-muted);
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.recommend-type-btn.active {
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.recommend-btn {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.recommend-source {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
    display: none;
}

.recommend-source.active {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.recommend-source-poster {
    width: 60px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}

.recommend-source-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.recommend-source-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.tmdb-search-results,
.recommend-results,
.trending-results {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.discover-card {
    display: flex;
    gap: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.discover-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.discover-card-poster {
    width: 80px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--bg-elevated);
    flex-shrink: 0;
}

.discover-card-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.discover-card-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.discover-card-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.discover-card-overview {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.discover-card-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #fbbf24;
}

.discover-card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.discover-card-btn {
    padding: 0.4rem 0.75rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-family: 'Sora', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.discover-card-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

.discover-card-btn.added {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.discover-status-badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.discover-status-badge.upcoming {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.discover-status-badge.recent {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.discover-status-badge.released {
    background: var(--bg-elevated);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.trending-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.trending-tab {
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text-muted);
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.trending-tab.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

.discover-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

.discover-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

.discover-fallback-notice {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 10px;
    color: #f59e0b;
    font-size: 0.85rem;
}

.discover-btn-active {
    background: linear-gradient(135deg, #7c3aed, #a855f7) !important;
}

@media (max-width: 768px) {
    .discover-section {
        padding: 1.5rem;
    }
    
    .tmdb-search-container,
    .recommend-container {
        flex-direction: column;
    }
    
    .tmdb-search-input {
        width: 100%;
    }
    
    .tmdb-search-btn {
        width: 100%;
        justify-content: center;
    }
    
    .tmdb-search-results,
    .recommend-results,
    .trending-results {
        grid-template-columns: 1fr;
    }
}

/* Light Theme */
[data-theme="light"] {
    --bg-primary: #f8f9fa;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f1f3f4;
    --bg-card: #ffffff;
    --bg-elevated: #ffffff;
    
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a5a;
    --text-muted: #6b6b7a;
    --text-dim: #9a9aaa;
    
    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.15);
    
    --glass: rgba(0, 0, 0, 0.02);
    --glass-border: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .ambient {
    display: none;
}

[data-theme="light"] .noise {
    opacity: 0.02;
}

[data-theme="light"] .card {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

[data-theme="light"] .card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

[data-theme="light"] .hero {
    background: linear-gradient(135deg, #fff5f5 0%, #fef3f3 50%, #f8f9fa 100%);
    border: 1px solid var(--border);
}

[data-theme="light"] .stat-card {
    background: white;
    border: 1px solid var(--border);
}

[data-theme="light"] .quick-picks {
    background: white;
}

[data-theme="light"] .quick-pick-card {
    background: var(--bg-tertiary);
}

[data-theme="light"] .modal {
    background: white;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

[data-theme="light"] .toast {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

[data-theme="light"] #scrollProgress {
    background: linear-gradient(90deg, var(--accent-primary), #7c3aed);
}

/* Today's Releases Banner */
.today-banner {
    display: none;
    background: linear-gradient(90deg, var(--accent-primary), #7c3aed);
    padding: 0.6rem 1rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.today-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer-banner 3s infinite;
}

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

.today-banner:hover {
    filter: brightness(1.1);
}

.today-banner.show {
    display: block;
}

.today-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.today-banner-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.25rem;
    line-height: 1;
    z-index: 2;
}

.today-banner-close:hover {
    color: white;
}

/* Keyboard Shortcuts Help Modal */
.shortcuts-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.shortcuts-modal.show {
    opacity: 1;
    visibility: visible;
}

.shortcuts-content {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.shortcuts-modal.show .shortcuts-content {
    transform: scale(1);
}

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

.shortcuts-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shortcuts-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0.25rem;
    line-height: 1;
    transition: color 0.2s ease;
}

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

.shortcuts-group {
    margin-bottom: 1.5rem;
}

.shortcuts-group-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

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

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

.shortcut-keys {
    display: flex;
    gap: 0.35rem;
}

.shortcut-key {
    padding: 0.3rem 0.6rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.shortcut-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.shortcuts-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* Up Next Preview in Modal */
.up-next-preview {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.up-next-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.up-next-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.up-next-card:hover {
    border-color: var(--accent-primary);
    background: var(--bg-elevated);
    transform: translateX(4px);
}

.up-next-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    overflow: hidden;
}

.up-next-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.up-next-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.up-next-arrow {
    width: 20px;
    height: 20px;
    color: var(--text-dim);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.up-next-card:hover .up-next-arrow {
    color: var(--accent-primary);
    transform: translateX(3px);
}

/* Recently Viewed Section */
.recently-viewed {
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.recently-viewed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.recently-viewed-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.clear-recent-btn {
    padding: 0.3rem 0.6rem;
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.clear-recent-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.recently-viewed-list {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.recently-viewed-list::-webkit-scrollbar {
    height: 3px;
}

.recently-viewed-list::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

.recent-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.75rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.recent-item:hover {
    border-color: var(--accent-primary);
    background: var(--bg-elevated);
}

.recent-item-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.recent-item-title {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recent-item-meta {
    font-size: 0.65rem;
    color: var(--text-dim);
    white-space: nowrap;
}

/* Random Pick Menu */
.random-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.random-menu-btn {
    width: 24px;
    height: 32px;
    border-radius: 0 8px 8px 0;
    border: 1px solid var(--border);
    border-left: none;
    background: var(--bg-tertiary);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    transition: all 0.2s ease;
}

.random-wrap .view-toggle-btn {
    border-radius: 8px 0 0 8px;
}

.random-menu-btn:hover {
    background: var(--bg-elevated);
    color: var(--accent-primary);
}

.random-menu-btn svg {
    width: 14px;
    height: 14px;
}

.random-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0.5rem;
    min-width: 220px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.random-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.random-menu-header {
    padding: 0.5rem 0.75rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.random-menu-label {
    padding: 0.4rem 0.75rem 0.2rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
}

.random-menu-divider {
    height: 1px;
    background: var(--border);
    margin: 0.4rem 0;
}

.random-menu-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.6rem 0.75rem;
    background: none;
    border: none;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.random-menu-item:hover {
    background: var(--accent-subtle);
    color: var(--accent-primary);
}

.random-menu-item .platform-dot {
    width: 8px;
    height: 8px;
}

/* Watchlist Menu */
.watchlist-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.watchlist-menu-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-tertiary);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -4px;
    transition: all 0.2s ease;
}

.watchlist-menu-btn:hover {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border-color: var(--accent-primary);
}

.watchlist-menu-btn svg {
    width: 16px;
    height: 16px;
}

.watchlist-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 180px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.watchlist-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.watchlist-menu-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.6rem 0.75rem;
    background: none;
    border: none;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.watchlist-menu-item:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.watchlist-menu-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.watchlist-menu-item.danger {
    color: #ef4444;
}

.watchlist-menu-item.danger:hover {
    background: rgba(239, 68, 68, 0.1);
}

/* Streak Badge */
.streak-badge {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    background: linear-gradient(135deg, rgba(255, 150, 50, 0.15), rgba(255, 100, 50, 0.1));
    border: 1px solid rgba(255, 150, 50, 0.3);
    border-radius: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    cursor: default;
    transition: all 0.3s ease;
}

.streak-badge:hover {
    transform: scale(1.05);
    border-color: rgba(255, 150, 50, 0.5);
}

.streak-badge.milestone {
    animation: streak-glow 2s ease-in-out infinite;
}

@keyframes streak-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 150, 50, 0.3); }
    50% { box-shadow: 0 0 20px rgba(255, 150, 50, 0.5); }
}

.streak-fire {
    font-size: 1rem;
    animation: fire-flicker 1s ease-in-out infinite alternate;
}

@keyframes fire-flicker {
    0% { transform: scale(1) rotate(-3deg); }
    100% { transform: scale(1.1) rotate(3deg); }
}

.streak-count {
    font-weight: 700;
    color: #ff9632;
    font-size: 0.9rem;
}

.streak-label {
    color: var(--text-muted);
    font-size: 0.65rem;
}

.streak-badge.hidden {
    display: none;
}

@media (max-width: 768px) {
    .streak-badge {
        padding: 0.3rem 0.5rem;
    }
    .streak-label {
        display: none;
    }
}

/* Similar Releases in Modal */
.similar-releases {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.similar-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 0.6rem;
}

.similar-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.similar-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.7rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.similar-chip:hover {
    border-color: var(--accent-primary);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.similar-chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.similar-chip-title {
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-elevated);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(3deg); }
}

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

@keyframes slide-up {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-scale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

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

.loaded .card {
    animation: fadeIn 0.3s ease forwards, slide-up 0.5s ease forwards;
}

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

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px var(--accent-glow), 0 0 40px var(--accent-glow); }
    50% { box-shadow: 0 0 30px var(--accent-glow), 0 0 60px var(--accent-glow); }
}

@keyframes card-shine {
    0% { left: -100%; }
    100% { left: 200%; }
}

@keyframes float-particle {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    25% { 
        transform: translate(10px, -20px) scale(1.1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-5px, -40px) scale(0.9);
        opacity: 0.3;
    }
    75% { 
        transform: translate(-15px, -20px) scale(1.05);
        opacity: 0.6;
    }
}

@keyframes badge-pop {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

body {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Ambient Background */
.ambient {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.ambient-orb {
    display: none;
}

.ambient-orb:nth-child(1) {
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.ambient-orb:nth-child(2) {
    width: 500px;
    height: 500px;
    background: #7c3aed;
    bottom: -150px;
    right: -150px;
    animation-delay: -7s;
}

.ambient-orb:nth-child(3) {
    width: 400px;
    height: 400px;
    background: #0ea5e9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    opacity: 0.15;
}

.noise {
    position: fixed;
    inset: 0;
    z-index: 1;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* App Container */
.app {
    position: relative;
    z-index: 10;
    min-height: 100vh;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 2rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(8, 8, 12, 0.95);
    border-bottom: 1px solid var(--border);
    will-change: transform;
}

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

.brand-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-primary), #ff8080);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 30px var(--accent-glow);
    transition: transform 0.3s ease;
}

.brand-icon:hover {
    transform: scale(1.05) rotate(-5deg);
}

.brand-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 50%);
}

.brand-icon svg {
    width: 24px;
    height: 24px;
    color: white;
    position: relative;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-center {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px;
}

.nav-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 100px;
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-btn.active {
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.nav-btn.tv-active {
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.nav-btn.movie-active {
    background: #7c3aed;
    color: white;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.nav-btn.discover-active {
    background: linear-gradient(135deg, #7c3aed, var(--accent-primary));
    color: white;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.nav-btn.lists-active {
    background: linear-gradient(135deg, var(--accent-primary), #f59e0b);
    color: white;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.discover-nav-btn {
    position: relative;
}

.nav-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
    margin: 0 0.25rem;
}

.about-link {
    text-decoration: none;
    color: var(--text-muted);
}

.about-link:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-wrap {
    position: relative;
}

.search-input {
    width: 280px;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: var(--text-dim);
}

.search-input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--accent-subtle);
    width: 320px;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--text-dim);
    cursor: pointer;
    transition: color 0.2s ease;
}

.search-icon:hover {
    color: var(--accent-primary);
}

.search-shortcut {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 2px 6px;
    background: var(--bg-elevated);
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-dim);
    border: 1px solid var(--border);
}

.saved-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-secondary);
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.saved-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.saved-btn.active {
    background: var(--accent-subtle);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.saved-btn svg {
    width: 18px;
    height: 18px;
}

.saved-count {
    background: var(--accent-primary);
    color: white;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 0.75rem;
}

.view-toggle-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg-tertiary);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.view-toggle-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.view-toggle-btn.active {
    background: var(--accent-subtle);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.view-toggle-btn svg {
    width: 20px;
    height: 20px;
}

/* Main Content */
.main {
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(-45deg, var(--bg-secondary), var(--bg-tertiary), rgba(255, 77, 77, 0.05), rgba(124, 58, 237, 0.05));
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 3rem;
    margin-bottom: 3rem;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

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

.hero.discover-mode {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(124, 58, 237, 0.1) 100%);
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.5rem 3rem;
}

.hero.discover-mode::before {
    background: linear-gradient(90deg, transparent, #7c3aed, var(--accent-primary), transparent);
}

.hero.discover-mode .hero-glow {
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
    top: -50px;
    right: 50%;
    transform: translateX(50%);
}

.hero.discover-mode .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero.discover-mode .hero-title {
    font-size: 2.5rem;
}

.hero.discover-mode .hero-meta {
    color: var(--text-secondary);
    font-size: 1rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), #7c3aed, transparent);
}

.hero-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particle {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    background: var(--accent-primary);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.hero-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-secondary);
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hero-meta {
    font-size: 1rem;
    color: var(--text-secondary);
}

.hero-meta strong {
    color: var(--accent-secondary);
}

.hero-genres {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.genre-tag {
    padding: 0.35rem 0.75rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.countdown {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.countdown-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(180deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    min-width: 90px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 77, 77, 0.3), transparent);
}

.countdown-item:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 77, 77, 0.1);
}

.countdown-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 0 30px var(--accent-glow);
}

.countdown-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-top: 0.5rem;
}

/* Quick Stats */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--stat-color, var(--accent-primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:nth-child(1) { --stat-color: var(--accent-primary); }
.stat-card:nth-child(2) { --stat-color: #7c3aed; }
.stat-card:nth-child(3) { --stat-color: #0ea5e9; }
.stat-card:nth-child(4) { --stat-color: #10b981; }

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--glass);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--stat-color, var(--accent-primary));
}

.stat-icon svg {
    width: 20px;
    height: 20px;
}

.stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--stat-color, var(--text-primary));
    line-height: 1;
}

/* Filter Bar */
.filter-bar {
    position: sticky;
    top: 80px;
    z-index: 50;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-bottom: 0;
    padding: 1rem 1.5rem;
    background: rgba(13, 13, 18, 0.98);
    border: 1px solid var(--border);
    border-radius: 16px 16px 0 0;
    transition: none;
    will-change: transform;
}

.filter-bar.scrolled {
    border-radius: 0 0 16px 16px;
    border-top: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.filter-bar::-webkit-scrollbar {
    height: 4px;
}

.filter-bar::-webkit-scrollbar-track {
    background: transparent;
}

.filter-bar::-webkit-scrollbar-thumb {
    background: var(--bg-elevated);
    border-radius: 2px;
}

.filter-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    white-space: nowrap;
}

.filter-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
}

.filter-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Platform row - full width on its own line */
.platform-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: -1rem;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(13, 13, 18, 0.98);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 16px 16px;
    will-change: transform;
}

.desktop-only {
    display: none;
}

#platformFilters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-secondary);
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.filter-chip:hover {
    border-color: var(--text-muted);
    color: var(--text-primary);
}

.filter-chip.active {
    background: var(--accent-subtle);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Today filter with pulsing effect */
.filter-chip.today-chip {
    position: relative;
}

.filter-chip.today-chip.active {
    background: linear-gradient(135deg, rgba(255, 77, 77, 0.2), rgba(255, 77, 77, 0.1));
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    animation: today-pulse 2s ease-in-out infinite;
}

@keyframes today-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(255, 77, 77, 0); }
}

.platform-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.platform-dot.netflix { background: var(--netflix); }
.platform-dot.max { background: var(--max); }
.platform-dot.disney { background: var(--disney); }
.platform-dot.prime { background: var(--prime); }
.platform-dot.apple { background: linear-gradient(135deg, #555 0%, #000 100%); border: 1px solid #333; }
.platform-dot.hulu { background: var(--hulu); }
.platform-dot.peacock { background: linear-gradient(135deg, #ff0080, #7928ca, #00d4aa); }
.platform-dot.paramount { background: var(--paramount); }
.platform-dot.theaters { background: var(--theaters); }
.platform-dot.fx { background: var(--fx); }
.platform-dot.starz { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); border: 1px solid #333; }
.platform-dot.amc { background: var(--amc); }

/* Content Sections */
.section {
    margin-bottom: 3rem;
    animation: slide-up 0.6s ease forwards;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-count {
    padding: 0.3rem 0.8rem;
    background: var(--accent-primary);
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.section-count.muted {
    background: var(--bg-elevated);
    color: var(--text-muted);
}

.section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border), transparent);
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1.5rem;
}

/* Skeleton Loading Animation */
@keyframes skeleton-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton {
    background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--bg-elevated) 50%, var(--bg-tertiary) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 8px;
}

.card-poster.loading {
    background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--bg-elevated) 50%, var(--bg-tertiary) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
}

/* Card */
.card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    opacity: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    will-change: transform;
    contain: layout style paint;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

.card.now-playing {
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px var(--accent-glow);
}

.card-visual {
    position: relative;
    height: 160px;
    background: linear-gradient(135deg, var(--card-accent, var(--accent-primary)) 0%, var(--bg-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* When card has a poster, show it cleanly */
.card.has-poster .card-visual {
    background: var(--bg-primary);
}

.card.has-poster .card-visual::before {
    display: none;
}

.card.has-poster .card-monogram {
    display: none;
}

.card-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-poster {
    transform: scale(1.08);
}

/* Poster overlay gradient for better text readability */
.card.has-poster .card-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg, 
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.1) 50%,
        rgba(0,0,0,0.6) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.card.has-poster .card-badges {
    z-index: 3;
}

.card.has-poster .card-quick-actions {
    z-index: 3;
}

.card-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 100% at 20% 10%, rgba(255,255,255,0.1) 0%, transparent 50%),
        linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
}

.card-monogram {
    font-family: 'JetBrains Mono', monospace;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.06);
    letter-spacing: 8px;
    text-transform: uppercase;
}

.card-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.badge {
    padding: 0.4rem 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.badge-type {
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-type.tv { background: var(--accent-primary); }
.badge-type.movie { background: #7c3aed; }

.badge-thisweek {
    position: absolute;
    top: 1rem;
    right: 4.5rem;
    padding: 0.35rem 0.6rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

.badge-now {
    position: absolute;
    top: 1rem;
    right: 4.5rem;
    padding: 0.35rem 0.6rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

.badge-countdown {
    position: absolute;
    top: 1rem;
    right: 4.5rem;
    padding: 0.35rem 0.6rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    z-index: 2;
    animation: pulse 1.5s ease-in-out infinite;
}

.card.very-close {
    border-color: rgba(239, 68, 68, 0.5);
}

.card.very-close:hover {
    box-shadow: 
        0 30px 60px -20px rgba(0, 0, 0, 0.5),
        0 0 40px -10px rgba(239, 68, 68, 0.4);
}

.badge-big {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 0.35rem 0.6rem;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.card.big-release {
    border-color: rgba(255, 215, 0, 0.3);
}

.card.big-release .card-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.card-rating {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.6rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: #ffd700;
    z-index: 2;
}

.card-rating svg {
    width: 12px;
    height: 12px;
    fill: #ffd700;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.card-subtitle {
    font-size: 0.85rem;
    color: var(--accent-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-genres {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.card-genre {
    padding: 0.2rem 0.5rem;
    background: var(--glass);
    border-radius: 4px;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.card-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.card-date svg {
    width: 16px;
    height: 16px;
}

.card-date.soon {
    color: var(--accent-primary);
    font-weight: 700;
}

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

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-tertiary);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--accent-primary) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.action-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: var(--accent-subtle);
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 4px 12px rgba(255, 77, 77, 0.3);
}

.action-btn:hover::before {
    opacity: 0.1;
    transform: scale(2);
}

.action-btn:active {
    transform: scale(0.95);
}

.action-btn.saved {
    border-color: var(--accent-primary);
    background: var(--accent-primary);
    color: white;
    animation: save-pop 0.3s ease;
}

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

.action-btn svg {
    width: 16px;
    height: 16px;
}

/* Empty State */
.empty {
    text-align: center;
    padding: 5rem 2rem;
    grid-column: 1 / -1;
}

.empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--text-dim);
    animation: float 4s ease-in-out infinite;
}

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

.empty-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent-primary);
    border: none;
    border-radius: 100px;
    color: white;
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.empty-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.empty-btn svg {
    width: 16px;
    height: 16px;
}

/* Load More Button */
.load-more-btn {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    margin: 1rem auto;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-secondary);
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    max-width: 300px;
    width: 100%;
}

.load-more-btn:hover {
    background: var(--bg-elevated);
    border-color: var(--accent-primary);
    color: var(--text-primary);
}

/* Last Updated Badge */
.last-updated {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.last-updated .pulse-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    overflow-y: auto;
    padding: 2rem 0;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
}

.modal {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 32px;
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.open .modal {
    transform: scale(1) translateY(0);
}

.modal-header {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--modal-accent, var(--accent-primary)) 0%, var(--bg-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-secondary), transparent);
}

.modal-monogram {
    font-family: 'JetBrains Mono', monospace;
    font-size: 7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    letter-spacing: 12px;
    text-transform: uppercase;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--accent-primary);
    transform: rotate(90deg);
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-body {
    padding: 2rem 2.5rem 4rem;
}

.modal-badges {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: var(--accent-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.modal-genres {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.modal-genre {
    padding: 0.4rem 0.8rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.modal-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* External Ratings (IMDB, RT, Metascore) */
.external-ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.external-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    background: var(--bg-primary);
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.external-rating:hover {
    border-color: var(--text-muted);
    transform: translateY(-1px);
}

.rating-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.rating-icon.imdb-icon {
    color: #f5c518;
}

.rating-icon.rt-icon {
    font-size: 1rem;
    width: auto;
    height: auto;
}

.rating-value {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.rating-value.meta-score {
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.rating-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Rating colors */
.external-rating.rating-good .rating-value {
    color: #22c55e;
}

.external-rating.rating-mid .rating-value {
    color: #eab308;
}

.external-rating.rating-bad .rating-value {
    color: #ef4444;
}

.external-rating.rating-fresh {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    border-color: rgba(239, 68, 68, 0.3);
}

.external-rating.rating-fresh .rating-value {
    color: #ef4444;
}

.external-rating.rating-rotten {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.1), rgba(107, 114, 128, 0.05));
    border-color: rgba(107, 114, 128, 0.3);
}

.external-rating.rating-rotten .rating-value {
    color: #6b7280;
}

.external-rating.rating-good .meta-score {
    background: #22c55e;
    color: white;
}

.external-rating.rating-mid .meta-score {
    background: #eab308;
    color: #1a1a1a;
}

.external-rating.rating-bad .meta-score {
    background: #ef4444;
    color: white;
}

.modal-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: 16px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.meta-item svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.modal-actions {
    display: flex;
    gap: 1rem;
}

.modal-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    border: none;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modal-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.modal-btn:hover::before {
    opacity: 1;
}

.modal-btn:active {
    transform: scale(0.98);
}

.modal-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.25s ease;
}

.modal-btn:hover svg {
    transform: scale(1.1);
}

.modal-btn.primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3);
}

.modal-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--accent-glow);
}

.modal-btn.secondary {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.modal-btn.secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: var(--accent-subtle);
    transform: translateY(-2px);
}

.modal-btn.secondary.saved {
    background: var(--accent-subtle);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    animation: save-pop 0.3s ease;
}

/* Calendar View */
.list-view {
    display: block;
}

.calendar-view {
    display: none;
}

.calendar-view.active {
    display: block;
}

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

.calendar-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.calendar-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-tertiary);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.calendar-nav-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.calendar-nav-btn svg {
    width: 20px;
    height: 20px;
}

.calendar-month {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1rem;
}

.calendar-day-header {
    text-align: center;
    padding: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
}

.calendar-day {
    min-height: 120px;
    padding: 0.75rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: all 0.25s ease;
}

.calendar-day:hover {
    background: var(--bg-elevated);
    transform: scale(1.02);
}

.calendar-day.other-month {
    opacity: 0.3;
}

.calendar-day.today {
    border: 2px solid var(--accent-primary);
    box-shadow: 0 0 20px var(--accent-glow);
}

.calendar-day.has-release {
    background: var(--accent-subtle);
}

.calendar-day-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.calendar-day.today .calendar-day-num {
    color: var(--accent-primary);
}

.calendar-releases {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.calendar-release-item {
    padding: 4px 8px;
    background: var(--bg-card);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-left: 3px solid var(--item-color, var(--accent-primary));
}

.calendar-more {
    font-size: 0.65rem;
    color: var(--text-muted);
    padding: 2px 8px;
}

/* Toast Notification */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    padding: 1rem 1.5rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 16px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05) inset;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-color: #10b981;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.toast.success::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.toast.info {
    border-color: #3b82f6;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.toast.info::before {
    content: 'i';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    font-style: italic;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.toast.celebration {
    border-color: #f59e0b;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(245, 158, 11, 0.15) 100%);
    animation: celebrate-pulse 0.6s ease;
}

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

.toast.celebration::before {
    content: '🎉';
    font-size: 1.3rem;
}

/* First visit tip banner */
.tip-banner {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    max-width: 300px;
    padding: 1rem 1.25rem;
    background: var(--bg-elevated);
    border: 1px solid var(--accent-primary);
    border-radius: 16px;
    color: var(--text-primary);
    font-size: 0.85rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4), 0 0 20px var(--accent-glow);
    z-index: 99;
    animation: slide-up 0.5s ease;
}

.tip-banner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.tip-banner-title {
    font-weight: 700;
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tip-banner-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1.2rem;
    line-height: 1;
}

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

.tip-banner p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.tip-banner kbd {
    padding: 0.15rem 0.4rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
}

.mobile-search-btn {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-tertiary);
    color: var(--text-muted);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-search-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.mobile-search-btn svg {
    width: 18px;
    height: 18px;
}

/* Mobile filter toggle */
.mobile-filter-row {
    display: none;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-filter-row::-webkit-scrollbar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-filter-row {
        display: flex;
    }
}

.mobile-filter-chip {
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-secondary);
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.mobile-filter-chip.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

.mobile-filter-chip.tv-active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

.mobile-filter-chip.movie-active {
    background: #7c3aed;
    border-color: #7c3aed;
    color: white;
}

/* Card hover tooltip */
.card-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding: 0.5rem 0.75rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.7rem;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 10;
    pointer-events: none;
}

.card:hover .card-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* Improve action button with tooltip */
.action-btn {
    position: relative;
}

.action-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 0.5rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.65rem;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    margin-bottom: 5px;
}

.action-btn:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Progress bar for releases this month */
.month-progress {
    height: 4px;
    background: var(--bg-tertiary);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.month-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), #7c3aed);
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* Quick action bar for cards */
.card-quick-actions {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%) translateX(10px);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.card:hover .card-quick-actions {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.quick-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--bg-primary);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.quick-action-btn:hover {
    background: var(--accent-primary);
    color: white;
    transform: scale(1.1);
}

.quick-action-btn svg {
    width: 16px;
    height: 16px;
}

/* Share Menu */
.share-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.share-menu-overlay.show { opacity: 1; visibility: visible; }
.share-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 1.75rem;
    min-width: 320px;
    max-width: 90vw;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}
.share-menu.show { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.share-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.share-menu-title { font-size: 1.2rem; font-weight: 700; color: var(--text-primary); display: flex; align-items: center; gap: 0.6rem; }
.share-menu-close { width: 36px; height: 36px; border-radius: 50%; border: none; background: var(--bg-tertiary); color: var(--text-muted); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.25s ease; }
.share-menu-close:hover { background: var(--accent-primary); color: white; transform: rotate(90deg); }
.share-menu-content { margin-bottom: 1.25rem; }
.share-menu-item-title { font-weight: 600; color: var(--text-primary); margin-bottom: 0.35rem; font-size: 1rem; }
.share-menu-item-subtitle { font-size: 0.85rem; color: var(--text-muted); }
.share-menu-buttons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; margin-bottom: 1.25rem; }
.share-btn { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding: 1rem 0.5rem; border: 1px solid var(--border); border-radius: 16px; background: var(--bg-tertiary); color: var(--text-secondary); cursor: pointer; transition: all 0.25s ease; text-decoration: none; font-family: inherit; }
.share-btn:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); }
.share-btn:active { transform: translateY(-2px); }
.share-btn svg { width: 26px; height: 26px; transition: transform 0.2s ease; }
.share-btn:hover svg { transform: scale(1.1); }
.share-btn span { font-size: 0.75rem; font-weight: 600; }
.share-btn.twitter:hover { background: rgba(29, 155, 240, 0.15); color: #1d9bf0; border-color: #1d9bf0; }
.share-btn.facebook:hover { background: rgba(24, 119, 242, 0.15); color: #1877f2; border-color: #1877f2; }
.share-btn.reddit:hover { background: rgba(255, 69, 0, 0.15); color: #ff4500; border-color: #ff4500; }
.share-btn.whatsapp:hover { background: rgba(37, 211, 102, 0.15); color: #25d366; border-color: #25d366; }
.share-copy-section { display: flex; gap: 0.6rem; }
.share-copy-input { flex: 1; padding: 0.9rem 1rem; border: 1px solid var(--border); border-radius: 12px; background: var(--bg-tertiary); color: var(--text-primary); font-family: monospace; font-size: 0.85rem; outline: none; transition: border-color 0.2s ease; }
.share-copy-input:focus { border-color: var(--accent-primary); }
.share-copy-btn { padding: 0.9rem 1.25rem; border: none; border-radius: 12px; background: linear-gradient(135deg, var(--accent-primary), #ff8080); color: white; font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: all 0.25s ease; font-family: inherit; }
.share-copy-btn:hover { transform: scale(1.05); box-shadow: 0 8px 25px rgba(255, 77, 77, 0.4); }
.share-copy-btn.copied { background: linear-gradient(135deg, #10b981, #34d399); }
@media (max-width: 400px) { .share-menu-buttons { grid-template-columns: repeat(2, 1fr); } .share-menu { min-width: unset; width: 90vw; } }

/* Skeleton loading state */
.skeleton {
    background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--bg-elevated) 50%, var(--bg-tertiary) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

/* Section divider with icon */
.section-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    color: var(--text-dim);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* Quick Picks Section */
.quick-picks {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
}

.quick-picks-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
}

.quick-picks-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.quick-picks-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Up Next Section */
.up-next-section {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
}

.up-next-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.up-next-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.up-next-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.up-next-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.75rem;
}

.up-next-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.up-next-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.up-next-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.up-next-info {
    flex: 1;
    min-width: 0;
}

.up-next-name {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.up-next-meta {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.up-next-date {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

.up-next-date.up-next-soon {
    color: var(--accent-primary);
}

.quick-picks-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.quick-picks-scroll::-webkit-scrollbar {
    height: 4px;
}

.quick-picks-scroll::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: 2px;
}

.quick-picks-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 2px;
}

.quick-pick-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-pick-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--card-accent, var(--accent-primary));
}

.quick-pick-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.quick-pick-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.quick-pick-badge {
    padding: 0.25rem 0.5rem;
    background: var(--card-accent, var(--accent-primary));
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-pick-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.quick-pick-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.quick-pick-subtitle {
    font-size: 0.8rem;
    color: var(--accent-secondary);
    margin-bottom: 0.5rem;
}

.quick-pick-platform {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* New release badge */
.badge-new {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.badge-new::before {
    content: '';
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Staggered card entrance */
@keyframes card-enter {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card {
    animation: card-enter 0.4s ease backwards;
}

/* Today indicator in dates */
.date-today {
    color: var(--accent-primary) !important;
    font-weight: 700;
}

/* Watchlist empty state improvement */
.watchlist-cta {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border: 2px dashed var(--border);
    border-radius: 20px;
    margin: 1rem 0;
}

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

.watchlist-cta-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.watchlist-cta-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.watchlist-cta-btn {
    padding: 0.6rem 1.2rem;
    background: var(--accent-primary);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.watchlist-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px var(--accent-glow);
}

/* Platform filter with release count */
.filter-chip-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--bg-primary);
    border-radius: 9px;
    font-size: 0.65rem;
    font-weight: 700;
    margin-left: 0.4rem;
    color: var(--text-muted);
}

.filter-chip.active .filter-chip-count {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* Sort Select Dropdown */
.sort-select {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-secondary);
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

.sort-select:hover {
    border-color: var(--accent-primary);
}

.sort-select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--accent-subtle);
}

.sort-select option {
    background: var(--bg-elevated);
    color: var(--text-primary);
    padding: 0.5rem;
}

[data-theme="light"] .sort-select {
    background-color: white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234a4a5a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

/* Quick pick hover effect */
.quick-pick-card::after {
    content: 'View Details →';
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 0.7rem;
    color: var(--text-dim);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.quick-pick-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 1rem;
        height: 70px;
    }

    .header-center {
        display: none;
    }

    .search-input {
        width: 120px;
    }

    .search-input:focus {
        width: 140px;
    }

    .saved-btn span:not(.saved-count) {
        display: none;
    }

    .saved-btn {
        padding: 0.6rem 0.75rem;
        gap: 0.4rem;
    }

    .view-toggle-btn {
        width: 40px;
        height: 40px;
    }

    .header-right {
        gap: 0.5rem;
    }

    /* Hide calendar toggle on mobile to save space */
    #calendarToggle {
        display: none;
    }

    .main {
        padding: 1rem;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .countdown {
        justify-content: center;
    }

    .countdown-item {
        padding: 1rem;
        min-width: 70px;
    }

    .countdown-num {
        font-size: 1.75rem;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .filter-bar {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }

    .filter-label {
        display: none;
    }

    .filter-divider {
        display: none;
    }

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

    .modal {
        margin: 0.5rem;
        border-radius: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .search-shortcut {
        display: none;
    }

    .calendar-day {
        min-height: 80px;
        padding: 0.5rem;
    }

    .calendar-day-header {
        font-size: 0.6rem;
        padding: 0.5rem;
    }

    .calendar-release-item {
        font-size: 0.6rem;
        padding: 2px 4px;
    }

    .hero-genres {
        flex-wrap: wrap;
    }

    .tip-banner {
        right: 1rem;
        left: 1rem;
        bottom: 5rem;
        max-width: none;
    }

    .brand-text {
        font-size: 1.25rem;
    }

    .brand-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0 0.75rem;
        height: 60px;
    }

    .search-wrap {
        display: none;
    }

    .brand-text {
        display: none;
    }

    .header-right {
        flex: 1;
        justify-content: flex-end;
    }

    /* Show a search icon button instead on very small screens */
    .mobile-search-btn {
        display: flex !important;
    }

    .countdown-item {
        padding: 0.75rem;
        min-width: 60px;
    }

    .countdown-num {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-badge {
        font-size: 0.6rem;
        padding: 0.4rem 0.75rem;
    }
}

/* PWA Install Prompt Styles */
/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(8, 8, 12, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    z-index: 1000;
    padding: 0.5rem 0.25rem;
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    
    /* Add padding to main content so it's not hidden behind nav */
    .main {
        padding-bottom: 90px !important;
    }
    
    /* Hide the header nav buttons on mobile */
    .header-center {
        display: none !important;
    }
    
    /* Adjust footer */
    footer {
        padding-bottom: 80px !important;
    }
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.6rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    min-width: 60px;
}

.mobile-nav-item svg {
    width: 24px;
    height: 24px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-item.active {
    color: var(--accent-primary);
}

.mobile-nav-item.active svg {
    transform: scale(1.15);
    filter: drop-shadow(0 2px 8px var(--accent-glow));
}

.mobile-nav-item.active::before {
    content: '';
    position: absolute;
    top: 4px;
    width: 4px;
    height: 4px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-primary);
}

.mobile-nav-item:active {
    transform: scale(0.92);
}

/* Discover button special style */
.mobile-nav-item.discover-nav .discover-nav-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-primary), #ff8080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
    box-shadow: 0 4px 20px var(--accent-glow);
    transition: all 0.2s ease;
}

.mobile-nav-item.discover-nav .discover-nav-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.mobile-nav-item.discover-nav:active .discover-nav-icon {
    transform: scale(0.9);
}

.mobile-nav-item.discover-nav span {
    margin-top: 0.25rem;
}

/* Badge for saved count */
.mobile-nav-badge {
    position: absolute;
    top: 2px;
    right: 8px;
    min-width: 16px;
    height: 16px;
    background: var(--accent-primary);
    border-radius: 8px;
    font-size: 0.6rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Swipe gesture hint */
@media (max-width: 768px) {
    .card {
        touch-action: pan-y;
    }
}

/* Onboarding Styles */
/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 90;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.back-to-top:hover {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 90px;
        right: 1rem;
        width: 44px;
        height: 44px;
    }
}

/* Confetti Canvas */
#confettiCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* Onboarding Tutorial */
.onboarding-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.onboarding-overlay.active {
    opacity: 1;
    visibility: visible;
}

.onboarding-modal {
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 3rem;
    max-width: 420px;
    width: 90%;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.onboarding-overlay.active .onboarding-modal {
    transform: scale(1) translateY(0);
}

.onboarding-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.onboarding-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.onboarding-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.onboarding-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.onboarding-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.onboarding-dot.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: scale(1.2);
    box-shadow: 0 0 12px var(--accent-glow);
}

.onboarding-actions {
    display: flex;
    gap: 1rem;
}

.onboarding-skip {
    flex: 1;
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.onboarding-skip:hover {
    border-color: var(--text-muted);
    color: var(--text-primary);
}

.onboarding-next {
    flex: 2;
    padding: 1rem;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.onboarding-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

/* Additional Styles */
#pwaInstallPrompt {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
}

#pwaInstallPrompt.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.pwa-prompt {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

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

.pwa-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pwa-text strong {
    color: var(--text-primary);
    font-size: 1rem;
}

.pwa-text span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.pwa-install {
    padding: 0.6rem 1.2rem;
    background: var(--accent-primary);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pwa-install:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.pwa-dismiss {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--bg-tertiary);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.pwa-dismiss:hover {
    background: var(--accent-primary);
    color: white;
}

@media (max-width: 600px) {
    #pwaInstallPrompt {
        left: 1rem;
        right: 1rem;
        transform: translateX(0) translateY(100px);
        bottom: 80px;
    }
    
    #pwaInstallPrompt.show {
        transform: translateX(0) translateY(0);
    }
    
    .pwa-prompt {
        flex-wrap: wrap;
    }
    
    .pwa-text {
        flex: 1;
        min-width: 150px;
    }
}

/* ==========================================
   NOTIFICATION BELL & PANEL
   ========================================== */

.notification-wrap {
    position: relative;
    z-index: 1001;
}

.notification-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg-tertiary);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.notification-btn:hover {
    background: var(--bg-elevated);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.notification-btn svg {
    width: 20px;
    height: 20px;
}

.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--accent-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badge-pulse 2s ease-in-out infinite;
}

.notification-badge.hidden {
    display: none;
}

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

.notification-panel {
    position: fixed;
    top: 90px;
    right: 20px;
    width: 340px;
    max-height: 450px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.05);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.notification-panel.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.notification-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
}

.notification-panel-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.enable-notifications-btn {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--accent-primary), #ff6b6b);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px var(--accent-glow);
}

.enable-notifications-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.notification-list {
    max-height: 340px;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.notification-list::-webkit-scrollbar {
    width: 6px;
}

.notification-list::-webkit-scrollbar-thumb {
    background: var(--bg-elevated);
    border-radius: 3px;
}

.notification-empty {
    padding: 3rem 1.5rem;
    text-align: center;
}

.notification-empty-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.notification-empty p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.notification-empty p:last-child {
    font-size: 0.85rem;
    opacity: 0.7;
}

.notification-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border);
}

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

.notification-item:hover {
    background: var(--bg-elevated);
}

.notification-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ==========================================
   SKELETON CARDS (Enhanced)
   ========================================== */

.skeleton-card {
    pointer-events: none;
}

.skeleton-card .card-visual {
    position: relative;
    height: 200px;
    background: var(--bg-tertiary);
    overflow: hidden;
}

.skeleton-poster {
    background: linear-gradient(90deg, 
        var(--bg-tertiary) 0%, 
        var(--bg-elevated) 20%, 
        var(--bg-elevated) 40%, 
        var(--bg-tertiary) 60%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

.skeleton-card .card-body {
    padding: 1.25rem;
}

.skeleton-title,
.skeleton-subtitle,
.skeleton-desc {
    background: linear-gradient(90deg, 
        var(--bg-tertiary) 0%, 
        var(--bg-elevated) 20%, 
        var(--bg-elevated) 40%, 
        var(--bg-tertiary) 60%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
    border-radius: 4px;
}

.skeleton-title {
    animation-delay: 0.1s;
}

.skeleton-subtitle {
    animation-delay: 0.2s;
}

.skeleton-desc {
    animation-delay: 0.3s;
}

/* Stagger animation for multiple skeleton cards */
.skeleton-card:nth-child(2) .skeleton-poster { animation-delay: 0.1s; }
.skeleton-card:nth-child(3) .skeleton-poster { animation-delay: 0.2s; }
.skeleton-card:nth-child(4) .skeleton-poster { animation-delay: 0.3s; }
.skeleton-card:nth-child(5) .skeleton-poster { animation-delay: 0.4s; }
.skeleton-card:nth-child(6) .skeleton-poster { animation-delay: 0.5s; }

/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */

@media (max-width: 768px) {
    .notification-panel {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 60vh;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
    }
    
    .notification-panel.show {
        transform: translateY(0);
    }
    
    .notification-btn {
        width: 40px;
        height: 40px;
    }
}
