:root {
    --bg-color: #141414;
    --text-color: #fff;
    --primary-color: #e50914;
    --card-bg: #1f1f1f;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 10%, rgba(0,0,0,0));
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
}

.logo {
    color: var(--primary-color);
    font-size: 30px;
    font-weight: bold;
    margin-right: 40px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    color: #e5e5e5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

nav a:hover {
    color: #b3b3b3;
}

.user-profile img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 80vh;
    background-image: url('https://assets.nflxext.com/ffe/siteui/vlv3/f841d4c7-10e1-40af-bcae-07a3f8dc141a/f6d7434e-d6de-4185-a6d4-c77a2d08737b/US-en-20220502-popsignuptwoweeks-perspective_alpha_website_medium.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 50px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #141414 10%, transparent 90%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
}

.hero-title {
    font-size: 60px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-desc {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 25px;
    font-size: 1.1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-play {
    background-color: #fff;
    color: #000;
}

.btn-info {
    background-color: rgba(109, 109, 110, 0.7);
    color: #fff;
}

/* Categories & Carousel */
.category {
    padding: 20px 50px;
    margin-bottom: 40px;
}

.category h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #e5e5e5;
}

.carousel-container {
    overflow-x: auto;
    padding-bottom: 20px;
}

.carousel-container::-webkit-scrollbar {
    height: 8px;
}

.carousel-container::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

.carousel {
    display: flex;
    gap: 10px;
}

.card {
    min-width: 250px;
    height: 140px;
    background-color: var(--card-bg);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
}

.card:hover {
    transform: scale(1.1);
    z-index: 100;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    text-align: center;
    padding: 50px;
    color: #666;
    font-size: 14px;
}
