@font-face {
    font-family: 'Vazirmatn';
    src: url('../fonts/Vazirmatn-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('../fonts/Vazirmatn-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('../fonts/Vazirmatn-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('../fonts/Vazirmatn-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {

    --bg1: #06121f;
    --bg2: #0b2038;

    --card: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.15);

    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.7);

    --accent: #57d6ff;

}

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

body {

    font-family: 'Vazirmatn', sans-serif;

    background:
        radial-gradient(circle at top, #12365c 0%, transparent 40%),
        linear-gradient(160deg, var(--bg2), var(--bg1));

    color: var(--text);

    min-height: 100svh;
    

    background-attachment: fixed; /* مهم */

}

/* صفحه */

.page {

    max-width: 520px;

    margin: auto;

    padding: 60px 18px;

}

/* کارت */

.card {

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 26px;

    padding: 32px 22px;

    backdrop-filter: blur(20px);

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);

    text-align: center;

}

/* لوگو */

.logo-wrap {
    display: inline-block;
    padding: 2px; /* این همون 2px قاب دور عکسه */
    border-radius: 24px; /* باید کمی بیشتر از عکس باشه */
    background: rgba(87, 214, 255, 0.35); /* رنگ قاب */
}

.logo {
    display: block;
    width: 140px; /* اندازه لوگو */
    border-radius: 22px; /* کمی کمتر از wrap */
}

/* عنوان */

.title {

    margin-top: 15px;

    font-size: 24px;

    font-weight: 800;

}

.subtitle {

    margin-top: 6px;

    font-size: 14px;

    color: var(--muted);

}

/* لینک ها */

.action-list {

    margin-top: 26px;

    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-bottom: 5px;

}

/* دکمه */

.action-btn {

    display: flex;

    align-items: center;

    gap: 14px;

    justify-content: center;

    padding: 16px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.08);

    text-decoration: none;

    color: white;

    transition: 0.25s;

}

.action-btn:hover {

    transform: translateY(-3px);

    background: rgba(87, 214, 255, 0.18);

    border-color: rgba(87, 214, 255, 0.4);

}

/* آیکون */

.icon {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: rgba(87, 214, 255, 0.25);

    font-size: 18px;

}

/* متن */

.text {

    display: flex;

    flex-direction: column;

    line-height: 1.4;

}

.text small {

    font-size: 12px;

    color: var(--muted);

}

/* باکس آدرس */

.address-box {

    margin-top: 15px;

    padding: 18px;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.1);

    font-size: 14px;

    line-height: 2;

    text-align: center;

}

/* پس زمینه متحرک */

.bg-orb {

    position: fixed;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    filter: blur(40px);

    opacity: .35;

    animation: float 14s ease-in-out infinite;

}

.orb-1 {

    background: #57d6ff;

    top: -100px;
    right: -100px;

}

.orb-2 {

    background: #3affc9;

    bottom: -120px;
    left: -120px;

}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-30px)
    }

}

/* موبایل */

@media(max-width:480px) {

    .page {
        padding-top: 40px;
    }

    .title {
        font-size: 20px;
    }

}