﻿@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;600;700;800;900&display=swap');

* {
    box-sizing: border-box
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Vazirmatn",Tahoma,sans-serif;
    background: #0a1a3a; /* آبی پررنگ */
    color: #fff;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

    body::before {
        content: "";
        position: fixed;
        width: 420px;
        height: 420px;
        background: #ff8c00; /* نارنجی */
        border-radius: 50%;
        top: -260px;
        left: -180px;
        filter: blur(90px);
        opacity: .20;
        pointer-events: none;
    }

    body::after {
        content: "";
        position: fixed;
        width: 350px;
        height: 350px;
        background: #ff8c00; /* نارنجی */
        border-radius: 50%;
        bottom: -250px;
        right: -180px;
        filter: blur(100px);
        opacity: .14;
        pointer-events: none;
    }

.page {
    width: 100%;
    max-width: 500px;
    min-height: 100vh;
    padding: 35px 20px 30px;
    position: relative;
}

/* Logo */
.logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background: #ff8c00; /* نارنجی */
    border: 5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff; /* متن سفید */
    font-size: 25px;
    font-weight: 900;
    box-shadow: 0 0 0 8px rgba(255,140,0,.12), 0 15px 45px rgba(0,0,0,.45);
}

/* Brand */
.brand {
    text-align: center;
}

    .brand h1 {
        margin: 0;
        font-size: 27px;
        font-weight: 900;
        letter-spacing: -.5px;
        color: #fff;
    }

    .brand .handle {
        margin-top: 5px;
        color: #a0b8d0; /* آبی روشن برای خوانایی */
        font-size: 13px;
    }

/* Links */
.links {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.link {
    min-height: 67px;
    background: #122b52; /* آبی تیره‌تر */
    border: 1px solid #1e3a6e;
    border-radius: 19px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    transition: .22s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
}

    .link::before {
        content: "";
        position: absolute;
        width: 4px;
        height: 100%;
        right: 0;
        top: 0;
        background: #ff8c00; /* نارنجی */
        transform: scaleY(0);
        transition: .22s;
    }

    .link:hover {
        transform: translateY(-3px);
        border-color: #ff8c00;
        background: #1a3a6e;
        box-shadow: 0 12px 30px rgba(0,0,0,.28);
    }

        .link:hover::before {
            transform: scaleY(1);
        }

.icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: #ff8c00; /* نارنجی */
    color: #fff; /* متن سفید */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    font-weight: 900;
    flex: none;
}

.link-content {
    flex: 1;
    text-align: right;
    padding: 0 13px;
}

.link-title {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.link-sub {
    display: block;
    color: #8aa8c8; /* آبی روشن */
    font-size: 10px;
    margin-top: 3px;
    direction: ltr;
    text-align: right;
}

.arrow {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: #1e3a6e;
    color: #ff8c00; /* نارنجی */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

/* Special orange link */
.link.primary {
    background: #ff8c00; /* نارنجی */
    color: #fff;
    border-color: #ff8c00;
}

    .link.primary .link-title {
        color: #fff;
    }

    .link.primary .link-sub {
        color: #fff3e0; /* نارنجی خیلی روشن */
    }

    .link.primary .icon {
        background: #fff;
        color: #ff8c00;
    }

    .link.primary .arrow {
        background: #fff;
        color: #ff8c00;
    }

/* Divider */
.divider {
    height: 1px;
    background: #1e3a6e;
    margin: 29px 0 22px;
}

/* Footer */
.footer {
    text-align: center;
    color: #7a9aba;
    font-size: 10px;
    line-height: 2;
}

    .footer span {
        color: #ff8c00; /* نارنجی */
    }

/* Mobile */
@media(max-width:380px) {
    .page {
        padding: 27px 15px;
    }

    .logo {
        width: 105px;
        height: 105px;
        font-size: 21px;
    }

    .brand h1 {
        font-size: 23px;
    }

    .link {
        min-height: 62px;
    }

    .icon {
        width: 46px;
        height: 46px;
    }
}
