* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    min-height: 100vh; 
    background: #020617;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center; 
    overflow-x: hidden;
    position: relative;
    padding: 20px;
}

.background {
    position: fixed; 
    inset: 0;
    background:
        radial-gradient(circle at top left, #2563eb40, transparent 30%),
        radial-gradient(circle at bottom right, #7c3aed40, transparent 30%),
        linear-gradient(135deg, #020617, #0f172a);
    z-index: 0;
}

.background::before,
.background::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 8s infinite ease-in-out alternate;
}

.background::before {
    background: #2563eb;
    top: -50px;
    left: -50px;
}

.background::after {
    background: #7c3aed;
    bottom: -50px;
    right: -50px;
    animation-delay: 2s;
}

@keyframes float {
    from { transform: translateY(0px) translateX(0px); }
    to { transform: translateY(40px) translateX(20px); }
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 25px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    font-size: 14px;
    margin-bottom: 25px;
}

h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(to bottom, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: #94a3b8;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 90%;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 500px;
}

.socials a {
    text-decoration: none;
    color: white;
    padding: 14px 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
    flex: 1 1 calc(30% - 12px); 
    min-width: 120px;
    text-align: center;
}

.socials a:hover {
    background: white;
    color: #020617;
    transform: translateY(-3px);
}



@media (max-width: 768px) {
    .container {
        padding: 40px 30px;
    }
    h1 { font-size: 48px; }
    p { font-size: 16px; }
}

@media (max-width: 480px) {
    body {
        align-items: center;
        padding: 40px 20px;
    }
    
    .container {
        margin-top: auto;
        margin-bottom: auto;
        padding: 40px 20px;
        width: 100%;
    }

    h1 {
        font-size: 38px;
    }

    .socials {
        flex-direction: column;
        gap: 10px;
    }

    .socials a {
        width: 100%;
        flex: 1 1 100%;
        padding: 16px;
    }

    .logo {
        width: 100px;
    }
}