@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   CSS VARIABLES & DESIGN TOKENS
   ============================================ */
:root {
    /* Dark Mode (Default) */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #16161f;
    --bg-card-hover: #1e1e2a;
    --bg-glass: rgba(255, 255, 255, 0.04);
    --bg-glass-hover: rgba(255, 255, 255, 0.08);
    --bg-input: #1a1a25;
    --bg-overlay: rgba(0, 0, 0, 0.75);

    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --text-accent: #e50914;

    --accent: #e50914;
    --accent-hover: #ff1a1a;
    --accent-gradient: linear-gradient(135deg, #e50914, #ff6b6b);
    --accent-glow: 0 0 20px rgba(229, 9, 20, 0.3);

    --gold: #fbbf24;
    --green: #10b981;
    --blue: #3b82f6;

    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;

    --bottom-nav-height: 64px;
    --header-height: 56px;
}

[data-theme="light"] {
    --bg-primary: #f5f5f7;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f0f5;
    --bg-glass: rgba(0, 0, 0, 0.03);
    --bg-glass-hover: rgba(0, 0, 0, 0.06);
    --bg-input: #f0f0f5;
    --bg-overlay: rgba(0, 0, 0, 0.5);

    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;

    --border: rgba(0, 0, 0, 0.06);
    --border-light: rgba(0, 0, 0, 0.1);

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    padding-bottom: calc(var(--bottom-nav-height) + 16px);
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

input,
select,
textarea {
    font-family: inherit;
    color: var(--text-primary);
}

::-webkit-scrollbar {
    display: none;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(to bottom, var(--bg-primary), rgba(10, 10, 15, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
}

[data-theme="light"] .header {
    background: linear-gradient(to bottom, var(--bg-secondary), rgba(255, 255, 255, 0.95));
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    transition: var(--transition);
    color: var(--text-secondary);
}

.icon-btn:hover,
.icon-btn:active {
    background: var(--bg-glass-hover);
    color: var(--text-primary);
}

.icon-btn svg {
    width: 20px;
    height: 20px;
}

/* Search Bar */
.search-bar {
    position: relative;
}

.search-input {
    width: 100%;
    height: 40px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 0 16px 0 40px;
    font-size: 14px;
    color: var(--text-primary);
    transition: var(--transition);
    outline: none;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-input:focus {
    border-color: var(--accent);
    background: var(--bg-input);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 16px;
    height: 16px;
}

.search-clear {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    color: var(--text-muted);
    font-size: 14px;
}

.search-clear.visible {
    display: flex;
}

/* Search Results */
.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    max-height: 400px;
    overflow-y: auto;
    z-index: 200;
    display: none;
}

.search-results.active {
    display: block;
    animation: slideDown 0.2s ease;
}

.search-result-item {
    display: flex;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    transition: var(--transition-fast);
    cursor: pointer;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover,
.search-result-item:active {
    background: var(--bg-glass-hover);
}

.search-result-poster {
    width: 45px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: var(--bg-glass);
    flex-shrink: 0;
}

.search-result-info h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
    line-height: 1.3;
}

.search-result-info p {
    font-size: 11px;
    color: var(--text-muted);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    height: 260px;
    overflow: hidden;
    margin: 0 10px 4px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-slide-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-primary) 0%, transparent 60%),
        linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
}

.hero-slide-content {
    position: absolute;
    bottom: 24px;
    left: 16px;
    right: 16px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    background: var(--accent);
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: white;
}

.hero-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    color: white;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-meta .rating {
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--gold);
    font-weight: 600;
}

.hero-dots {
    position: absolute;
    bottom: 10px;
    right: 16px;
    display: flex;
    gap: 6px;
    z-index: 3;
}

.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    cursor: pointer;
}

.hero-dot.active {
    width: 20px;
    background: var(--accent);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 16px 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 10px 12px;
}

.section-title {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.section-more {
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition-fast);
}

.section-more:hover {
    color: var(--accent-hover);
}

/* Horizontal Scroll */
.scroll-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 0;
    margin: 0 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.scroll-row::-webkit-scrollbar {
    display: none;
}

/* ============================================
   DRAMA CARDS
   ============================================ */
.drama-card {
    flex-shrink: 0;
    width: 120px;
    scroll-snap-align: start;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.drama-card-poster {
    position: relative;
    width: 120px;
    height: 170px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.drama-card-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.drama-card:hover .drama-card-poster img,
.drama-card:active .drama-card-poster img {
    transform: scale(1.08);
}

.drama-card-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 2px 7px;
    border-radius: var(--radius-sm);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    z-index: 2;
}

.badge-ongoing {
    background: var(--green);
    color: white;
}

.badge-completed {
    background: var(--blue);
    color: white;
}

.badge-new {
    background: var(--accent);
    color: white;
}

.drama-card-rating {
    position: absolute;
    bottom: 6px;
    right: 6px;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 2px 6px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-weight: 600;
    color: var(--gold);
}

.drama-card-rating svg {
    width: 10px;
    height: 10px;
    fill: var(--gold);
}

.drama-card-ep {
    position: absolute;
    bottom: 6px;
    left: 6px;
    padding: 2px 6px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-sm);
    font-size: 9px;
    font-weight: 600;
    color: white;
}

.drama-card-title {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    min-height: calc(2 * 12px * 1.3);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.drama-card-genre {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Drama Card Large (for grid) */
.drama-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
    margin: 0 10px;
}

.drama-card-grid {
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.drama-card-grid .drama-card-poster {
    width: 100%;
    height: 0;
    padding-bottom: 142%;
}

.drama-card-grid .drama-card-poster img {
    position: absolute;
    inset: 0;
}

/* ============================================
   DETAIL PAGE
   ============================================ */
.detail-hero {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.detail-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) blur(2px);
}

.detail-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-primary) 5%, transparent 70%);
}

.detail-hero-back {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
}

.detail-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    display: flex;
    gap: 14px;
    z-index: 2;
}

.detail-poster {
    width: 110px;
    height: 155px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.detail-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.detail-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 6px;
}

.detail-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.detail-meta-item svg {
    width: 14px;
    height: 14px;
}

.detail-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.genre-tag {
    padding: 3px 10px;
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
}

/* Detail Body */
.detail-body {
    padding: 16px;
}

.detail-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-watch {
    flex: 1;
    height: 44px;
    background: var(--accent-gradient);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: var(--accent-glow);
}

.btn-watch:hover,
.btn-watch:active {
    transform: scale(0.97);
    box-shadow: 0 0 30px rgba(229, 9, 20, 0.4);
}

.btn-watch svg {
    width: 18px;
    height: 18px;
}

.btn-favorite {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-secondary);
}

.btn-favorite.active {
    color: var(--accent);
    background: rgba(229, 9, 20, 0.1);
    border-color: rgba(229, 9, 20, 0.3);
}

.btn-favorite svg {
    width: 20px;
    height: 20px;
}

/* Synopsis */
.detail-synopsis {
    margin-bottom: 20px;
}

.detail-synopsis h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.detail-synopsis p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.synopsis-toggle {
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    margin-top: 6px;
    cursor: pointer;
}

/* Episode List */
.episode-section h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.episode-count {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.episode-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.episode-btn {
    height: 40px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.episode-btn:hover,
.episode-btn:active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.episode-btn.current {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    box-shadow: var(--accent-glow);
}

/* Related Dramas */
.related-section {
    margin-top: 24px;
}

.related-section h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* ============================================
   WATCH PAGE
   ============================================ */
body[data-page="watch"] {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    width: 100% !important;
    overflow-x: hidden;
}

body[data-page="watch"] #watchContent {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
}

body[data-page="watch"] .watch-header,
body[data-page="watch"] .video-container,
body[data-page="watch"] .ep-navigation,
body[data-page="watch"] .watch-episodes {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
}

.watch-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.watch-header h2 {
    font-size: 15px;
    font-weight: 700;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.watch-header .ep-label {
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
    flex-shrink: 0;
}

/* Video Player - fills viewport height minus header and nav */
.video-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 46px - 62px);
    height: calc(100dvh - 46px - 62px);
    background: #000;
}

.video-container video,
.video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #0f0f1a, #1a1a2e);
    color: var(--text-secondary);
}

.video-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--accent);
}

.video-placeholder p {
    font-size: 13px;
}

/* Subtitle Controls */
/* Video Subtitle Styling */
video::cue {
    background: rgba(0, 0, 0, 0.6) !important;
    color: white !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 24px !important;
    line-height: 1.4 !important;
    padding: 2px 6px !important;
    border-radius: 2px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
}

.subtitle-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.sub-toggle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sub-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    color: white;
}

.sub-toggle-btn.sub-active {
    background: rgba(76, 175, 80, 0.8);
    border-color: rgba(76, 175, 80, 0.6);
    color: white;
}

.sub-track-list {
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    overflow: hidden;
    min-width: 120px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.sub-track-item {
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    text-align: left;
    transition: background 0.15s ease;
}

.sub-track-item:last-child {
    border-bottom: none;
}

.sub-track-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sub-track-item.active {
    color: #4CAF50;
    font-weight: 600;
}

/* Episode Navigation */
.ep-navigation {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.ep-nav-btn {
    flex: 1;
    height: 38px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition);
    border: 1px solid var(--border);
    background: var(--bg-glass);
}

.ep-nav-btn:hover:not(:disabled),
.ep-nav-btn:active:not(:disabled) {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.ep-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.ep-nav-btn svg {
    width: 16px;
    height: 16px;
}

/* Watch Episode List */
.watch-episodes {
    padding: 16px;
}

.watch-episodes h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* ============================================
   CATEGORY PAGE
   ============================================ */
.category-page {
    padding: 16px 0;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 10px 20px;
}

.category-tab {
    padding: 6px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.category-tab:hover,
.category-tab:active {
    background: var(--bg-glass-hover);
    border-color: var(--border-light);
}

.category-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

/* Sort/Filter */
.filter-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.filter-select {
    flex: 1;
    height: 36px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0 12px;
    font-size: 13px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    outline: none;
}

/* ============================================
   BOTTOM NAVIGATION
   ============================================ */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--bottom-nav-height);
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    display: flex;
    z-index: 1000;
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

[data-theme="light"] .bottom-nav {
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
    -webkit-tap-highlight-color: transparent;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 4px 0;
}

.nav-item.active {
    color: #4CAF50;
}

.nav-item.active::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: #4CAF50;
}

.nav-item svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.nav-item:active {
    transform: scale(0.9);
}

/* ============================================
   LOADING STATES
   ============================================ */
.skeleton {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 40px auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Page loader */
.page-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    gap: 16px;
    color: var(--text-muted);
    font-size: 13px;
}

/* ============================================
   TOAST / SNACKBAR
   ============================================ */
.toast {
    position: fixed;
    bottom: calc(var(--bottom-nav-height) + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.empty-state svg {
    width: 64px;
    height: 64px;
    color: var(--text-muted);
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.empty-state p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    animation: fadeIn 0.4s ease;
}

.slide-up {
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Stagger animation for cards */
.drama-card,
.drama-card-grid {
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.drama-card:nth-child(1),
.drama-card-grid:nth-child(1) {
    animation-delay: 0ms;
}

.drama-card:nth-child(2),
.drama-card-grid:nth-child(2) {
    animation-delay: 50ms;
}

.drama-card:nth-child(3),
.drama-card-grid:nth-child(3) {
    animation-delay: 100ms;
}

.drama-card:nth-child(4),
.drama-card-grid:nth-child(4) {
    animation-delay: 150ms;
}

.drama-card:nth-child(5),
.drama-card-grid:nth-child(5) {
    animation-delay: 200ms;
}

.drama-card:nth-child(6),
.drama-card-grid:nth-child(6) {
    animation-delay: 250ms;
}

/* Poster gradient placeholder */
.poster-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

/* ============================================
   MISC
   ============================================ */
.divider {
    height: 1px;
    background: var(--border);
    margin: 0 16px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 600;
}

/* Status dot */
.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
}

.status-dot.ongoing {
    background: var(--green);
}

.status-dot.completed {
    background: var(--blue);
}

/* View counter formatter */
.views-count {
    font-size: 11px;
    color: var(--text-muted);
}

/* Pull to refresh indicator */
.pull-indicator {
    text-align: center;
    padding: 10px;
    font-size: 12px;
    color: var(--text-muted);
}

/* Responsive for slightly larger phones */
@media (min-width: 400px) {
    .drama-card {
        width: 130px;
    }

    .drama-card-poster {
        width: 130px;
        height: 184px;
    }

    .hero-slider {
        height: 280px;
    }
}

/* ============================================
   LOCKED EPISODE BUTTONS
   ============================================ */
.episode-btn.locked {
    opacity: 0.45;
    pointer-events: auto;
    cursor: pointer;
    background: rgba(244, 67, 54, 0.08) !important;
    border-color: rgba(244, 67, 54, 0.2) !important;
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 12px;
}

.episode-btn.locked:hover {
    opacity: 0.7;
    background: rgba(244, 67, 54, 0.15) !important;
}

/* ============================================
   PROFILE PAGE
   ============================================ */
.profile-main {
    padding: 70px 16px 90px;
    max-width: 480px;
    margin: 0 auto;
    min-height: calc(100vh - 60px);
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 28px;
}

.auth-tab {
    flex: 1;
    padding: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.auth-tab.active {
    background: var(--accent, #e53935);
    color: #fff;
}

/* Auth Forms */
.auth-form {
    text-align: center;
}

.auth-form.hidden {
    display: none;
}

.auth-icon {
    color: var(--accent, #e53935);
    margin-bottom: 16px;
    opacity: 0.85;
}

.auth-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.auth-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 28px;
    line-height: 1.5;
    padding: 0 12px;
}

.form-group {
    margin-bottom: 16px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus {
    border-color: var(--accent, #e53935);
    background: rgba(255, 255, 255, 0.08);
}

.auth-error {
    color: #ff5252;
    font-size: 13px;
    min-height: 18px;
    margin-bottom: 8px;
    text-align: left;
}

.auth-btn {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 10px;
    background: var(--accent, #e53935);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 4px;
}

.auth-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.auth-btn:active {
    transform: scale(0.98);
}

.auth-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.auth-switch {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.auth-switch a {
    color: var(--accent, #e53935);
    text-decoration: none;
    font-weight: 600;
}

/* Profile View */
.profile-view.hidden {
    display: none;
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 24px;
}

.profile-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c4dff, #536dfe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.profile-info {
    flex: 1;
    min-width: 0;
}

.profile-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-email {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 600;
}

/* Profile Menu Sections */
.profile-section {
    margin-bottom: 20px;
}

.profile-section-title {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    padding-left: 4px;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
    cursor: pointer;
}

.profile-menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.menu-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-menu-item span {
    flex: 1;
}

.menu-arrow {
    color: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

/* Profile Toast */
.profile-toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 500;
    z-index: 9999;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.3s, transform 0.3s;
    white-space: nowrap;
}

.profile-toast.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(10px);
}

/* ============================================
   PREMIUM PAGE
   ============================================ */
.premium-page-subtitle {
    text-align: center;
    color: #4CAF50;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.promo-banner {
    background: linear-gradient(135deg, #43A047, #66BB6A);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 24px;
    color: #fff;
}

.promo-banner h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.promo-banner p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 12px;
}

.promo-btn {
    background: #E53935;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}

.promo-btn:hover {
    opacity: 0.85;
}

/* Plan Cards */
.premium-plans {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.plan-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 18px;
    transition: border-color 0.2s;
}

.plan-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.plan-info {
    flex: 1;
}

.plan-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-select-btn {
    background: #333;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.plan-select-btn:hover {
    background: #444;
}

.plan-price {
    text-align: right;
    flex-shrink: 0;
    margin-left: 16px;
}

.price-original {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: line-through;
    margin-bottom: 2px;
}

.price-discount {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #4CAF50;
}

/* Benefits */
.benefits-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
}

.benefits-card {
    background: linear-gradient(135deg, #E53935 0%, #FF7043 100%);
    border-radius: 14px;
    padding: 22px 20px;
    margin-bottom: 24px;
    color: #fff;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.benefit-item svg {
    flex-shrink: 0;
    color: #fff;
}

.benefits-detail-btn {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.benefits-detail-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Premium Modal */
.premium-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.premium-modal.hidden {
    display: none;
}

.premium-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.premium-modal-content {
    position: relative;
    background: var(--bg-card, #1a1a2e);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 28px 24px;
    max-width: 380px;
    width: 100%;
    text-align: center;
}

.premium-modal-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.premium-modal-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.premium-modal-price {
    font-size: 28px;
    font-weight: 800;
    color: #4CAF50;
    margin-bottom: 24px;
}

.premium-modal-actions {
    display: flex;
    gap: 10px;
}

.modal-cancel-btn {
    flex: 1;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.modal-confirm-btn {
    flex: 2;
    padding: 12px;
    background: #4CAF50;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}

.modal-confirm-btn:hover {
    opacity: 0.9;
}

.modal-confirm-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================
   BOTTOM SHEET MODAL
   ============================================ */
.sheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sheet-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.sheet-content {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg-card, #1a1a2e);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 0 20px 28px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 85vh;
    overflow-y: auto;
}

.sheet-overlay.active .sheet-content {
    transform: translateY(0);
}

.sheet-handle {
    width: 36px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 12px auto 16px;
}

.sheet-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.sheet-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
}

.sheet-form .form-group {
    margin-bottom: 14px;
}

.sheet-form .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sheet-form .form-group input,
.sheet-form .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.sheet-form .form-group input:focus,
.sheet-form .form-group textarea:focus {
    border-color: var(--accent, #e53935);
    background: rgba(255, 255, 255, 0.08);
}

.sheet-form .form-group textarea {
    resize: none;
    min-height: 80px;
    font-family: inherit;
}

.sheet-error {
    color: #ff5252;
    font-size: 12px;
    min-height: 16px;
    margin-bottom: 6px;
}

.sheet-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.sheet-btn {
    flex: 1;
    padding: 13px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.sheet-btn-cancel {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sheet-btn-primary {
    background: var(--accent, #e53935);
    color: #fff;
}

.sheet-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.sheet-btn-success {
    background: #4CAF50;
    color: #fff;
}

/* Watch History Items */
.history-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    margin-bottom: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.history-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.history-poster {
    width: 48px;
    height: 64px;
    border-radius: 6px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.history-info {
    flex: 1;
    min-width: 0;
}

.history-info h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.history-info p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
}

.history-empty {
    text-align: center;
    padding: 30px 10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.history-empty svg {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    opacity: 0.3;
}

/* Contact Card */
.contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 10px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-detail p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

/* Billing Empty */
.billing-empty {
    text-align: center;
    padding: 30px 10px;
}

.billing-empty svg {
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 12px;
}

.billing-empty h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.billing-empty p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}