:root {
    --primary-color: #00e676;
    --secondary-color: #1de9b6;
    --accent-color: #ffea00;
    --dark-bg: rgba(0, 0, 0, 0.6);
    --text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rajdhani', sans-serif;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

#bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
}

.content {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.6)
    );
}

h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: var(--text-shadow);
    color: var(--accent-color);
}

p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 2rem;
    max-width: 800px;
    text-shadow: var(--text-shadow);
}

.cta-button {
    padding: 1rem 3rem;
    font-size: clamp(1rem, 2vw, 1.4rem);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.4);
}

.video-controls {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.video-controls button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.video-controls button:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

h1.animate-fade-in { animation-delay: 0.3s; }
p.animate-fade-in { animation-delay: 0.6s; }
.cta-button.animate-fade-in { animation-delay: 0.9s; }

@media (max-width: 768px) {
    .content {
        padding: 1rem;
    }
    
    .video-controls {
        bottom: 1rem;
        right: 1rem;
    }
    
    .video-controls button {
        width: 40px;
        height: 40px;
    }
}
