* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #141414;
    color: #fff;
    overflow-x: hidden;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 60px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    z-index: 1000;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: #141414;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: #e50914;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu a {
    color: #e5e5e5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #fff;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-btn {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}

.user-dropdown {
    position: relative;
    cursor: pointer;
}

.user-dropdown img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 40px;
    background: rgba(0,0,0,0.9);
    border: 1px solid #333;
    border-radius: 4px;
    min-width: 150px;
    padding: 10px 0;
}

.user-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: #e5e5e5;
    text-decoration: none;
    font-size: 13px;
}

.dropdown-menu a:hover {
    text-decoration: underline;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    height: 80vh;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    display: flex;
    align-items: center;
    padding: 0 60px;
    margin-top: -10px;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-play {
    padding: 12px 30px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-play:hover {
    background: rgba(255,255,255,0.8);
}

.btn-info {
    padding: 12px 30px;
    background: rgba(128,128,128,0.5);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-info:hover {
    background: rgba(128,128,128,0.7);
}

.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #141414, transparent);
}

/* ========== ROWS ========== */
.row-container {
    padding: 20px 60px;
}

.row-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.row-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
}

.row-scroll::-webkit-scrollbar {
    display: none;
}

.video-card {
    flex: 0 0 200px;
    transition: transform 0.3s ease;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
}

.video-card:hover {
    transform: scale(1.1);
    z-index: 10;
}

.video-card img {
    width: 100%;
    height: 112px;
    object-fit: cover;
    border-radius: 4px;
}

.video-card .video-info {
    padding: 8px 4px;
}

.video-card .video-info h3 {
    font-size: 14px;
    margin-bottom: 4px;
}

.video-card .video-info p {
    font-size: 12px;
    color: #999;
}

/* ========== FOOTER ========== */
.footer {
    padding: 40px 60px 20px;
    color: #757575;
    border-top: 1px solid #333;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer p {
    margin-bottom: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #757575;
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.language-btn {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid #757575;
    color: #757575;
    border-radius: 2px;
    cursor: pointer;
}

.footer-copy {
    font-size: 11px;
    margin-top: 20px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 0 20px;
        height: 60vh;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .row-container {
        padding: 10px 20px;
    }
    
    .video-card {
        flex: 0 0 140px;
    }
    
    .video-card img {
        height: 78px;
    }
    
    .footer {
        padding: 20px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}