:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #ecf0f1;
    --card-bg: rgba(44, 62, 80, 0.8);
    --hover-color: #c0392b;
}

html {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('/api/placeholder/1600/900') center/cover no-repeat fixed;
    min-height: 100%;
    color: var(--text-color);
}

body {
    background: none;
    font-family: 'Roboto', sans-serif;
}

.headingFont {
    font-family: 'Ubuntu', sans-serif;
}

.content-card {
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
}


.playlist-item {
    transition: transform 0.3s ease;
}

.playlist-item:hover {
    transform: scale(1.05);
}

.watch-now {
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.watch-now:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    color: var(--text-color);
    text-decoration: none;
}

h1, h2 {
    color: var(--accent-color);
}

.lead {
    color: var(--text-color);
    font-size: 1.25rem;
}

img {
    border: 2px solid var(--accent-color);
}

.social-links {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-color);
}

.social-links a:hover {
    color: var(--text-color);
    background-color: var(--hover-color);
    transform: translateY(-3px);
}

.social-links svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        margin-top: 20px;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
    }
    
    .social-links svg {
        width: 20px;
        height: 20px;
    }
}

/* Add this to your existing CSS */
.embed-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}