:root {
    --neon-blue: #00f3ff;
    --neon-purple: #9d00ff;
}

body {
    background: #0a0a0a;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
}

.hero-section {
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2rem;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.7),
        rgba(0, 243, 255, 0.2)
    );
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
    margin-top: 20cm;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.7);
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(0, 243, 255, 0.5),
                    0 0 20px rgba(0, 243, 255, 0.3),
                    0 0 30px rgba(0, 243, 255, 0.2);
    }
    to {
        text-shadow: 0 0 20px rgba(0, 243, 255, 0.7),
                    0 0 30px rgba(0, 243, 255, 0.5),
                    0 0 40px rgba(0, 243, 255, 0.3);
    }
}

.hero-section .lead {
    font-size: 1.25rem;
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.3);
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .hero-section .container {
        margin-top: 15cm;
        padding: 1.5rem;
    }
}

.cta-button {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    border: none;
    padding: 15px 30px;
    color: white;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0,243,255,0.5);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(157,0,255,0.7);
    text-decoration: none;
    color: white;
}

.cta-button:hover::before {
    left: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0,243,255,0.3);
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
}

.form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0,243,255,0.3);
    color: white;
}

.btn-primary {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    border: none;
    box-shadow: 0 0 15px rgba(0,243,255,0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-blue));
    box-shadow: 0 0 20px rgba(157,0,255,0.5);
}

footer {
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)),
                url('https://th.bing.com/th/id/OIP.wCVcem4FhlCwAsTv_RogMwHaE8?rs=1&pid=ImgDetMain');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 243, 255, 0.1),
        rgba(157, 0, 255, 0.1));
    z-index: 1;
}

footer .container {
    position: relative;
    z-index: 2;
}

footer h5 {
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 10px;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
}

footer p, footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--neon-blue);
    text-decoration: none;
    transform: translateX(5px);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

footer .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

footer .input-group .form-control {
    border: none;
    background: transparent;
}

footer .input-group .btn {
    border-radius: 0 30px 30px 0;
    padding: 0.5rem 1.5rem;
}

.title-section {
    background: linear-gradient(45deg, rgba(0,0,0,0.9), rgba(0,0,0,0.7));
    position: relative;
    overflow: hidden;
}

.title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 243, 255, 0.1),
        rgba(157, 0, 255, 0.1));
    z-index: 1;
}

.title-section .container {
    position: relative;
    z-index: 2;
}

.title-section .section-title {
    font-size: 2.5rem;
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.title-section .video-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    margin: 2rem 0;
}

.title-section video {
    border-radius: 10px;
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.title-section video::-webkit-media-controls {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 0 0 10px 10px;
}

.title-section video::-webkit-media-controls-panel {
    padding: 0 10px;
}

.title-section video::-webkit-media-controls-play-button {
    background-color: var(--neon-blue);
    border-radius: 50%;
}

.title-section video::-webkit-media-controls-timeline {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    height: 5px;
}

.title-section video::-webkit-media-controls-volume-slider {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    height: 5px;
}

@media (max-width: 768px) {
    .title-section .section-title {
        font-size: 2rem;
    }
}

.video-controls {
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.video-controls audio {
    width: 100%;
    height: 40px;
}

.video-controls audio::-webkit-media-controls-panel {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
}

.video-controls audio::-webkit-media-controls-play-button {
    background-color: white;
    border-radius: 50%;
}

.video-controls audio::-webkit-media-controls-timeline {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    height: 5px;
}

.video-controls audio::-webkit-media-controls-volume-slider {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    height: 5px;
}

@media (max-width: 768px) {
    .video-controls {
        margin-top: 1rem;
    }
}