/* Video Container Styling */
.video-container {
    margin-bottom: 30px;
    overflow: hidden;
    max-width: 100%;
    height: auto;
    position: relative;
}

.video-container video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Button Styles */
.links .btn {
    display: inline-block;
    margin: 15px;
    padding: 15px 30px;
    background-color: #ff007f;
    color: #0d0d0d;
    text-decoration: none;
    border-radius: 10px;
    border: 3px solid #ff007f;
    transition: background-color 0.3s, color 0.3s;
    box-shadow: 0 0 15px #ff007f;
    font-size: 1.2em;
    font-family: 'Press Start 2P', cursive;
}

.links .btn:hover {
    background-color: #0d0d0d;
    color: #ff007f;
    border-color: #ff007f;
}

/* Other styles (already discussed) */
body {
    font-family: 'Orbitron', sans-serif;
    background-color: #0d0d0d;
    color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.parallax {
    background-image: url('gaming-bg.jpg'); /* Replace with your gaming-themed background */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.content {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 10px;
    margin: 0 auto;
    max-width: 900px;
}

header {
    margin-bottom: 20px;
}

.logo {
    max-width: 200px;
    height: auto;
}

h1 {
    font-family: 'Press Start 2P', cursive;
    font-size: 2.5em;
    color: #ff007f;
    text-shadow: 0 0 20px #ff007f;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #cccccc;
}

footer {
    margin-top: 40px;
    font-size: 0.9em;
    color: #666;
    text-align: center;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1.1em;
    }

    .logo {
        max-width: 150px;
    }

    .links .btn {
        font-size: 1em;
        padding: 10px 20px;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 1.8em;
    }

    p {
        font-size: 1em;
    }

    .logo {
        max-width: 120px;
    }

    form {
        width: 100%;
    }

    .video-container {
        padding-bottom: 56.25%;
    }

    .links .btn {
        font-size: 0.9em;
        padding: 8px 16px;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }

    p {
        font-size: 0.9em;
    }

    .logo {
        max-width: 100px;
    }

    .links .btn {
        font-size: 0.8em;
        padding: 7px 14px;
    }

    form {
        width: 100%;
    }
}
