/* === General === */
html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
    background: url('wallpaperflare.com_wallpaper.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
}

body {
    display: flex;
    flex-direction: column;
}

header {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
    text-align: center;
}

header a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-weight: bold;
    transition: color 0.3s;
}

header a:hover {
    color: #ffcc00;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

main h1 {
    font-size: 36px;
    margin-bottom: 10px;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 25px;
    border-radius: 10px;
    display: inline-block;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}


main h2 {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: normal;
}

/* === Call-to-Actions === */
.cta-button {
    background-color: #ffcc00;
    color: black;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e6b800;
}

/* === Logos & Layout === */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.server-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.logo-link {
    position: relative;
    width: 500px;
    max-width: 90%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.logo-link:nth-child(1) { animation-delay: 0.3s; }
.logo-link:nth-child(2) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-link img.base {
    width: 100%;
    display: block;
}

.logo-link img.hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-link:hover img.hover {
    opacity: 1;
}

/* === Footer === */
footer {
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    padding: 15px 10px;
    font-size: 14px;
}

footer a {
    color: #ccc;
    margin: 0 15px;
    text-decoration: none;
}

footer a:hover {
    color: #ffcc00;
}

/* === Responsive === */
@media (max-width: 768px) {
    .logo-container {
        flex-direction: column;
        gap: 60px;
    }

    header a {
        display: inline-block;
        margin: 10px;
    }
}

/* === Button === */
.tera-button {
    background: linear-gradient(to bottom, #1b6dc1 0%, #103f82 100%);
    border: 2px solid #69b6ff;
    color: white;
    font-weight: bold;
    font-size: 16px;
    padding: 12px 30px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 174, 255, 0.7);
    transition: all 0.25s ease;
    display: inline-block;
}

.tera-button:hover {
    background: linear-gradient(to bottom, #218de3 0%, #1453aa 100%);
    box-shadow: 0 0 15px rgba(100, 200, 255, 0.9);
    transform: scale(1.05);
}

