* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    color: #e0e0e0;
    background-color: #000;
    overflow-y: auto;
}

.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #003366 0%, #000000 100%);
    z-index: -1;
}

.overlay {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.language-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
}

.language-toggle button {
    background-color: transparent;
    border: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    margin-left: 15px;
    cursor: pointer;
}

.center-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 800px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1.5s forwards;
    margin: 20px auto;
}

.logo {
    text-align: center;
}

.logo-image {
    max-width: 450px;
    max-height: 250px;
    display: block;
    margin: 0 auto;
}

.content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.content p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #dcdcdc;
}

.description {
    font-size: 18px;
    line-height: 1.6;
    display: none;
    color: #f5f5f5;
}

.description strong {
    font-weight: 700;
    color: #ffffff;
}

.social-media {
    margin-top: 20px;
}

.social-media a {
    font-size: 24px;
    color: #ffffff;
    margin: 0 15px;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #00acee;
}

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

/* Mobile-specific styling */
@media (max-width: 768px) {
    .center-card {
        width: 100%; /* Make the card full-width on mobile */
        padding: 20px;
        box-shadow: none; /* Remove shadow for a cleaner look */
    }

    .content h1 {
        font-size: 36px;
    }

    .logo-image {
        max-width: 300px;
        max-height: 150px;
    }
}
