@font-face {
  font-family: "Anonymous Pro";
  src: url("/css/anonymous-pro.woff2") format("woff2");
  font-style: normal;
}

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

html, body {
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, #18181b 0%, #232526 100%);
    color: #fff;
    font-family: "Anonymous Pro", monospace;
    overflow: auto;
    position: relative;
}


#three-bg.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    background: radial-gradient(circle at 60% 40%, #ff333344 0%, #232526 80%), linear-gradient(135deg, #18181b 0%, #232526 100%);
    background-repeat: no-repeat;
    filter: blur(0.5px);
    animation: bgMove 12s ease-in-out infinite alternate;
    overflow: hidden;
}

@keyframes bgMove {
    0% { background-position: 60% 40%, 0 0; }
    100% { background-position: 40% 60%, 100% 100%; }
}


.main-card {
    min-height: 70vh;
    max-width: 420px;
    width: 95vw;
    margin: 60px auto 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.25);
    border-radius: 24px;
    padding: 40px 32px 24px 32px;
    background: none;
}

.glass {
    background: rgba(24, 24, 27, 0.7);
    backdrop-filter: blur(12px) saturate(120%);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
}


.site-title {
    font-size: 3.2rem;
    color: #ff3333;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 0.2em;
    text-shadow: 0 2px 12px #ff333355, 0 1px 0 #000;
    animation: fadeIn 1.2s;
}

.tagline {
    font-size: 1.2rem;
    color: #c9c9c9;
    margin-bottom: 2.2em;
    font-weight: 400;
    text-align: center;
    animation: fadeIn 1.8s;
}


.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2em;
}

.avatar-glow {
    margin-bottom: 1.2em;
    border-radius: 50%;
    box-shadow: 0 0 0 0 #ff3333, 0 0 32px 8px #ff333355;
    animation: avatarPulse 2s infinite alternate;
    display: flex;
    align-items: center;
    justify-content: center;
}
.avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2.5px solid #ff3333;
    background: #18181b;
    object-fit: cover;
    box-shadow: 0 2px 16px #ff333355;
}

@keyframes avatarPulse {
    0% { box-shadow: 0 0 0 0 #ff3333, 0 0 32px 8px #ff333355; }
    100% { box-shadow: 0 0 0 8px #ff333322, 0 0 48px 16px #ff333355; }
}

.cta-row {
    display: flex;
    gap: 1.2em;
    margin-bottom: 1.5em;
    flex-wrap: wrap;
    justify-content: center;
}
.cta-btn {
    background: #ff3333;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.7em 1.6em;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 8px #ff333355;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    cursor: pointer;
    outline: none;
}
.cta-btn:hover, .cta-btn:focus {
    background: #fff;
    color: #ff3333;
    transform: translateY(-2px) scale(1.04);
}


.footer {
    width: 100%;
    margin-top: 2.5em;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7em;
}
.footer-socials {
    display: flex;
    gap: 1.2em;
    justify-content: center;
    margin-bottom: 0.2em;
}
.footer-icon {
    width: 28px;
    height: 28px;
    opacity: 0.85;
    transition: opacity 0.2s, transform 0.2s;
    filter: drop-shadow(0 1px 4px #ff333355);
}
.footer-icon:hover {
    opacity: 1;
    transform: scale(1.12);
}
.copyright {
    font-size: 0.95rem;
    color: #c9c9c9;
    margin-top: 0.5em;
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 900px) {
    .main-card {
        max-width: 98vw;
        padding: 24px 6vw 18px 6vw;
    }
}
@media (max-width: 600px) {
    .main-card {
        max-width: 100vw;
        padding: 12px 2vw 10px 2vw;
    }
    .site-title {
        font-size: 1.5rem;
    }
    .avatar {
        width: 48px;
        height: 48px;
    }
    .cta-btn {
        font-size: 0.95rem;
        padding: 0.5em 1em;
    }
    .tagline {
        font-size: 1rem;
    }
}