body {
    background-color: #10212b;
    font-family: 'Comic Sans MS', sans-serif;
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 0;
}

.banner {
    position: relative;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2; 
    background-color: rgba(20, 41, 54, 0.8); 
    margin: -650px auto 0 auto;
    padding: 30px;
    max-width: 60%;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.logo {
    width: 180px;
    height: auto;
    margin-bottom: 30px;
}

h1 {
    font-size: 36px;
    margin-bottom: 40px;
}


.links {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1024px) {
    .links {
        grid-template-columns: repeat(3, 1fr); 
    }
}

@media (max-width: 768px) {
    .links {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 480px) {
    .links {
        grid-template-columns: 1fr; 
    }
}


.links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-decoration: none;
    color: #ffffff;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.links a i {
    margin-right: 10px;
}

.button.twitter {
    background-color: #1da1f2;
}

.button.twitter:hover {
    background-color: #0d8dd9;
    transform: translateY(-3px);
}

.button.tiktok {
    background-color: #010101;
}

.button.tiktok:hover {
    background-color: #333333;
    transform: translateY(-3px);
}

.button.youtube {
    background-color: #ff0000;
}

.button.youtube:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
}

.button.discord {
    background-color: #5865f2;
}

.button.discord:hover {
    background-color: #4854cc;
    transform: translateY(-3px);
}

.button.twitch {
    background-color: #9146ff;
}

.button.twitch:hover {
    background-color: #772ce8;
    transform: translateY(-3px);
}

.button.bluesky {
    background-color: #0099ff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; 
}

.button.bluesky img {
    width: 20px; 
    height: auto;
}

.button.bluesky:hover {
    background-color: #007acc;
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .container {
        max-width: 90%;
        padding: 30px;
    }

    h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .links {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .banner-image {
        height: 400px;
    }

    .container {
        margin-top: -250px;
    }

    .logo {
        width: 120px;
    }

    h1 {
        font-size: 24px;
    }

    .links a {
        padding: 12px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .banner-image {
        height: 250px;
    }

    .container {
        margin-top: -150px;
    }

    h1 {
        font-size: 20px;
    }

    .links a {
        font-size: 14px;
    }
}
