:root {
    --main-bg: #141414;
    --accent-red: #E50914;
    --text-white: #ffffff;
    --gray-text: #b3b3b3;
}

body {
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--main-bg);
    color: var(--text-white);
    overflow-x: hidden;
}

/* Navbar Styling */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px 4%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 10%, transparent);
    z-index: 1000;
}

.logo {
    color: var(--accent-red);
    font-size: 1.8rem;
    font-weight: bold;
    margin-right: 40px;
}

.nm:link, .nm:visited, .nm:hover, .nm:active {
    color: inherit;
    text-decoration: none;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    margin-right: 20px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gray-text);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0)), 
                url('https://res.cloudinary.com/dr1rn40sn/image/upload/v1773144877/images_1_zxlrgd.jpg'); /* Replace with your hero image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: 4%;
}

.hero-content {
    max-width: 500px;
}

.category {
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.title {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1;
}

.description {
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-buttons button {
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
}

.btn-play {
    background-color: white;
    color: black;
}

.btn-list {
    background-color: rgba(109, 109, 110, 0.7);
    color: white;
}