:root {
    --primary: #6C63FF;
    --primary-dark: #5A52D9;
    --secondary: #FF6584;
    --accent: #32E0C4;
    --background: #0F172A;
    --card-bg: #1E293B;
    --text: #F8FAFC;
    --text-muted: #94A3B8;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header and Navigation */
.top-banner {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 500;
    animation: gradientShift 10s infinite linear;
    background-size: 200% 100%;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 0 5px rgba(108, 99, 255, 0.5));
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(108, 99, 255, 0.8));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links li a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-links li a.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.menu-toggle {
    display: none;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.menu-toggle:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.05);
}

/* Hero Section for Entertainment */
.hero-entertainment {
    position: relative;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.2), rgba(255, 101, 132, 0.2)), url('images/entertainment-bg.jpg') center/cover no-repeat;
    padding: 4rem 1rem;
    overflow: hidden;
    animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-entertainment:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    z-index: 1;
}

.hero-entertainment h1, 
.hero-entertainment h2, 
.hero-entertainment p {
    position: relative;
    z-index: 2;
}

.hero-entertainment h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.8s ease;
}

.hero-entertainment h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 700;
    animation: slideDown 1s ease;
}

.hero-entertainment p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--accent);
    max-width: 800px;
    margin: 0 auto;
    animation: slideDown 1.2s ease;
}

@keyframes slideDown {
    from { 
        opacity: 0;
        transform: translateY(-30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* RCOTBA Intro Section */
.rcotba-intro {
    text-align: center;
    padding: 3rem 1rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.rcotba-intro:before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(50px);
    top: -50px;
    left: -50px;
    z-index: -1;
}

.rcotba-intro:after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(50px);
    bottom: -50px;
    right: -50px;
    z-index: -1;
}

.rcotba-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.rcotba-intro h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
}

.rcotba-intro p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.5);
}

.btn:hover:before {
    left: 100%;
}

/* Video Container Styling */
.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    transform: perspective(800px) rotateY(0deg);
}

.video-wrapper:hover {
    transform: perspective(800px) rotateY(5deg) translateY(-10px);
    box-shadow: 0 20px 40px rgba(108, 99, 255, 0.4);
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    border: none;
}

.video-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(255, 101, 132, 0.1));
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.video-wrapper:hover:before {
    opacity: 1;
}

/* Footer */
footer {
    background-color: var(--card-bg);
    padding: 4rem 1rem 1rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-left p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.footer-center h4,
.footer-right h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-center h4::after,
.footer-right h4::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-entertainment h1 {
        font-size: 3rem;
    }
    
    .hero-entertainment h2 {
        font-size: 2rem;
    }
    
    .rcotba-intro h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--card-bg);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        z-index: 1001;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        align-items: flex-start;
    }
    
    .nav-links.show {
        right: 0;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1002;
        margin-top: 30px;
    }
    
    .hero-entertainment h1 {
        font-size: 2.5rem;
    }
    
    .hero-entertainment h2 {
        font-size: 1.8rem;
    }
    
    .video-container {
        flex-direction: column;
        align-items: center;
    }
    
    .video-wrapper {
        width: 100%;
    }
    
    .footer-container {
        gap: 2rem;
    }
}

/* Additional Animation Effects */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Enhanced animations for page elements */
.float-animation {
    animation: float 6s ease-in-out infinite;
}