body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Droid Sans', sans-serif;
    background-color: transparent;
    color: white;
}

/* Video Background */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1000;
}

#video-background {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

/* Overlay Effects */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -999;
    pointer-events: none;
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0) 50%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    background-size: 100% 4px;
    z-index: -998;
    opacity: 0.3;
    pointer-events: none;
}

/* Headers */
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 15px 0;
    text-align: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.top-header h1 {
    margin: 0;
    font-size: 2.5em;
    letter-spacing: 0.5em;
    font-weight: 700;
}

.bottom-header {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 15px 0;
    text-align: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.bottom-header-links {
    margin: 0;
}

.bottom-header-links a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-size: 1.2em;
    letter-spacing: 0.1em;
    transition: color 0.6s ease, font-size 0.6s ease;
}

.bottom-header-links a:hover {
    color: #b19cd9;
    font-size: 1.7em;
}

/* Content */
.content {
    max-width: 900px;
    margin: 120px auto 100px;
    padding: 20px;
    background-color: transparent;
}

.video-section {
    margin-bottom: 50px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    position: relative;
}

.video-section h2 {
    font-size: 2em;
    margin-top: -10px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.video-section p {
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.video-section a {
    color: #b19cd9;
    text-decoration: none;
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/* Media Queries */
@media (max-width: 768px) {
    .video-container, 
    .overlay, 
    .scanlines {
        display: none;
    }

    body {
        background-image: 
            radial-gradient(#000 0.5px,transparent 0.5px),
            radial-gradient(#000 0.5px,transparent 0.5px),
            radial-gradient(#000 0.5px,transparent 0.5px),
            linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(53,7,79,1) 100%, rgba(190,43,236,1) 100%);
        background-size: 3px 3px, 3px 3px, 3px 3px, 100% 100%;
        background-position: 0 0, 1px 1px, 2px 2px, 0 0;
        background-repeat: repeat, repeat, repeat, no-repeat;
        background-attachment: fixed;
    }

    .top-header h1 {
        font-size: 1.8em;
        letter-spacing: 0.3em;
    }

    .content {
        margin-top: 80px;
        padding: 10px;
    }

    .bottom-header-links a {
        margin: 0 10px;
        font-size: 1em;
    }
}