@charset "UTF-8";

/* =========================================================
   MILASHA.TV DASHBOARD / ADMIN CSS
   No Tailwind dependency for custom dashboard/admin UI
========================================================= */

/* ---------- Base page helpers ---------- */

.milasha-page {
    background: #0f172a;
    color: #e5e7eb;
}

.muted {
    color: #9ca3af;
    font-size: 12px;
}

.small {
    font-size: 12px;
}

/* ---------- Shared buttons ---------- */

.milasha-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 36px;
    border-radius: 999px;
    border: 0;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0,0,0,.32);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.milasha-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,.42);
}

.milasha-btn-yellow {
    background: #facc15;
    color: #000;
}

.milasha-btn-yellow:hover {
    background: #fde047;
    color: #000;
}

.milasha-btn-green {
    background: linear-gradient(135deg, #14532d, #16a34a);
    color: #ecfdf5;
    border: 1px solid rgba(134, 239, 172, .35);
    box-shadow:
        0 10px 22px rgba(0,0,0,.32),
        0 0 18px rgba(34,197,94,.16);
}

.milasha-btn-green:hover {
    background: linear-gradient(135deg, #166534, #22c55e);
    color: #ffffff;
    box-shadow:
        0 14px 28px rgba(0,0,0,.40),
        0 0 24px rgba(34,197,94,.26);
}

.milasha-btn-red {
    background: #dc2626;
    color: #fff;
}

.milasha-btn-red:hover {
    background: #ef4444;
    color: #fff;
}

.milasha-btn-disabled {
    background: #4b5563;
    color: #d1d5db;
    cursor: not-allowed;
    opacity: .85;
}

.milasha-btn-disabled:hover {
    transform: none;
    box-shadow: 0 10px 24px rgba(0,0,0,.32);
}

/* smaller admin buttons */
.admin-btn {
    border: 0;
    border-radius: 999px;
    padding: 7px 11px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: #334155;
}

.admin-btn:hover {
    opacity: .9;
}

.admin-btn-green { background: #15803d; }
.admin-btn-yellow { background: #a16207; }
.admin-btn-red { background: #b91c1c; }
.admin-btn-blue { background: #2563eb; }

/* ---------- Shared badges ---------- */

.badge {
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    white-space: nowrap;
}

.badge-green { background: #14532d; color: #bbf7d0; }
.badge-yellow { background: #713f12; color: #fde68a; }
.badge-red { background: #7f1d1d; color: #fecaca; }
.badge-gray { background: #374151; color: #d1d5db; }
.badge-blue { background: #1e3a8a; color: #bfdbfe; }

/* =========================================================
   USER DASHBOARD
========================================================= */

.dash-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 42px 24px;
}

.dash-title {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 28px;
    color: #fff;
}

.dash-panel {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.pkg-card {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(250,204,21,.10), transparent 34%),
        linear-gradient(180deg, #1f2937, #111827);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 22px;
    padding: 24px;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 24px rgba(0,0,0,.24);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.pkg-card:hover {
    transform: translateY(-3px);
    border-color: rgba(250,204,21,.34);
    box-shadow:
        0 16px 34px rgba(0,0,0,.34),
        0 0 26px rgba(250,204,21,.08);
}

.pkg-name {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.15;
}

.pkg-price {
    font-size: 20px;
    font-weight: 900;
    color: #facc15;
    margin-bottom: 14px;
}

.pkg-info {
    font-size: 15px;
    color: #d1d5db;
    line-height: 1.45;
}

.pkg-desc {
    margin-top: 12px;
    color: #aab4c3;
    font-size: 14px;
    line-height: 1.45;
}

.pkg-actions {
    margin-top: 22px;
}

.milasha-btn-watch {
    background: linear-gradient(135deg, #16a34a, #22c55e, #86efac);
    color: #052e16;
    box-shadow:
        0 10px 24px rgba(0,0,0,.32),
        0 0 22px rgba(34,197,94,.26);
}

.milasha-btn-watch:hover {
    background: linear-gradient(135deg, #22c55e, #4ade80, #bbf7d0);
    color: #052e16;
    box-shadow:
        0 14px 30px rgba(0,0,0,.42),
        0 0 30px rgba(34,197,94,.38);
}

.current-card {
    background: #111827;
    border: 1px solid #374151;
    border-radius: 20px;
    padding: 24px;
    margin-top: 18px;
}

.current-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.current-name {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.current-meta {
    color: #d1d5db;
    font-size: 15px;
    margin-top: 6px;
}

.current-highlight {
    color: #facc15;
    font-weight: 800;
}

.countdown {
    color: #4ade80;
    font-weight: 800;
    margin-top: 8px;
}

/* =========================================================
   Landing Hero Video Player Redesign
========================================================= */

.landing-hero-video-shell {
    position: absolute;
    inset: clamp(76px, 9vw, 120px) clamp(18px, 5vw, 72px) clamp(34px, 6vw, 78px);
    z-index: 0;
    border-radius: clamp(22px, 3vw, 42px);
    overflow: hidden;
    background: #000;
    box-shadow:
        0 30px 90px rgba(0,0,0,.65),
        0 0 0 1px rgba(255,255,255,.10);
}

.landing-hero-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: brightness(1.18) contrast(1.08) saturate(1.08);
}

.landing-hero-fallback-image {
    background-size: cover;
    background-position: center;
}

/* Make the global hero darkness lighter when video ads are used */
.landing-hero-overlay {
    background: rgba(0,0,0,.12) !important;
}

.landing-hero-panel {
    opacity: .72;
}

@media (max-width: 768px) {
    .landing-hero-video-shell {
        inset: 72px 12px 28px;
        border-radius: 24px;
    }
}

/* Left hero text fade behavior while hero video plays */

.landing-hero-content {
    transition: opacity 900ms ease, transform 900ms ease, filter 900ms ease;
}

.landing-hero-content.is-dimmed {
    opacity: .28;
    transform: translateY(8px);
    filter: saturate(.85);
}

/* =========================================================
   LANDING TRUST PILLS
========================================================= */

.landing-trust-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.landing-trust-pill {
    min-width: 190px;
    padding: 18px 28px;
    text-align: center;
    border-radius: 999px;
    background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 16px 34px rgba(0,0,0,0.30);
    backdrop-filter: blur(12px);
}

.landing-trust-value {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.025em;
    color: #ffffff;
}

.landing-trust-label {
    margin-top: 6px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .11em;
    color: #9ca3af;
}

/* =========================================================
   LANDING FEATURE CARDS
========================================================= */

.landing-features-section {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
    background:
        radial-gradient(circle at 12% 0%, rgba(250,204,21,0.10), transparent 32%),
        radial-gradient(circle at 88% 100%, rgba(30,64,175,0.18), transparent 34%),
        linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
}

.landing-features-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: .28;
    mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

.landing-features-wrap {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.landing-features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.landing-feature-card {
    position: relative;
    overflow: hidden;
    min-height: 270px;
    padding: 30px;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(15,23,42,0.92), rgba(2,6,23,0.96));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 26px 70px rgba(0,0,0,0.42);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.landing-feature-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 0%, rgba(250,204,21,0.20), transparent 32%),
        radial-gradient(circle at 90% 100%, rgba(37,99,235,0.20), transparent 36%);
    opacity: .75;
}

.landing-feature-card::after {
    content: "";
    position: absolute;
    right: -42px;
    top: -42px;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: rgba(250,204,21,0.08);
    filter: blur(2px);
}

.landing-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(250,204,21,0.34);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.10),
        0 34px 90px rgba(0,0,0,0.54),
        0 0 34px rgba(250,204,21,0.08);
}

.landing-feature-icon {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(250,204,21,0.95), rgba(253,224,71,0.82));
    color: #020617;
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
    box-shadow:
        0 16px 34px rgba(250,204,21,0.20),
        inset 0 1px 0 rgba(255,255,255,0.42);
}

.landing-feature-card h3 {
    position: relative;
    z-index: 2;
    margin: 28px 0 0;
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    color: #ffffff;
}

.landing-feature-card p {
    position: relative;
    z-index: 2;
    margin: 16px 0 0;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 500;
    color: #aab4c3;
}

/* =========================================================
   LANDING PACKAGES CAROUSEL
========================================================= */

.landing-packages-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(250,204,21,0.12), transparent 30%),
        radial-gradient(circle at 85% 80%, rgba(37,99,235,0.18), transparent 34%),
        linear-gradient(180deg, #020617 0%, #000000 48%, #020617 100%);
}

.landing-packages-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.035) 45%, transparent 70%);
    opacity: .7;
}

.landing-packages-wrap {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.landing-packages-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 14px 4px 28px;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(250,204,21,.55) rgba(255,255,255,.08);
}

.landing-packages-track:active {
    cursor: grabbing;
}

.landing-packages-track::-webkit-scrollbar {
    height: 10px;
}

.landing-packages-track::-webkit-scrollbar-track {
    background: rgba(255,255,255,.08);
    border-radius: 999px;
}

.landing-packages-track::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(250,204,21,.95), rgba(253,224,71,.75));
    border-radius: 999px;
}

.landing-package-card {
    position: relative;
    flex: 0 0 340px;
    scroll-snap-align: start;
    overflow: hidden;
    min-height: 410px;
    padding: 28px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(15,23,42,0.94), rgba(2,6,23,0.98));
    border: 1px solid rgba(255,255,255,0.13);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 28px 80px rgba(0,0,0,0.48);
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.landing-package-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 0%, rgba(250,204,21,0.18), transparent 34%),
        radial-gradient(circle at 100% 100%, rgba(37,99,235,0.20), transparent 38%);
    opacity: .8;
}

.landing-package-card::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 190px;
    height: 190px;
    border-radius: 999px;
    background: rgba(250,204,21,0.07);
    filter: blur(1px);
}

.landing-package-card:hover {
    transform: translateY(-8px);
    border-color: rgba(250,204,21,0.38);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.10),
        0 38px 100px rgba(0,0,0,0.62),
        0 0 42px rgba(250,204,21,0.10);
}

.landing-package-card-free {
    border-color: rgba(250,204,21,0.34);
    background:
        linear-gradient(180deg, rgba(39,28,8,0.92), rgba(2,6,23,0.98));
}

.landing-package-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(250,204,21,0.08), transparent 42%),
        radial-gradient(circle at 50% 105%, rgba(250,204,21,0.12), transparent 38%);
}

.landing-package-top,
.landing-package-divider,
.landing-package-features,
.landing-package-bottom {
    position: relative;
    z-index: 2;
}

.landing-package-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

.landing-package-label {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(250,204,21,0.12);
    border: 1px solid rgba(250,204,21,0.22);
    color: #facc15;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.landing-package-name {
    margin: 18px 0 0;
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    line-height: .95;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.035em;
    color: #ffffff;
}

.landing-package-count {
    flex: 0 0 auto;
    min-width: 86px;
    padding: 14px 12px;
    text-align: center;
    border-radius: 24px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.landing-package-count span {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    color: #ffffff;
}

.landing-package-count small {
    display: block;
    margin-top: 5px;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: #9ca3af;
}

.landing-package-divider {
    height: 1px;
    margin: 26px 0;
    background:
        linear-gradient(90deg, rgba(250,204,21,0.55), rgba(255,255,255,0.10), transparent);
}

.landing-package-features {
    list-style: none;
    margin: 0;
    padding: 0;
    min-height: 118px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.landing-package-features li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #cbd5e1;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
}

.landing-package-features li span {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(250,204,21,0.15);
    color: #facc15;
    font-size: 13px;
    font-weight: 900;
}

.landing-package-features li em {
    font-style: normal;
}

.landing-package-bottom {
    margin-top: 34px;
}

.landing-package-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    color: #ffffff;
}

.landing-package-price span {
    font-family: 'Oswald', sans-serif;
    font-size: 62px;
    line-height: .82;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.landing-package-price sup {
    position: relative;
    top: -18px;
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
    color: #facc15;
}

.landing-package-price small {
    margin-left: 6px;
    margin-bottom: 6px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #64748b;
}

.landing-packages-action {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.landing-browse-packages-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 0 42px;
    border-radius: 999px;
    background: #facc15;
    color: #000000;
    border: 1px solid rgba(250,204,21,0.88);
    box-shadow:
        0 18px 44px rgba(250,204,21,0.22),
        0 16px 40px rgba(0,0,0,0.32);
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .075em;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.landing-browse-packages-btn:hover {
    transform: translateY(-2px);
    background: #fde047;
    color: #000000;
    box-shadow:
        0 22px 52px rgba(250,204,21,0.28),
        0 20px 48px rgba(0,0,0,0.38);
}

@media (max-width: 768px) {
    .landing-packages-section {
        padding: 72px 0;
    }

    .landing-packages-wrap {
        padding: 0 18px;
    }

    .landing-package-card {
        flex-basis: 84vw;
        min-height: 390px;
        padding: 25px;
        border-radius: 30px;
    }

    .landing-package-name {
        font-size: 32px;
    }

    .landing-package-price span {
        font-size: 56px;
    }
}

@media (max-width: 1024px) {
    .landing-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .landing-features-section {
        padding: 64px 0;
    }

    .landing-features-wrap {
        padding: 0 18px;
    }

    .landing-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .landing-feature-card {
        min-height: 230px;
        padding: 26px;
        border-radius: 28px;
    }
}

@media (max-width: 768px) {
    .landing-trust-pills {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .landing-trust-pill {
        min-width: 0;
        padding: 16px 14px;
        border-radius: 28px;
    }

    .landing-trust-value {
        font-size: 26px;
    }

    .landing-trust-label {
        font-size: 11px;
    }
}

/* ---------- Free trial card ---------- */

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

@keyframes borderRunner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vegas-trial-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, #2b1055, #7b1fa2, #ff006e, #ffbe0b);
    background-size: 300% 300%;
    animation: trialGlow 6s ease infinite;
}

.vegas-trial-card::before {
    content: "";
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 0deg, transparent, #fff3b0, #ffbe0b, #ff006e, transparent);
    animation: borderRunner 4s linear infinite;
}

.vegas-trial-inner {
    position: relative;
    margin: 3px;
    border-radius: 21px;
    background: radial-gradient(circle at top, #3b0764, #111827 70%);
    z-index: 1;
    min-height: 280px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.light-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 22px;
}

.light-dot {
    width: 9px;
    height: 9px;
    background: #facc15;
    border-radius: 9999px;
    box-shadow: 0 0 10px #facc15;
}

.trial-title {
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.trial-line {
    font-size: 20px;
    font-weight: 800;
    color: #fbcfe8;
    margin-top: 14px;
}

/* ---------- Account form ---------- */

.account-form {
    max-width: 460px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.account-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.account-form input {
    width: 100%;
    border-radius: 14px;
    background: #374151;
    border: 1px solid #4b5563;
    padding: 14px;
    color: #fff;
}

/* =========================================================
   ADMIN SHARED
========================================================= */

.admin-wrap,
.admin-users-wrap,
.admin-packages-wrap,
.admin-channels-wrap {
    padding: 24px;
    max-width: 1600px;
    margin: 0 auto;
}

.admin-title,
.admin-wrap h1,
.admin-users-wrap h2,
.admin-packages-wrap h2,
.admin-channels-wrap h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #fff;
}

.admin-status-message,
.status-message {
    margin-bottom: 16px;
    padding: 10px 14px;
    background: #064e3b;
    color: #a7f3d0;
    border: 1px solid #047857;
    border-radius: 10px;
}

.admin-error-message {
    margin-bottom: 16px;
    padding: 10px 14px;
    background: #7f1d1d;
    color: #fecaca;
    border: 1px solid #991b1b;
    border-radius: 10px;
}

/* ---------- Admin tables ---------- */

.table-scroll,
.admin-table-scroll {
    overflow-x: auto;
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 14px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
}

.admin-table th {
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    color: #9ca3af;
    background: #020617;
    padding: 12px 10px;
    border-bottom: 1px solid #1f2937;
    white-space: nowrap;
}

.admin-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #1f2937;
    vertical-align: top;
    font-size: 14px;
    color: #e5e7eb;
}

.admin-table tr:hover {
    background: #162033;
}

/* ---------- Admin hub cards ---------- */

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.admin-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: .2s;
    border: 1px solid #2a2a2a;
    color: inherit;
    text-decoration: none;
    display: block;
}

.admin-card:hover {
    background: #222;
    transform: translateY(-2px);
}

.admin-card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.admin-card-desc {
    font-size: 13px;
    color: #aaa;
}

/* ---------- Admin users subscriptions ---------- */

.sub-card {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 10px;
    padding: 9px;
    margin-bottom: 8px;
    min-width: 220px;
}

.sub-name {
    font-weight: 700;
    margin-bottom: 5px;
}

.sub-line {
    font-size: 12px;
    color: #cbd5e1;
    margin-top: 2px;
}

.actions form {
    margin-bottom: 6px;
}

/* ---------- Admin form elements ---------- */

.admin-select,
.admin-input,
.admin-textarea {
    background: #111827;
    color: #fff;
    border: 1px solid #374151;
    border-radius: 8px;
    padding: 8px 10px;
}

.admin-select {
    min-width: 180px;
}

/* =========================================================
   LANDING HERO
========================================================= */

.landing-hero-panel {
    position: absolute;
    inset-block: 0;
    left: 0;
    width: 64%;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.98) 0%,
            rgba(3,7,18,0.96) 38%,
            rgba(3,7,18,0.72) 70%,
            rgba(3,7,18,0.00) 100%
        );
}

.landing-hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,0.82) 0%,
            rgba(0,0,0,0.12) 45%,
            rgba(0,0,0,0.55) 100%
        );
}

.landing-hero-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 24px 0;
}

.landing-hero-content {
    max-width: 720px;
    font-family: 'Jost', sans-serif;
}

.landing-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(250,204,21,0.28);
    background: rgba(0,0,0,0.56);
    color: #f3f4f6;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .035em;
    box-shadow: 0 14px 34px rgba(0,0,0,0.38);
    backdrop-filter: blur(12px);
}

.landing-hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #facc15;
    box-shadow: 0 0 18px rgba(250,204,21,.8);
    flex: 0 0 auto;
}

.landing-hero-title {
    margin-top: 28px;
    max-width: 760px;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(48px, 5.4vw, 86px);
    line-height: .95;
    font-weight: 900;
    letter-spacing: -0.045em;
    text-transform: uppercase;
    color: #ffffff;
}

.landing-hero-title span {
    color: #facc15;
}

.landing-hero-text {
    margin-top: 24px;
    max-width: 680px;
    color: #e5e7eb;
    font-family: 'Jost', sans-serif;
    font-size: clamp(18px, 1.55vw, 24px);
    line-height: 1.45;
    font-weight: 500;
}

.landing-hero-actions {
    margin-top: 42px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.landing-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 0 38px;
    border-radius: 18px;
    font-family: 'Jost', sans-serif;
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .055em;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.landing-hero-btn:hover {
    transform: translateY(-2px);
}

.landing-hero-btn-yellow {
    background: #facc15;
    color: #000000;
    border: 1px solid rgba(250,204,21,0.85);
    box-shadow: 0 18px 40px rgba(250,204,21,0.22);
}

.landing-hero-btn-yellow:hover {
    background: #fde047;
    color: #000000;
}

.landing-hero-btn-dark {
    background: rgba(0,0,0,0.62);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.30);
    box-shadow: 0 18px 40px rgba(0,0,0,0.32);
    backdrop-filter: blur(12px);
}

.landing-hero-btn-dark:hover {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
}

.landing-hero-copy {
    position: absolute;
    right: 48px;
    bottom: 48px;
    z-index: 30;
    width: min(520px, 90vw);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .55s ease, transform .55s ease;
    padding: 28px 32px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(0,0,0,0.92), rgba(15,23,42,0.84));
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 30px 90px rgba(0,0,0,0.70);
    backdrop-filter: blur(18px);
}

.landing-hero-copy.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.landing-hero-channel {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #facc15;
    color: #050505;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 18px;
}

.landing-hero-movie-title {
    margin: 0;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(30px, 3vw, 46px);
    line-height: .98;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-shadow: 0 10px 28px rgba(0,0,0,0.85);
}

.landing-hero-subtitle {
    margin-top: 12px;
    color: #d1d5db;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .landing-hero-panel {
        width: 100%;
        background:
            linear-gradient(
                90deg,
                rgba(0,0,0,0.96) 0%,
                rgba(3,7,18,0.90) 62%,
                rgba(3,7,18,0.35) 100%
            );
    }

    .landing-hero-inner {
        padding: 110px 18px 120px;
    }

    .landing-hero-title {
        font-size: clamp(42px, 13vw, 58px);
    }

    .landing-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .landing-hero-btn {
        width: 100%;
        min-height: 60px;
    }

    .landing-hero-copy {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
        padding: 22px;
    }
}

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

@media (max-width: 768px) {
    .pkg-grid {
        grid-template-columns: 1fr;
    }

    .current-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .dash-wrap,
    .admin-wrap,
    .admin-users-wrap,
    .admin-packages-wrap,
    .admin-channels-wrap {
        padding: 32px 18px;
    }
}