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

html, body {
    height: 100%;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

body {
    background: url('./background.png') center / cover no-repeat fixed;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 0;
}

.logo {
    margin-bottom: 2rem;
}

.page {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.card {
    background: #ffffff;
    border-radius: 16px;
    padding: 44px 44px 40px;
    text-align: center;
    width: 100%;
    max-width: 30rem;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
}

.headline {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.subtitle {
    font-size: 0.9rem;
    color: #7a7a7a;
    line-height: 1.6;
    margin: 1.5rem 0;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.social-btn svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.social-btn.tiktok {
    background: linear-gradient(135deg, #25F4EE, #FE2C55);
}
.social-btn.tiktok:hover {
    box-shadow: 0 6px 20px rgba(37, 244, 238, 0.4);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #F77062, #C13584, #833AB4, #405DE6);
}
.social-btn.instagram:hover {
    box-shadow: 0 6px 20px rgba(193, 53, 132, 0.4);
}

.social-btn.facebook {
    background: #1877F2;
}
.social-btn.facebook:hover {
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.social-btn.discord {
    background: #5865F2;
}
.social-btn.discord:hover {
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}

@media (max-width: 640px) {
    .card {
        max-width: 100%;
        padding: 40px 32px 36px;
    }
}

@media (max-width: 480px) {
    .card {
        padding: 36px 24px 32px;
        border-radius: 20px;
    }
    .headline {
        font-size: 1.5rem;
    }
    .subtitle {
        font-size: 0.84rem;
    }
    .social-btn {
        width: 44px;
        height: 44px;
    }
    .social-btn svg {
        width: 18px;
        height: 18px;
    }
}