@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
    --bg-deep: #06060e;
    --bg-primary: #0a0a1a;
    --bg-secondary: #111128;
    --bg-card: #151530;
    --bg-elevated: #1a1a3e;
    --accent: #e94560;
    --accent-glow: rgba(233, 69, 96, 0.3);
    --accent-soft: rgba(233, 69, 96, 0.15);
    --gold: #fbbf24;
    --cyan: #22d3ee;
    --text-primary: #f0f0f5;
    --text-secondary: #8888aa;
    --text-muted: #55557a;
    --border: rgba(255, 255, 255, 0.06);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 8px 40px rgba(233, 69, 96, 0.15);
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(233, 69, 96, 0.08), transparent),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(34, 211, 238, 0.04), transparent);
    pointer-events: none;
    z-index: 0;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85px;
    /* Ligeramente más alto para que quepan logos grandes */
    background: #0f1225;
    /* Dark navy static color */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

@keyframes navyGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.navbar.scrolled {
    background: #0a0c1a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar-container {
    width: 100%;
    max-width: 1350px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    gap: 15px;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.nav-brand .accent {
    color: var(--accent);
}

.nav-tabs {
    display: flex;
    gap: 4px;
    background: transparent;
    padding: 0;
    width: auto;
    justify-content: flex-start;
}

.nav-tabs::-webkit-scrollbar {
    display: none;
}

.nav-tab {
    flex: none;
    padding: 8px 10px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    /* Un poco más pequeño para ahorrar espacio */
    font-weight: 600;
    color: #8b94a7;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-tab.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    font-weight: 700;
}

.nav-search {
    position: relative;
    width: 180px;
}

.nav-search input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: #ffffff;
    /* Fondo blanco */
    color: #000000;
    /* Texto negro para contraste */
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
    transition: var(--transition);
}

.nav-search input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.2);
    background: #ffffff;
    color: #000000;
}

.nav-search input::placeholder {
    color: #666666;
}

.nav-search .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    pointer-events: none;
}

/* ===== DONATE BUTTON ===== */
.btn-donate {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffb800, #ff8c00);
    color: #000;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    margin-right: 12px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    border: none;
    cursor: pointer;
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
    background: linear-gradient(135deg, #ffc733, #ffa033);
}

.btn-donate svg {
    animation: heartbeat 1.5s ease-in-out infinite;
}

/* ===== FLOATING APK BUTTON ===== */
.btn-apk-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
    z-index: 999;
    cursor: pointer;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.btn-whatsapp-floating {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
}

.btn-whatsapp-floating:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #25d366, #25d366);
}

.btn-whatsapp-floating svg {
    animation: float 2.5s ease-in-out infinite;
}

.btn-whatsapp-floating .pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: pulseRing 2s infinite;
}

.btn-whatsapp-floating .whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: #fff;
    color: #000;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.btn-whatsapp-floating .whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.btn-whatsapp-floating:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-5px);
}

.btn-apk-floating:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.6);
    background: linear-gradient(135deg, #2ecc71, #2ecc71);
}

.btn-apk-floating svg {
    animation: float 2.5s ease-in-out infinite;
}

.btn-apk-floating .pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #2ecc71;
    animation: pulseRing 2s infinite;
}

.btn-apk-floating .apk-tooltip {
    position: absolute;
    right: 75px;
    background: #fff;
    color: #000;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.btn-apk-floating .apk-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.btn-apk-floating:hover .apk-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-5px);
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* ===== NAV USER AREA ===== */
.nav-user-area {
    display: flex;
    align-items: center;
    margin-left: 12px;
    flex-shrink: 0;
}

.btn-login-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 8px;
    background: #fa5252;
    color: white;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-login-nav:hover {
    background: #f03e3e;
    transform: translateY(-1px);
}

.nav-user-logged {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: white;
    flex-shrink: 0;
}

.nav-user-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-user-logout {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    width: 30px;
    height: 30px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.nav-user-logout:hover {
    background: rgba(229, 9, 20, 0.15);
    border-color: var(--accent);
    color: var(--accent);
}

/* ===== MAIN CONTENT ===== */
.main-content {
    padding-top: 100px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    max-width: 1250px;
    margin: 0 auto;
    width: 100%;
}

/* ===== TOP LAYOUT (HERO + SIDEBAR) ===== */
.top-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 20px;
    margin: 0 24px 40px;
    max-width: 1250px;
}

@media (max-width: 900px) {
    .top-layout {
        grid-template-columns: 1fr;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 380px;
    border-radius: 4px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
    box-shadow: var(--shadow-card);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(0px) brightness(0.4);
    transition: transform 8s ease;
}

.hero:hover .hero-bg {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(6, 6, 14, 0.95) 0%, rgba(6, 6, 14, 0.6) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
    max-width: 550px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: var(--accent);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    width: fit-content;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-actions {
    display: flex;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: #d13652;
    box-shadow: 0 4px 20px var(--accent-glow);
    transform: translateY(-1px);
}

.btn-secondary {
    background: #4f46e5;
    /* Índigo */
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-secondary:hover {
    background: #6366f1;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.5);
    transform: translateY(-1px);
}

/* ===== POPULAR SIDEBAR ===== */
.popular-sidebar {
    background: rgba(20, 20, 35, 0.6);
    border-radius: 4px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popular-header {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.popular-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    max-height: 330px;
    scrollbar-width: thin;
}

.popular-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.popular-item:hover {
    transform: translateX(4px);
    background: var(--bg-elevated);
}

.popular-rank {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #8b2df2;
    color: white;
    font-weight: 700;
    font-size: 12px;
    border-radius: 4px;
    flex-shrink: 0;
}

.popular-poster {
    width: 48px;
    height: 68px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.popular-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.popular-item-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.popular-item-meta {
    font-size: 11px;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

/* ===== CATEGORY ROW ===== */
.category-row {
    margin-bottom: 40px;
    padding: 0 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.category-row:nth-child(1) {
    animation-delay: 0.1s;
}

.category-row:nth-child(2) {
    animation-delay: 0.2s;
}

.category-row:nth-child(3) {
    animation-delay: 0.3s;
}

.category-row:nth-child(4) {
    animation-delay: 0.4s;
}

.category-row:nth-child(5) {
    animation-delay: 0.5s;
}

.category-row:nth-child(6) {
    animation-delay: 0.55s;
}

.category-row:nth-child(7) {
    animation-delay: 0.6s;
}

.category-row:nth-child(8) {
    animation-delay: 0.65s;
}

.category-row:nth-child(9) {
    animation-delay: 0.7s;
}

.category-row:nth-child(10) {
    animation-delay: 0.75s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    background: #8b2df2;
    padding: 10px 16px;
    border-radius: 4px;
}

.category-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.category-scroll-container {
    position: relative;
}

.category-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
}

.category-scroll::-webkit-scrollbar {
    display: none;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.scroll-btn:hover {
    background: var(--accent);
}

.scroll-btn.left {
    left: -4px;
}

.scroll-btn.right {
    right: -4px;
}

.category-scroll-container:hover .scroll-btn {
    display: flex;
}

/* ===== MOVIE CARD ===== */
.movie-card {
    flex: 0 0 170px;
    cursor: pointer;
    scroll-snap-align: start;
    transition: var(--transition);
    position: relative;
}

.movie-card:hover {
    transform: translateY(-6px) scale(1.02);
    z-index: 5;
}

.card-poster {
    position: relative;
    width: 170px;
    height: 245px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.movie-card:hover .card-poster {
    box-shadow: var(--shadow-hover);
}

.card-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.movie-card:hover .card-poster img {
    transform: scale(1.08);
}

.card-poster .play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.movie-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay .play-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 20px var(--accent-glow);
    transform: scale(0.8);
    transition: var(--transition);
}

.movie-card:hover .play-icon {
    transform: scale(1);
}

.card-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e50914;
    color: white;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 10;
}

/* ==============================================================
   DONATE MODAL STYLES 
   ============================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-out;
}

.donate-modal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: slideUpFade 0.4s ease-out;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

.donate-header {
    text-align: center;
    margin-bottom: 30px;
}

.donate-header h2 {
    font-size: 28px;
    color: #ff8c00;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffb800, #ff8c00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.donate-subtitle {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
    max-width: 450px;
    margin: 0 auto;
}

.donate-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.donate-card {
    flex: 1;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
    min-height: 350px;
}

.donate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.yape-card {
    border-top: 4px solid #742384;
}

.paypal-card {
    border-top: 4px solid #003087;
    justify-content: center;
}

/* Yape Styles */
.yape-logo {
    background: #742384;
    color: #00e0a1;
    font-family: 'Arial Rounded MT Bold', sans-serif;
    font-weight: 800;
    font-size: 24px;
    padding: 5px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.qr-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    padding: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.yape-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 5px;
}

.yape-instruction {
    font-size: 12px;
    color: #00e0a1;
    background: rgba(0, 224, 161, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

/* PayPal Styles */
.paypal-logo-img {
    width: 140px;
    margin-bottom: 20px;
}

.paypal-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 30px;
    text-align: center;
}

.btn-paypal-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 30px;
    background: #0070ba;
    color: white;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
}

.btn-paypal-link:hover {
    background: #003087;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 112, 186, 0.4);
}

/* Divider */
.donate-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.donate-divider::before,
.donate-divider::after {
    content: '';
    width: 1px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
}

.donate-divider span {
    background: var(--bg-card);
    color: var(--text-secondary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .donate-options {
        flex-direction: column;
    }

    .donate-divider::before,
    .donate-divider::after {
        width: 100%;
        height: 1px;
    }

    .donate-divider {
        flex-direction: row;
        width: 100%;
    }

    .donate-modal {
        padding: 20px;
    }

    .donate-card {
        min-height: auto;
    }
}

.card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    background: var(--accent);
    color: white;
}

.card-rating {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.7);
    color: var(--gold);
    backdrop-filter: blur(4px);
}

.card-info {
    padding: 10px 4px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    width: 100%;
}

.card-meta {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
}

/* ===== SEARCH RESULTS ===== */
.search-results {
    padding: 0 24px;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 20px;
}

.search-results-grid .movie-card {
    flex: none;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 40px 24px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.page-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.page-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.page-nav {
    padding: 8px 16px;
    width: auto;
}

/* ===== LOADING ===== */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    gap: 16px;
}

.loader {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== SKELETON ===== */
.skeleton-card {
    flex: 0 0 170px;
}

.skeleton-poster {
    width: 170px;
    height: 245px;
    border-radius: var(--radius);
    background: linear-gradient(110deg, var(--bg-card) 40%, var(--bg-elevated) 50%, var(--bg-card) 60%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease infinite;
}

.skeleton-text {
    height: 12px;
    border-radius: 4px;
    margin-top: 8px;
    background: linear-gradient(110deg, var(--bg-card) 40%, var(--bg-elevated) 50%, var(--bg-card) 60%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease infinite;
}

.skeleton-text.short {
    width: 60%;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ===== DETAILS PAGE ===== */
.details-container {
    padding-top: 85px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    max-width: 1250px;
    margin: 0 auto;
    width: 100%;
}

.details-hero {
    position: relative;
    min-height: 450px;
    padding: 40px;
    display: flex;
    gap: 32px;
}

.details-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    filter: blur(30px) brightness(0.2);
    transform: scale(1.1);
}

.details-backdrop-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6, 6, 14, 0.6), var(--bg-deep));
}

.details-poster {
    position: relative;
    z-index: 2;
    flex: 0 0 280px;
}

.details-poster img {
    width: 280px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.details-info {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.details-type-badge {
    display: inline-flex;
    padding: 4px 12px;
    background: var(--accent);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    width: fit-content;
}

.details-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}

.details-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}

.details-meta .rating-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--gold);
    font-weight: 600;
}

.details-genre {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.details-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 600px;
}

.details-actions {
    display: flex;
    gap: 12px;
}

/* ===== EPISODES ===== */
.episodes-section {
    padding: 32px 40px;
    position: relative;
    z-index: 2;
}

.episodes-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.season-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.season-tab {
    padding: 6px 16px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.season-tab:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.season-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-secondary);
}

.episodes-grid::-webkit-scrollbar {
    width: 6px;
}

.episodes-grid::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 3px;
}

.episodes-grid::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

.episodes-grid::-webkit-scrollbar-thumb:hover {
    background: #d13652;
}

.episode-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius);
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.episode-item:hover {
    background: var(--bg-elevated);
    border-color: var(--accent);
    transform: translateX(4px);
}

.episode-number {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}

.episode-info {
    flex: 1;
    min-width: 0;
}

.episode-name {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.episode-play-icon {
    color: var(--text-muted);
    font-size: 16px;
    transition: var(--transition);
}

.episode-item:hover .episode-play-icon {
    color: var(--accent);
}

.episode-current {
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--accent);
}

.episode-current .episode-number {
    background: var(--accent);
    color: white;
}

.episodes-section-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

/* ===== REPORT SECTION ===== */
.report-section {
    padding: 24px 40px;
}

.report-form {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.report-select {
    padding: 8px 12px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 13px;
    cursor: pointer;
    min-width: 200px;
}

.report-textarea {
    flex: 1;
    min-width: 200px;
    padding: 8px 12px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 13px;
    font-family: var(--font-body);
    resize: vertical;
}

.report-textarea:focus,
.report-select:focus {
    outline: none;
    border-color: var(--accent);
}

.report-btn {
    white-space: nowrap;
    font-size: 13px;
    padding: 8px 20px;
}

.report-status {
    width: 100%;
    font-size: 13px;
    margin-top: 4px;
}

/* ===== PLAYER PAGE ===== */
.player-container {
    padding-top: 85px;
    /* Ajuste para navbar más alto */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 1250px;
    margin: 0 auto;
    width: 100%;
}

.player-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
}

.player-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
}

.player-back {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.player-back:hover {
    color: var(--accent);
}

.player-frame-container {
    flex: 1;
    position: relative;
    background: #000;
    min-height: 500px;
}

.player-frame-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.server-selector {
    padding: 16px 32px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.server-selector-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.server-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.server-btn {
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.server-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.server-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.server-btn .server-lang {
    font-size: 10px;
    opacity: 0.7;
    margin-left: 4px;
}

.server-btn .server-quality {
    font-size: 9px;
    background: rgba(59, 130, 246, 0.3);
    color: #93c5fd;
    padding: 1px 5px;
    border-radius: 3px;
    margin-left: 4px;
    font-weight: 600;
}

.quality-btn {
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.quality-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.quality-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.episode-nav {
    display: flex;
    gap: 8px;
}

/* ===== DISCLAIMER FOOTER ===== */
.disclaimer-footer {
    position: relative;
    z-index: 2;
    padding: 24px 32px;
    background: linear-gradient(to bottom, transparent, rgba(6, 6, 14, 0.95));
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.disclaimer-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-title {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.disclaimer-text {
    font-size: 11px;
    line-height: 1.6;
    color: var(--text-muted);
}

.disclaimer-text strong {
    color: var(--text-secondary);
}

.footer-bottom {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-size: 10px;
    color: var(--text-muted);
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 12px 20px;
    border-radius: var(--radius);
    background: var(--bg-elevated);
    color: var(--text-primary);
    font-size: 13px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border-left: 3px solid var(--accent);
    z-index: 9999;
    opacity: 0;
    transform: translateX(100px);
    transition: var(--transition);
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .navbar {
        padding: 0 16px;
        flex-wrap: wrap;
        gap: 8px;
        height: auto;
        min-height: 64px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .nav-tabs {
        order: 3;
        width: 100%;
        justify-content: flex-start;
    }

    .nav-search {
        width: 180px;
    }

    .main-content {
        padding-top: 72px;
    }

    .category-row {
        padding: 0 16px;
    }

    .movie-card {
        flex: 0 0 140px;
    }

    .card-poster {
        width: 140px;
        height: 200px;
    }

    .hero {
        height: 280px;
        margin: 0 16px 24px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-content {
        padding: 0 24px;
    }

    .details-hero {
        flex-direction: column;
        padding: 24px;
    }

    .details-poster {
        flex: none;
    }

    .details-poster img {
        width: 200px;
        height: 290px;
    }

    .details-title {
        font-size: 28px;
    }

    /* Ajustes específicos para el reproductor en móviles */
    .player-container {
        padding-top: 75px;
    }

    /* En móviles el navbar sin categorias es ~70px */
    .player-header {
        padding: 12px 16px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .player-title {
        width: 100%;
        order: -1;
        text-align: center;
        font-size: 16px;
    }

    .player-frame-container {
        min-height: 250px;
    }

    .server-selector,
    .episodes-section,
    .report-section {
        padding: 16px;
    }
}


/* ===== ANDROID TV SUPPORT & ACCESSIBILITY ===== */
@media screen and (min-width: 0px) {

    /* Eliminar marcos de enfoque (incluyendo el naranja anterior) */
    :focus,
    :focus-visible {
        outline: none !important;
        box-shadow: none !important;
    }

    /* Asegurar que el logo no tenga fondo al enfocarse */
    .nav-brand:focus,
    .nav-brand:active {
        background: transparent !important;
    }

    /* Ocultar elementos no aptos para TV */
    .btn-whatsapp-floating,
    .btn-apk-floating,
    .disclaimer-footer a[href*='github'] {
        display: none !important;
    }
}

/* ===== MOBILE OVERRIDES ===== */
@media (max-width: 1024px) {
    .navbar {
        height: auto;
        min-height: 76px;
        padding: 10px 0;
    }

    .navbar-container {
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
        padding: 0 14px;
    }

    .navbar-left,
    .navbar-right {
        width: 100%;
        flex: 1 1 100%;
    }

    .navbar-left {
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
    }

    .navbar-right {
        justify-content: space-between;
        gap: 12px;
    }

    .nav-tabs {
        order: 3;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 4px;
        justify-content: flex-start;
        scrollbar-width: none;
    }

    .nav-tabs::-webkit-scrollbar {
        display: none;
    }

    .nav-search {
        width: min(100%, 320px);
        flex: 1 1 260px;
    }

    .nav-user-area {
        margin-left: auto;
    }

    .main-content,
    .details-container,
    .player-container {
        padding-top: 138px;
    }

    .top-layout {
        gap: 20px;
        padding: 0 16px;
    }

    .hero {
        margin: 0 0 20px;
    }

    .search-tip-banner,
    .category-row,
    .pagination {
        margin-left: 16px;
        margin-right: 16px;
    }

    .details-hero,
    .episodes-section,
    .report-section,
    .player-header,
    .server-selector {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 768px) {
    .navbar {
        min-height: 70px;
        padding: 8px 0 10px;
    }

    .navbar-container {
        gap: 10px;
        padding: 0 12px;
    }

    .navbar-left,
    .navbar-right {
        gap: 10px;
    }

    .nav-brand {
        gap: 8px;
        font-size: 18px;
    }

    .nav-brand img {
        height: 46px !important;
    }

    .nav-brand svg {
        height: 30px !important;
        margin-left: 0 !important;
        margin-bottom: 0 !important;
    }

    .nav-tab {
        padding: 8px 9px;
        font-size: 12px;
        gap: 6px;
    }

    .navbar-right {
        align-items: stretch;
        flex-wrap: wrap;
    }

    .btn-donate {
        order: 2;
        width: 100%;
        justify-content: center;
        margin-right: 0;
        padding: 10px 14px;
    }

    .nav-search {
        order: 1;
        width: 100%;
        flex: 1 1 100%;
    }

    .nav-search input {
        height: 44px;
        font-size: 14px;
    }

    .nav-user-area {
        order: 3;
        width: 100%;
        justify-content: flex-end;
    }

    .main-content,
    .details-container,
    .player-container {
        padding-top: 182px;
    }

    .top-layout,
    .search-tip-banner,
    .category-row,
    .pagination {
        margin-left: 12px;
        margin-right: 12px;
        padding-left: 0;
        padding-right: 0;
    }

    .top-layout {
        padding: 0 12px;
    }

    .category-row {
        margin-bottom: 22px;
    }

    .movie-card {
        flex: 0 0 132px;
    }

    .card-poster {
        width: 132px;
        height: 188px;
    }

    .hero {
        height: 300px;
        margin-bottom: 20px;
    }

    .hero-content {
        padding: 0 18px 18px;
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.05;
    }

    .hero-desc {
        font-size: 13px;
        -webkit-line-clamp: 4;
    }

    .hero-actions,
    .details-actions {
        flex-wrap: wrap;
    }

    .hero-actions .btn,
    .details-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .details-hero {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        min-height: auto;
        padding: 24px 16px;
        text-align: center;
    }

    .details-poster {
        flex: none;
    }

    .details-poster img {
        width: min(72vw, 220px);
        height: auto;
        aspect-ratio: 7 / 10;
    }

    .details-info {
        align-items: center;
    }

    .details-title {
        font-size: 30px;
    }

    .details-meta {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 14px;
    }

    .details-description {
        max-width: none;
        font-size: 14px;
    }

    .episodes-section,
    .report-section,
    .player-header,
    .server-selector {
        padding: 16px 12px;
    }

    .episodes-grid {
        grid-template-columns: 1fr;
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .episode-item:hover {
        transform: none;
    }

    .player-header {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .player-title {
        width: 100%;
        order: -1;
        text-align: center;
        font-size: 16px;
        line-height: 1.25;
    }

    .episode-nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .episode-nav .btn,
    #backBtn {
        flex: 1 1 140px;
        text-align: center;
        justify-content: center;
    }

    .player-frame-container {
        min-height: auto;
        aspect-ratio: 16 / 9;
    }

    #server-hint-toast {
        top: 146px;
        width: calc(100% - 24px);
        max-width: 420px;
        white-space: normal;
        text-align: center;
        font-size: 13px;
        padding: 10px 14px;
    }

    .server-list {
        gap: 8px;
    }

    .server-btn {
        flex: 1 1 calc(50% - 4px);
        min-width: 132px;
        text-align: center;
        padding: 10px 12px;
    }

    .report-form {
        flex-direction: column;
    }

    .report-select,
    .report-textarea,
    .report-btn {
        width: 100%;
        min-width: 0;
    }

    .search-results-grid {
        grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
        gap: 14px;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 8px;
    }

    .search-tip-banner {
        align-items: flex-start;
        margin-top: 12px;
        margin-bottom: 18px;
        padding: 12px 14px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 10px;
    }

    .nav-brand img {
        height: 40px !important;
    }

    .nav-brand svg {
        display: none;
    }

    .nav-tab {
        font-size: 11px;
        padding: 8px 8px;
    }

    .main-content,
    .details-container,
    .player-container {
        padding-top: 170px;
    }

    .hero {
        height: 260px;
    }

    .hero-title,
    .details-title {
        font-size: 22px;
    }

    .details-title {
        letter-spacing: -0.8px;
    }

    .details-meta,
    .details-genre,
    .details-description {
        font-size: 13px;
    }

    .movie-card {
        flex-basis: 120px;
    }

    .card-poster {
        width: 120px;
        height: 172px;
    }

    .server-btn {
        flex-basis: 100%;
    }

    .episode-item {
        padding: 11px 12px;
    }

    .episode-number {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    #server-hint-toast {
        top: 136px;
        width: calc(100% - 20px);
        font-size: 12px;
    }

    .disclaimer-footer {
        padding: 20px 14px;
    }
}
