body {
    background-color: #141414;
    color: white;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    overflow-x: hidden;
}

.navbar {
    padding: 20px 50px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    position: fixed;
    width: 100%;
    z-index: 10;
}

.navbar h1 {
    color: #E50914;
    margin: 0;
    font-size: 30px;
    letter-spacing: 1px;
}

.main-container {
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#player-wrapper {
    width: 90%;
    max-width: 1100px;
    background: #000;
    box-shadow: 0px 10px 50px rgba(0,0,0,0.8);
    border: 1px solid #333;
    aspect-ratio: 16/9;
}

.content-section {
    width: 90%;
    margin-top: 40px;
    padding-bottom: 50px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.channel-card {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 4px;
    overflow: hidden;
}

.channel-card:hover {
    transform: scale(1.1);
    z-index: 5;
    border: 2px solid white;
}

.channel-card img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
}

.channel-card .title-overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    width: 100%;
    padding: 10px;
    font-size: 12px;
    font-weight: bold;
}
