* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url('images/background.webp') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 200px;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.4));
}

/* Container with fade effect applied */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Social Media Icons */
.social-icons {
    position: absolute;
    top: 150px;
    display: flex;
    gap: 15px;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.4));
}

.social-icons a {
    font-size: 50px;
    color: black !important;
    transition: transform 0.2s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.1);
    color: rgb(255 0 0) !important;
}

/* Buttons */
.buttons {
    position: absolute;
    top: 210px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.4));
}

.btn {
    text-decoration: none;
    background: rgba(0, 174, 255, 0.8);
    color: #000000;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 13px;
    width: 300px;
    text-align: center;
    transition: background 0.3s ease-in-out;
    font-family: "Press Start 2P", serif;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.btn:hover {
    background: rgba(0, 174, 255, 1);
    transform: scale(1.05);
}

/* Twitter Widget Container */
.twitter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 300px;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.4));
}


.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: black;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
