/* styles.css */
* {
    font-family: "Lexend", sans-serif !important;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.top-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 450px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.3) 0%,
                                rgba(255, 255, 255, 0) 90%
    );
    animation: glow-animation 3s ease-in-out infinite alternate;
    filter: blur(30px);
}

.content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
    max-width: 600px;
}

h1 {
    font-size: 4rem;
    margin: 0 0 1rem 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

p {
    color: #777;
    line-height: 1.6;
    margin: 0 auto 2rem;
    max-width: 480px;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
}

@keyframes glow-animation {
    from { opacity: 0.5; transform: translateY(-50px); }
    to { opacity: 0.8; transform: translateY(0); }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .content { padding: 1rem; }
}

.button-container {
    position: fixed;
    bottom: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 2;
}

.social-button {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.social-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(0, 0, 0, 0.9);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    width: 90%;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    max-height: 90vh;
    overflow-y: auto;
}

#kofiModal .modal-content {
max-width: 400px;
padding: 1rem;
padding-top: 0.3rem !important;
padding-bottom: 0.3rem !important;
}

#socialModal .modal-content {
max-width: 300px;
}

.modal.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.social-link {
    display: block;
    margin: 1rem 0;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: white;
}

.kofi-iframe {
    width: 100%!important;
    background: transparent!important;
    border: none!important;
    margin: 1rem 0;
}

input#password:not(:first-of-type),
input#username:not(:first-of-type),
input#your-name:not(:first-of-type) {
    display: none !important;
    position: absolute !important;
    left: -9999px !important;
    visibility: hidden !important;
}

.email-link {
    color: #777;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #ffffff;
}

.badge-container {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.badge-container img {
    width: 120px;
    height: auto;
    border-radius: 6px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
}

.badge-container img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}
