:root {
    --primary: #ff0055;
    --primary-glow: rgba(255, 0, 85, 0.5);
    --secondary: #00f2fe;
    --bg-black: #050505;
    --bg-dark: #0a0b0d;
    --bg-card: #15181c;
    --bg-input: #1e2229;
    --text-white: #ffffff;
    --text-gray: #94a3b8;
    --text-muted: #64748b;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --radius-full: 100px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background Accents */
.glow-blur {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

.glow-1 {
    top: -200px;
    right: -200px;
}

.glow-2 {
    bottom: -200px;
    left: -200px;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1,
h2,
h3,
h4,
.brand {
    font-weight: 800;
    letter-spacing: -0.5px;
}

a {
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

/* Navigation - Modern Netflix Style */
header {
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.9), transparent);
    transition: var(--transition);
}

header.scrolled {
    height: 75px;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.brand {
    font-size: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand span {
    background: linear-gradient(to right, #ff0055, #ff8c00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.search-wrapper {
    flex: 0 1 500px;
    position: relative;
    margin: 0 40px;
}

.search-wrapper input {
    width: 100%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 12px 24px;
    padding-right: 60px;
    border-radius: var(--radius-full);
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: var(--transition);
}

.search-wrapper input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.15);
}

.search-wrapper button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-admin {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
}

.btn-admin:hover {
    background: #fff;
    color: #000;
}

/* Hero Section - Minimalist */
.hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
    text-align: center;
    justify-content: center;
    border-bottom: 1px solid var(--glass-border);
}

.hero-box {
    max-width: 900px;
}

.badge-featured {
    display: inline-block;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0 auto 30px;
    max-width: 600px;
}

.btn-main {
    background: var(--primary);
    color: #fff;
    padding: 18px 48px;
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: 800;
    display: inline-block;
}

.btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 85, 0.4);
}

/* Video Grid - Premium Layout */
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-label {
    color: var(--primary);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 36px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 100px;
}

.premium-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    position: relative;
    display: block;
}

.premium-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

.card-media {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.card-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.premium-card:hover .card-media img {
    transform: scale(1.1);
}

.card-play {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.premium-card:hover .card-play {
    opacity: 1;
}

.play-circle {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-info {
    padding: 24px;
}

.card-title {
    font-size: 18px;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Watch View */
.watch-grid {
    padding-top: 140px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    margin-bottom: 100px;
}

.player-box {
    background: #000;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 16/9;
    border: 1px solid var(--glass-border);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6);
}

.player-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-data {
    margin-top: 40px;
}

.video-data h1 {
    font-size: 36px;
    margin-bottom: 24px;
}

.meta-row {
    display: flex;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 40px;
    color: var(--text-gray);
    font-weight: 600;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.side-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.side-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.side-thumb {
    width: 140px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.side-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-data h4 {
    font-size: 14px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer */
footer {
    padding: 100px 0 50px;
    background: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo .brand {
    margin-bottom: 24px;
}

.footer-logo p {
    color: var(--text-gray);
    max-width: 380px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

@media (max-width: 1100px) {
    .watch-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        text-align: center;
        justify-content: center;
    }

    .hero-box {
        margin: 0 auto;
    }

    .search-wrapper {
        display: none;
    }

    .container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}