/* ViceCity Style.css - Professional Edition */
:root {
    --bg: #050208;
    --surface: rgba(255,255,255,.07);
    --surface-2: rgba(255,255,255,.04);
    --border: rgba(255,255,255,.12);
    --text: #fff;
    --muted: #d4d4d4;
    --purple: #8b3dff;
    --pink: #ff4ec7;
    --radius: 30px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: #050208;
    color: var(--text);
    font-family: 'Space Grotesk', Arial, sans-serif;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: -20%;
    background:
        radial-gradient(circle at 20% 30%, rgba(139,61,255,.24), transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255,78,199,.20), transparent 35%),
        radial-gradient(circle at 50% 80%, rgba(95,0,255,.16), transparent 45%);
    filter: blur(50px);
    animation: aurora 18s ease-in-out infinite alternate;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(rgba(255,255,255,.02), transparent);
    z-index: -1;
}

@keyframes aurora {
    0% { transform: translate(-5%, -3%) scale(1); }
    50% { transform: translate(5%, 4%) scale(1.15); }
    100% { transform: translate(-3%, 5%) scale(1); }
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, 90%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    border-radius: 999px;
    background: var(--surface-2);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0,0,0,.35), inset 0 1px rgba(255,255,255,.12);
    z-index: 1000;
}

.logo { font-size: 28px; font-weight: 700; letter-spacing: 2px; }
.navbar ul { display: flex; gap: 30px; list-style: none; }
.navbar a { color: var(--text); text-decoration: none; transition: .3s; }
.navbar a:hover { color: var(--pink); text-shadow: 0 0 18px var(--pink); }

/* ===== Hero ===== */
.hero {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 140px 20px 60px;
}

.glass {
    position: relative;
    overflow: hidden;
    width: min(680px, 100%);
    padding: 60px;
    text-align: center;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    box-shadow: inset 0 1px rgba(255,255,255,.2), 0 20px 60px rgba(0,0,0,.4), 0 0 80px rgba(139,61,255,.18);
    transition: .45s;
}

.glass::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -60%;
    width: 60%;
    height: 300px;
    transform: rotate(-20deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
    transition: .9s;
}

.glass:hover::before { left: 130%; }
.glass:hover {
    transform: translateY(-8px);
    box-shadow: inset 0 1px rgba(255,255,255,.25), 0 30px 70px rgba(0,0,0,.45), 0 0 120px rgba(255,78,199,.22);
}

.glass h1 { font-size: 72px; margin-bottom: 14px; }
.glass p { color: var(--muted); margin-bottom: 35px; font-size: 20px; }

.badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    font-size: 14px;
    margin-bottom: 25px;
}

.glass h1 { font-size: 90px; font-weight: 700; margin-bottom: 15px; }
.glass span { color: var(--pink); }

.cursor-glow {
    position: fixed;
    width: 450px;
    height: 450px;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(170,70,255,.22) 0%, rgba(255,70,180,.12) 35%, transparent 75%);
    transform: translate(-50%, -50%);
    filter: blur(30px);
    z-index: -1;
    transition: width .35s ease, height .35s ease;
}

.hero-card { max-width: 620px; display: flex; flex-direction: column; align-items: center; }
.hero-logo {
    width: 140px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 30px rgba(160,60,255,.5)) drop-shadow(0 0 60px rgba(255,70,180,.35));
    transition: .5s;
}
.hero-logo:hover { transform: scale(1.05) rotate(-2deg); }

.scroll {
    margin-top: 45px;
    color: #ffffff88;
    animation: scrollFloat 2s infinite;
    font-size: 15px;
    letter-spacing: 2px;
}

@keyframes scrollFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(10px); }
    100% { transform: translateY(0); }
}

/* ===== Store Link ===== */
.store-link { margin-top: 30px; width: 100%; }
.store-link a {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    transition: .4s;
    padding: 12px 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(139,61,255,0.2), rgba(255,78,199,0.2));
    border: 2px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    letter-spacing: 1px;
}
.store-link a:hover {
    color: #ff4ec7;
    border-color: rgba(255,78,199,0.4);
    transform: translateX(-5px) scale(1.02);
    box-shadow: 0 0 50px rgba(255,78,199,0.15);
}
.store-link a i { transition: .4s; margin-right: 8px; font-size: 20px; }
.store-link a:hover i { transform: translateX(-8px); }

/* ===== Rules ===== */
.rules-section { min-height: 100vh; padding: 120px 8%; direction: rtl; font-family: "Vazirmatn", sans-serif; }
.section-title { text-align: center; font-size: 58px; margin-bottom: 70px; color: white; }
.section-subtitle { text-align: center; color: #bdbdbd; max-width: 700px; margin: 0 auto 60px; line-height: 2; font-size: 17px; }

.rules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.rule-card {
    padding: 35px;
    border-radius: 28px;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.10);
    transition: .35s;
}
.rule-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,.25);
    box-shadow: 0 15px 45px rgba(0,0,0,.35), 0 0 40px rgba(255,70,180,.12);
}
.rule-card i {
    font-size: 34px;
    margin-bottom: 22px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.rule-card h3 { margin-bottom: 18px; font-size: 26px; color: white; }
.rule-card p { color: #d8d8d8; line-height: 2; font-size: 16px; }

/* ===== Store ===== */
.store-section { min-height: 100vh; padding: 140px 8%; direction: rtl; font-family: "Vazirmatn", sans-serif; }

/* هدر فروشگاه - جدید */
.store-header {
    text-align: center;
    margin-bottom: 45px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.store-header .store-description {
    font-size: 24px;
    font-weight: 500;
    color: #e0e0e0;
    margin-bottom: 8px;
    line-height: 1.8;
    font-family: 'Vazirmatn', sans-serif;
    letter-spacing: 0.5px;
}

.store-header .store-description strong {
    background: linear-gradient(135deg, #8b3dff, #ff4ec7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.store-header .store-sub-description {
    font-size: 17px;
    color: #888;
    line-height: 2;
    margin-top: 0;
    font-family: 'Vazirmatn', sans-serif;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.billing-switch {
    width: max-content;
    margin: 45px auto 70px;
    display: flex;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
}
.billing-btn {
    border: none;
    cursor: pointer;
    color: white;
    background: transparent;
    padding: 12px 28px;
    border-radius: 999px;
    font-family: inherit;
    transition: .3s;
}
.billing-btn.active {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    box-shadow: 0 0 25px rgba(255,70,180,.35);
}

.store-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px; }
.plan-card {
    position: relative;
    padding: 40px;
    border-radius: 28px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(16px);
    transition: .35s;
    overflow: hidden;
}
.plan-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,.25);
    box-shadow: 0 20px 60px rgba(0,0,0,.35), 0 0 45px rgba(255,78,199,.15);
}
.plan-card h3 { font-size: 32px; margin-bottom: 25px; color: white; }
.price { margin-bottom: 30px; }
.price span { display: block; font-size: 48px; font-weight: 700; color: white; }
.price small { color: #bdbdbd; font-size: 16px; }
.plan-card ul { list-style: none; margin: 0; padding: 0; }
.plan-card li { padding: 12px 0; color: #dddddd; border-bottom: 1px solid rgba(255,255,255,.06); }
.plan-card li::before { content: "✓"; color: var(--pink); font-weight: bold; margin-left: 10px; }
.buy-btn {
    width: 100%;
    margin-top: 35px;
    padding: 16px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    color: white;
    font-size: 17px;
    font-family: inherit;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    transition: .3s;
}
.buy-btn:hover { transform: scale(1.03); box-shadow: 0 0 30px rgba(255,78,199,.4); }
.plan-card.popular { border: 1px solid rgba(255,78,199,.45); }
.plan-card.popular::after {
    content: "محبوب‌ترین";
    position: absolute;
    top: 18px;
    left: -35px;
    transform: rotate(-45deg);
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 700;
}

/* ===== Contact ===== */
.contact-section { min-height: 100vh; padding: 140px 8%; direction: rtl; font-family: "Vazirmatn", sans-serif; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 70px; }
.contact-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(16px);
    border-radius: 28px;
    padding: 45px;
    text-align: center;
    transition: .35s;
}
.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,.35), 0 0 40px rgba(255,78,199,.18);
}
.contact-card i {
    font-size: 46px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.contact-card h3 { font-size: 30px; margin-bottom: 12px; }
.contact-card p { color: #bdbdbd; margin-bottom: 30px; line-height: 1.8; }
.contact-card a, .contact-card button {
    width: 100%;
    display: block;
    padding: 16px;
    border: none;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 17px;
    color: white;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    transition: .3s;
}
.contact-card a:hover, .contact-card button:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(255,78,199,.4);
}

/* ===== FAQ ===== */
.faq-section { padding: 120px 8%; direction: rtl; font-family: "Vazirmatn", sans-serif; }
.faq { max-width: 900px; margin: auto; display: flex; flex-direction: column; gap: 18px; }
.faq-item {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    overflow: hidden;
    transition: .35s;
}
.faq-item:hover { border-color: rgba(255,255,255,.18); }
.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: white;
    transition: .3s;
    user-select: none;
}
.faq-question:hover { color: #ff4ec7; }
.faq-question span {
    font-size: 28px;
    color: #ff4ec7;
    transition: .4s;
    font-weight: 300;
    flex-shrink: 0;
    margin-right: 15px;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    color: #cfcfcf;
    line-height: 2;
    transition: .4s ease;
    font-size: 15px;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 30px 25px; }
.faq-item.active .faq-question span { transform: rotate(45deg); color: #ff4ec7; }

/* ==========================
        ABOUT SECTION
========================== */
.about-section {
    min-height: 100vh;
    padding: 140px 8% 80px;
    direction: rtl;
    font-family: "Vazirmatn", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

/* ===== Badge ===== */
.about-badge {
    display: inline-block;
    margin-bottom: 30px;
    padding: 8px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(139,61,255,0.15), rgba(255,78,199,0.15));
    border: 1px solid rgba(255,78,199,0.2);
    backdrop-filter: blur(10px);
}

.about-badge span {
    color: #ff4ec7;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
}

/* ===== Title ===== */
.about-title {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
    line-height: 1.2;
}

.about-title .highlight {
    background: linear-gradient(135deg, #8b3dff, #ff4ec7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-title .about-year {
    display: block;
    font-size: 22px;
    font-weight: 400;
    color: #888;
    margin-top: 5px;
    -webkit-text-fill-color: #888;
    letter-spacing: 2px;
}

/* ===== Content ===== */
.about-content {
    margin: 40px 0 50px;
    text-align: justify;
}

.about-content p {
    color: #d4d4d4;
    font-size: 18px;
    line-height: 2.2;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}

.about-content p strong {
    color: #ff4ec7;
    font-weight: 700;
}

/* ===== Slogan ===== */
.about-slogan {
    margin-top: 30px;
    padding: 30px 40px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(139,61,255,0.08), rgba(255,78,199,0.08));
    border: 1px solid rgba(255,78,199,0.15);
    backdrop-filter: blur(10px);
}

.about-slogan span:first-child {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: white;
    letter-spacing: 3px;
    font-family: 'Space Grotesk', sans-serif;
}

.about-slogan .slogan-translate {
    display: block;
    font-size: 18px;
    color: #888;
    margin-top: 8px;
    font-weight: 400;
    letter-spacing: 2px;
}

/* ===== Responsive About ===== */
@media (max-width: 768px) {
    .about-title {
        font-size: 38px;
    }
    
    .about-title .about-year {
        font-size: 18px;
    }
    
    .about-content p {
        font-size: 16px;
        line-height: 2;
    }
    
    .about-slogan span:first-child {
        font-size: 24px;
    }
    
    .about-slogan .slogan-translate {
        font-size: 16px;
    }
    
    .about-slogan {
        padding: 20px;
    }
}

@media (max-width: 500px) {
    .about-title {
        font-size: 28px;
    }
    
    .about-content p {
        font-size: 14px;
    }
}

/* ===== Modal - کوچک‌تر برای موبایل ===== */
.modal-content {
    max-width: 420px !important;
    padding: 25px 25px !important;
    border-radius: 24px !important;
}

.modal-content h3 {
    font-size: 20px !important;
}

.modal-content .modal-body .input-custom {
    padding: 10px 14px !important;
    font-size: 14px !important;
}

.modal-content .input-group-custom {
    margin-bottom: 12px !important;
}

.modal-content .input-group-custom label {
    font-size: 13px !important;
}

.modal-content .btn-submit-order,
.modal-content .btn-ts {
    padding: 12px !important;
    font-size: 15px !important;
}

.modal-content .telegram-box {
    padding: 10px 14px !important;
}

.modal-content .copy-btn-custom {
    padding: 4px 12px !important;
    font-size: 12px !important;
}

.modal-content .error-text {
    font-size: 11px !important;
    padding: 6px 10px !important;
}

.modal-content .form-error {
    padding: 10px 14px !important;
    font-size: 13px !important;
}

/* ===== Mobile Modal ===== */
@media (max-width: 480px) {
    .modal-content {
        padding: 20px 16px !important;
        max-width: 100% !important;
        border-radius: 20px !important;
    }
    
    .modal-content h3 {
        font-size: 18px !important;
    }
    
    .modal-content .modal-body .input-custom {
        padding: 8px 12px !important;
        font-size: 13px !important;
    }
    
    .modal-content .btn-submit-order,
    .modal-content .btn-ts {
        padding: 10px !important;
        font-size: 14px !important;
    }
    
    .modal-content .telegram-box {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ===== Error Styles ===== */
.error-text {
    color: #ff4444;
    font-size: 12px;
    margin-top: 6px;
    display: none;
    text-align: right;
    padding: 8px 12px;
    background: rgba(255,68,68,0.08);
    border-radius: 8px;
    border: 1px solid rgba(255,68,68,0.15);
}
.error-text.show { display: block; }
.error-text i { margin-left: 6px; }

.input-custom.error {
    border-color: #ff4444 !important;
    box-shadow: 0 0 25px rgba(255,68,68,0.1) !important;
    background: rgba(255,68,68,0.05) !important;
}
.input-custom.success { border-color: rgba(76,175,80,0.5) !important; }

.form-error {
    background: rgba(255,68,68,0.08);
    border: 1px solid rgba(255,68,68,0.2);
    border-radius: 12px;
    padding: 12px 16px;
    margin: 10px 0;
    text-align: right;
    color: #ff4444;
    font-size: 14px;
    display: none;
}
.form-error.show { display: flex; align-items: center; gap: 10px; }
.form-error i { font-size: 18px; flex-shrink: 0; }

/* ===== Toast ===== */
.toast-custom {
    position: fixed;
    bottom: 30px;
    right: 30px;
    color: white;
    padding: 16px 24px;
    border-radius: 14px;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 15px;
    z-index: 999999;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    animation: slideInRight 0.4s ease;
    max-width: 400px;
    direction: rtl;
    display: flex;
    align-items: center;
}
@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ===== Loader ===== */
#loader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 50% 35%, #170b2c 0%, #0c0616 45%, #09040f 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    overflow: hidden;
    transition: opacity .6s ease, filter .6s ease, visibility .6s ease;
}
#loader.loader-hide {
    opacity: 0;
    filter: blur(6px);
    pointer-events: none;
}
.loader-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(45px);
    opacity: .35;
    animation: loaderOrbDrift 9s ease-in-out infinite;
    pointer-events: none;
}
.loader-orb-1 {
    width: 380px; height: 380px;
    top: -120px; left: -80px;
    background: var(--purple);
}
.loader-orb-2 {
    width: 420px; height: 420px;
    bottom: -140px; right: -100px;
    background: var(--pink);
    animation-delay: -4s;
    animation-duration: 11s;
}
@keyframes loaderOrbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -25px) scale(1.08); }
}
.loader-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 70%);
    mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 70%);
    pointer-events: none;
}
.loader-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: loaderInnerIn .8s cubic-bezier(.22,1,.36,1);
}
@keyframes loaderInnerIn {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}
.loader-ring-wrap {
    position: relative;
    width: 148px;
    height: 148px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader-ring {
    position: absolute;
    inset: 0;
    width: 148px;
    height: 148px;
    transform: rotate(-90deg);
}
.loader-ring-track {
    fill: none;
    stroke: rgba(255,255,255,0.07);
    stroke-width: 2.5;
}
.loader-ring-progress {
    fill: none;
    stroke: url(#loaderGrad);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 389.6;
    stroke-dashoffset: 389.6;
    transition: stroke-dashoffset .35s cubic-bezier(.22,1,.36,1);
    filter: drop-shadow(0 0 8px rgba(255,78,199,.55));
}
.loader-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    animation: loaderPulse 2.4s ease-in-out infinite;
    filter: drop-shadow(0 0 18px rgba(139,61,255,.6)) drop-shadow(0 0 30px rgba(255,78,199,.4));
}
@keyframes loaderPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
.loader-title {
    margin-top: 26px;
    color: white;
    font-family: 'Space Grotesk', 'Vazirmatn', sans-serif;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 4px;
}
.loader-title span { color: var(--pink); }
.loader-percent-wrap {
    margin-top: 18px;
    display: flex;
    align-items: flex-start;
    gap: 2px;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.loader-percent { font-size: 46px; font-weight: 700; }
.loader-percent-sign { font-size: 20px; font-weight: 600; margin-top: 6px; }
.loader-status {
    margin-top: 10px;
    max-width: 320px;
    padding: 0 20px;
    color: rgba(255,255,255,0.4);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .2px;
    min-height: 18px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    direction: rtl;
    transition: opacity .2s ease;
}
@keyframes loaderFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

@media (max-width: 480px) {
    .loader-ring-wrap, .loader-ring { width: 118px; height: 118px; }
    .loader-logo { width: 48px; height: 48px; }
    .loader-title { font-size: 20px; letter-spacing: 3px; }
    .loader-percent { font-size: 36px; }
}


/* ===== Scroll Progress ===== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    z-index: 99999;
    background: linear-gradient(90deg, var(--purple), var(--pink));
    box-shadow: 0 0 15px rgba(139,61,255,.7), 0 0 25px rgba(255,78,199,.5);
}

/* ===== Footer ===== */
.footer {
    margin: 100px auto 30px;
    width: min(1300px, 94%);
    padding: 70px 8% 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface-2);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 60px rgba(0,0,0,.4), inset 0 1px rgba(255,255,255,.08);
}
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; }
.footer-logo img { width: 75px; margin-bottom: 15px; }
.footer-logo h2 { font-size: 38px; color: white; }
.footer-logo h2 span { color: #ff4ec7; }
.footer-logo p { margin-top: 12px; color: #aaa; font-size: 15px; }
.footer h3 { margin-bottom: 18px; color: white; font-size: 18px; }
.footer a { display: block; color: #bdbdbd; text-decoration: none; margin: 10px 0; transition: .3s; font-size: 14px; }
.footer a:hover { color: white; transform: translateX(6px); }
.footer p { color: #888; font-size: 14px; margin: 15px 0 5px; }
.footer-bottom { max-width: 1200px; margin: 55px auto 0; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.08); text-align: center; color: #777; font-size: 14px; }

@media (max-width: 900px) {
    .footer { width: 92%; padding: 50px 6% 25px; border-radius: 24px; }
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer a:hover { transform: none; }
    .footer-logo img { margin: 0 auto 15px; }
}

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(80px); filter: blur(12px); transition: opacity .8s ease, transform .8s ease, filter .8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); filter: blur(0); }

.rules-grid .rule-card { transition-delay: calc(var(--i) * .12s); }
.store-grid .plan-card { transition-delay: calc(var(--i) * .08s); }
.contact-grid .contact-card { transition-delay: calc(var(--i) * .1s); }

/* ===== 3D Tilt ===== */
.glass, .rule-card, .plan-card, .contact-card {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass:hover, .rule-card:hover, .plan-card:hover, .contact-card:hover {
    transform: translateY(-8px) perspective(800px) rotateX(2deg) rotateY(2deg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(255,78,199,0.1);
}

.glass::before, .rule-card::before, .plan-card::before, .contact-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}
.glass:hover::before, .rule-card:hover::before, .plan-card:hover::before, .contact-card:hover::before { opacity: 1; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .rule-card, .plan-card, .contact-card { transform: none !important; transition: transform 0.3s ease !important; }
    .rule-card:hover, .plan-card:hover, .contact-card:hover { transform: translateY(-5px) !important; }
}

@media (max-width: 600px) {
    .modal-content { padding: 25px 20px; border-radius: 20px; }
    .modal-content h3 { font-size: 20px; }
    .input-custom { padding: 12px 14px; font-size: 14px; }
    .btn-submit-order, .btn-ts { padding: 14px; font-size: 15px; }
    .faq-question { font-size: 16px; padding: 20px; }
    .faq-answer { font-size: 14px; padding: 0 20px; }
    .faq-item.active .faq-answer { padding: 0 20px 20px; }
    .store-link a { font-size: 18px; padding: 10px 24px; }
    .login-box { padding: 30px 20px; border-radius: 20px; }
    .login-box h1 { font-size: 28px; }
}

/* ========================================
   BOTS SECTION (ربات‌های موزیک)
   ======================================== */
.bots-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 70px 0 20px;
    width: 100%;
}

.bots-divider::before,
.bots-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,78,199,0.3), transparent);
}

.bots-divider span {
    color: #ff4ec7;
    font-size: 22px;
    font-weight: 700;
    white-space: nowrap;
    padding: 0 20px;
    letter-spacing: 2px;
}

.bots-subtitle {
    text-align: center;
    color: #bdbdbd;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 2;
    font-size: 16px;
}

.bots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 10px;
}

.bot-card {
    position: relative;
    padding: 40px 35px;
    border-radius: 28px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(16px);
    text-align: center;
    transition: .35s;
    overflow: hidden;
}

.bot-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,.25);
    box-shadow: 0 20px 60px rgba(0,0,0,.35), 0 0 45px rgba(255,78,199,.15);
}

.bot-card.popular {
    border: 1px solid rgba(255,78,199,.45);
}

.bot-card.popular::after {
    content: "محبوب‌ترین";
    position: absolute;
    top: 18px;
    left: -35px;
    transform: rotate(-45deg);
    background: linear-gradient(135deg, #8b3dff, #ff4ec7);
    color: white;
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 700;
}

.bot-card .bot-icon {
    font-size: 50px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #8b3dff, #ff4ec7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bot-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: white;
}

.bot-card .price span {
    font-size: 48px;
    font-weight: 700;
    color: white;
    display: block;
}

.bot-card .price small {
    color: #bdbdbd;
    font-size: 16px;
}

.bot-card ul {
    list-style: none;
    margin: 20px 0 30px;
    padding: 0;
}

.bot-card ul li {
    padding: 10px 0;
    color: #dddddd;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.bot-card ul li::before {
    content: "♪";
    color: #ff4ec7;
    font-weight: bold;
    margin-left: 10px;
}

.bot-card .buy-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    color: white;
    font-size: 17px;
    font-family: inherit;
    background: linear-gradient(135deg, #8b3dff, #ff4ec7);
    transition: .3s;
}

.bot-card .buy-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(255,78,199,.4);
}

/* ========================================
   DOMAIN SECTION (دامنه)
   ======================================== */
.domain-section {
    max-width: 700px;
    margin: 20px auto 0;
    padding: 30px;
    background: rgba(255,255,255,.04);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.08);
}

.domain-search {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.domain-input {
    flex: 2;
    min-width: 180px;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
    color: white;
    outline: none;
    font-size: 16px;
    font-family: inherit;
    transition: .3s;
}

.domain-input:focus {
    border-color: #ff4ec7;
    box-shadow: 0 0 25px rgba(255,78,199,.08);
}

.domain-input::placeholder {
    color: #555;
}

.domain-extension {
    padding: 14px 18px;
    background: rgba(255,78,199,.15);
    border-radius: 14px;
    color: #ff4ec7;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid rgba(255,78,199,.2);
    min-width: 50px;
    text-align: center;
}

.domain-check-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #8b3dff, #ff4ec7);
    color: white;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.domain-check-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255,78,199,.3);
}

.domain-result {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255,255,255,.05);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.08);
    text-align: center;
}

.domain-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    margin-bottom: 10px;
}

.domain-price {
    margin: 15px 0;
}

.domain-price span {
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.domain-price small {
    color: #bdbdbd;
    font-size: 16px;
}

.domain-result .buy-btn {
    margin-top: 10px;
}

/* ========================================
   REFRESH BUTTON
   ======================================== */
.refresh-btn {
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: .3s;
    font-size: 16px;
}

.refresh-btn:hover {
    background: rgba(255,78,199,0.15);
    border-color: #ff4ec7;
}

.refresh-btn.spinning i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   LOGS LINK
   ======================================== */
.logs-link {
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: .3s;
    font-size: 14px;
    font-family: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.logs-link:hover {
    background: rgba(255,78,199,0.15);
    border-color: #ff4ec7;
}

/* ========================================
   DETAIL BUTTON & MODAL
   ======================================== */
.btn-detail {
    padding: 5px 8px;
    border: none;
    border-radius: 8px;
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 28px;
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.btn-detail:hover {
    background: rgba(33, 150, 243, 0.4);
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(33, 150, 243, 0.3);
    border-color: #2196f3;
}

.btn-detail:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.detail-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.detail-modal-overlay.show {
    display: flex;
}

.detail-modal {
    background: rgba(20, 10, 35, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    animation: modalFadeIn 0.3s ease;
    display: flex;
    flex-direction: column;
}

.detail-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.detail-modal-header h3 {
    font-size: 22px;
    color: white;
}

.detail-modal-header h3 i {
    margin-left: 10px;
}

.detail-close {
    background: transparent;
    border: none;
    color: #888;
    font-size: 28px;
    cursor: pointer;
    transition: 0.3s;
    padding: 0 8px;
}

.detail-close:hover {
    color: #ff4ec7;
    transform: rotate(90deg);
}

.detail-modal-body {
    overflow-y: auto;
    flex: 1;
    padding-right: 5px;
}

.detail-modal-body::-webkit-scrollbar {
    width: 4px;
}

.detail-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.detail-modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8b3dff, #ff4ec7);
    border-radius: 10px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 20px;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item .label {
    color: #888;
    font-size: 14px;
    min-width: 120px;
}

.detail-item .value {
    color: white;
    font-size: 14px;
    text-align: left;
    word-break: break-word;
    flex: 1;
}

.detail-item .value strong {
    color: #ff4ec7;
}

.detail-item .value .status-badge {
    font-size: 12px;
}

.detail-loading {
    text-align: center;
    padding: 40px;
    color: #888;
}

.detail-loading i {
    font-size: 30px;
    animation: spin 1s linear infinite;
}

@media (max-width: 500px) {
    .detail-modal {
        padding: 20px;
    }
    .detail-item {
        flex-direction: column;
        gap: 5px;
    }
    .detail-item .label {
        min-width: auto;
    }
    .detail-item .value {
        text-align: right;
    }
}
/* ==========================
        ABOUT SECTION
========================== */
.about-section {
    min-height: 100vh;
    padding: 140px 8% 80px;
    direction: rtl;
    font-family: "Vazirmatn", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* ===== About Card (پنل اصلی) ===== */
.about-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    padding: 50px 60px;
    backdrop-filter: blur(16px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: .4s;
}

/* ===== بک‌گراند اختصاصی با افکت ===== */
.about-card::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -30%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(139,61,255,0.12), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.about-card::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(255,78,199,0.10), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.about-card:hover {
    border-color: rgba(255,78,199,0.15);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(139,61,255,0.05),
        inset 0 1px rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

/* ===== همه محتواها بالای بک‌گراند ===== */
.about-card-header,
.about-card-body {
    position: relative;
    z-index: 1;
}

/* ===== Badge ===== */
.about-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(139,61,255,0.2), rgba(255,78,199,0.2));
    border: 1px solid rgba(255,78,199,0.2);
    backdrop-filter: blur(10px);
    color: #ff4ec7;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

/* ===== Title ===== */
.about-title {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
    line-height: 1.2;
}

.about-title .highlight {
    background: linear-gradient(135deg, #8b3dff, #ff4ec7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-title .about-year {
    display: block;
    font-size: 22px;
    font-weight: 400;
    color: #888;
    margin-top: 5px;
    -webkit-text-fill-color: #888;
    letter-spacing: 2px;
}

/* ===== Content ===== */
.about-content {
    margin: 35px 0 45px;
    text-align: justify;
}

.about-content p {
    color: #d4d4d4;
    font-size: 17px;
    line-height: 2.2;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.about-content p strong {
    color: #ff4ec7;
    font-weight: 700;
}

/* ===== Slogan ===== */
.about-slogan {
    padding: 25px 35px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(139,61,255,0.10), rgba(255,78,199,0.10));
    border: 1px solid rgba(255,78,199,0.12);
    text-align: center;
}

.about-slogan span:first-child {
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: white;
    letter-spacing: 3px;
    font-family: 'Space Grotesk', sans-serif;
}

.about-slogan .slogan-translate {
    display: block;
    font-size: 17px;
    color: #888;
    margin-top: 8px;
    font-weight: 400;
    letter-spacing: 2px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .about-card {
        padding: 30px 25px;
        border-radius: 20px;
    }
    
    .about-title {
        font-size: 38px;
    }
    
    .about-title .about-year {
        font-size: 18px;
    }
    
    .about-content p {
        font-size: 16px;
        line-height: 2;
    }
    
    .about-slogan span:first-child {
        font-size: 24px;
    }
    
    .about-slogan .slogan-translate {
        font-size: 16px;
    }
    
    .about-slogan {
        padding: 20px;
    }
}

@media (max-width: 500px) {
    .about-card {
        padding: 20px 16px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-content p {
        font-size: 14px;
    }
}
/* ==========================
        ABOUT SECTION
========================== */
.about-section {
    min-height: 100vh;
    padding: 140px 8% 80px;
    direction: rtl;
    font-family: "Vazirmatn", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* ===== About Card (پنل اصلی با افکت 3D) ===== */
.about-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    padding: 50px 60px;
    backdrop-filter: blur(16px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.1s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.about-card::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -30%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(139,61,255,0.12), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.about-card::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(255,78,199,0.10), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ===== همه محتواها بالای بک‌گراند ===== */
.about-card-header,
.about-card-body {
    position: relative;
    z-index: 1;
}

/* ===== Badge ===== */
.about-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(139,61,255,0.2), rgba(255,78,199,0.2));
    border: 1px solid rgba(255,78,199,0.2);
    backdrop-filter: blur(10px);
    color: #ff4ec7;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

/* ===== Title ===== */
.about-title {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
    line-height: 1.2;
}

.about-title .highlight {
    background: linear-gradient(135deg, #8b3dff, #ff4ec7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-title .about-year {
    display: block;
    font-size: 22px;
    font-weight: 400;
    color: #888;
    margin-top: 5px;
    -webkit-text-fill-color: #888;
    letter-spacing: 2px;
}

/* ===== Content ===== */
.about-content {
    margin: 35px 0 45px;
    text-align: justify;
}

.about-content p {
    color: #d4d4d4;
    font-size: 17px;
    line-height: 2.2;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.about-content p strong {
    color: #ff4ec7;
    font-weight: 700;
}

/* ===== Slogan ===== */
.about-slogan {
    padding: 25px 35px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(139,61,255,0.10), rgba(255,78,199,0.10));
    border: 1px solid rgba(255,78,199,0.12);
    text-align: center;
}

.about-slogan span:first-child {
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: white;
    letter-spacing: 3px;
    font-family: 'Space Grotesk', sans-serif;
}

.about-slogan .slogan-translate {
    display: block;
    font-size: 17px;
    color: #888;
    margin-top: 8px;
    font-weight: 400;
    letter-spacing: 2px;
}

/* ========================================
   افکت 3D Tilt برای About Card
   ======================================== */
.about-card.glass-effect {
    transition: transform 0.1s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.about-card.glass-effect:hover {
    border-color: rgba(255,78,199,0.15);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(139,61,255,0.08),
        inset 0 1px rgba(255, 255, 255, 0.08);
}

/* ===== افکت نور هنگام هاور ===== */
.about-card.glass-effect::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(255, 255, 255, 0.06) 0%, 
                transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
    border-radius: inherit;
}

.about-card.glass-effect:hover::before {
    opacity: 1;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .about-card {
        padding: 30px 25px;
        border-radius: 20px;
    }
    
    .about-title {
        font-size: 38px;
    }
    
    .about-title .about-year {
        font-size: 18px;
    }
    
    .about-content p {
        font-size: 16px;
        line-height: 2;
    }
    
    .about-slogan span:first-child {
        font-size: 24px;
    }
    
    .about-slogan .slogan-translate {
        font-size: 16px;
    }
    
    .about-slogan {
        padding: 20px;
    }
}

@media (max-width: 500px) {
    .about-card {
        padding: 20px 16px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-content p {
        font-size: 14px;
    }
}
/* ===== Billing Switch ===== */
.billing-switch {
    width: max-content;
    margin: 45px auto 70px;
    display: flex;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
}

.billing-btn {
    border: none;
    cursor: pointer;
    color: white;
    background: transparent;
    padding: 12px 32px;
    border-radius: 999px;
    font-family: inherit;
    transition: .3s;
    font-weight: 500;
    opacity: 0.5;
    font-size: 16px;
}

.billing-btn.active {
    opacity: 1;
    background: linear-gradient(135deg, #8b3dff, #ff4ec7);
    box-shadow: 0 0 25px rgba(255,70,180,.35);
}

.billing-btn:hover {
    opacity: 0.8;
}
/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(12px);
    justify-content: center;
    align-items: center;
    direction: rtl;
    font-family: "Vazirmatn", sans-serif;
    padding: 20px;
}

.modal-content {
    background: linear-gradient(145deg, rgba(20,10,35,0.98), rgba(10,5,20,0.98));
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 30px 35px;
    max-width: 450px;
    width: 100%;
    color: white;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    animation: modalFadeIn 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modal-content .close-modal {
    position: absolute;
    top: 12px;
    left: 16px;
    font-size: 24px;
    cursor: pointer;
    color: #888;
    transition: 0.3s;
    z-index: 10;
    background: rgba(255,255,255,0.05);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-content .close-modal:hover {
    color: #ff4ec7;
    transform: rotate(90deg);
    background: rgba(255,78,199,0.1);
}

.modal-body {
    position: relative;
    z-index: 1;
}

.input-group-custom {
    margin-bottom: 14px;
    text-align: right;
}

.input-group-custom label {
    display: block;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 5px;
    font-weight: 500;
}

.input-group-custom label i {
    margin-left: 6px;
    color: #ff4ec7;
}

.input-custom {
    width: 100%;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: white;
    outline: none;
    font-size: 14px;
    transition: 0.3s;
    font-family: inherit;
}

.input-custom::placeholder {
    color: #555;
}

.input-custom:focus {
    border-color: #ff4ec7;
    box-shadow: 0 0 20px rgba(255,78,199,0.08);
}

.btn-submit-order {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #8b3dff, #ff4ec7);
    color: white;
    font-size: 15px;
    font-family: inherit;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
}

.btn-submit-order:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255,78,199,0.2);
}

.divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0 12px;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.08);
}

.divider span {
    color: #555;
    font-size: 12px;
    white-space: nowrap;
}

.btn-ts {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-ts:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(37,99,235,0.2);
}

.telegram-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 10px 14px;
    border-radius: 12px;
    margin-top: 8px;
}

.telegram-box span {
    color: #ccc;
    font-size: 13px;
}

.telegram-box span strong {
    color: #ff4ec7;
}

.copy-btn-custom {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 4px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 12px;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 6px;
}

.copy-btn-custom:hover {
    background: #ff4ec7;
    border-color: #ff4ec7;
}

.error-text {
    color: #ff4444;
    font-size: 11px;
    margin-top: 4px;
    display: none;
    text-align: right;
    padding: 6px 10px;
    background: rgba(255,68,68,0.08);
    border-radius: 8px;
    border: 1px solid rgba(255,68,68,0.12);
}

.error-text.show {
    display: block;
}

.form-error {
    background: rgba(255,68,68,0.08);
    border: 1px solid rgba(255,68,68,0.15);
    border-radius: 10px;
    padding: 10px 14px;
    margin: 8px 0;
    text-align: right;
    color: #ff4444;
    font-size: 13px;
    display: none;
}

.form-error.show {
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.92) translateY(15px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ===== Responsive Modal ===== */
@media (max-width: 480px) {
    .modal-content {
        padding: 20px 16px !important;
        max-width: 100% !important;
        border-radius: 18px !important;
    }
    
    .modal-content .close-modal {
        top: 10px;
        left: 12px;
        font-size: 20px;
        width: 32px;
        height: 32px;
    }
    
    .input-custom {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .btn-submit-order,
    .btn-ts {
        padding: 10px;
        font-size: 14px;
    }
    
    .telegram-box {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}
/* ===== لینک فایل‌ها در هدر ===== */
.files-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: .4s;
    padding: 10px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(139,61,255,0.15), rgba(255,78,199,0.15));
    border: 2px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    margin-top: 10px;
}

.files-link:hover {
    color: #ff4ec7;
    border-color: rgba(255,78,199,0.4);
    transform: translateX(-5px) scale(1.02);
    box-shadow: 0 0 40px rgba(255,78,199,0.1);
}

.store-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
/* ===== نوار ناوبری ===== */
.navbar {
    position: fixed;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, 90%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 10px 40px rgba(0,0,0,.35), inset 0 1px rgba(255,255,255,.12);
    z-index: 1000;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
}

/* ===== منوی اصلی ===== */
.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    transition: .3s;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b3dff, #ff4ec7);
    transition: width .3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a:hover {
    color: #ff4ec7;
}

/* ===== دکمه همبرگر ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 999px;
    transition: all .3s ease;
}

/* انیمیشن تبدیل به X */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== واکنش‌گرایی (Responsive) ===== */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 320px;
        height: 100vh;
        background: rgba(9, 4, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        transition: right .4s ease;
        border-left: 1px solid rgba(255,255,255,.08);
        padding: 40px 20px;
        margin: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li a {
        font-size: 20px;
        padding: 12px 0;
        display: block;
        width: 100%;
        text-align: center;
    }

    .nav-menu li a::after {
        bottom: 4px;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 14px 20px;
        border-radius: 30px;
        top: 12px;
        width: 95%;
    }

    .logo {
        font-size: 22px;
    }

    .nav-menu {
        width: 80%;
        max-width: 280px;
    }

    .nav-menu li a {
        font-size: 18px;
    }
}
/* ===== تنظیم موقعیت منوی کاربری ===== */
.navbar .user-menu {
    position: relative;
    display: inline-block;
}

.navbar .user-dropdown {
    display: none;
    position: absolute;
    top: 52px;
    left: 0;
    right: auto;
    background: rgba(20, 10, 35, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 10px 0;
    min-width: 210px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    font-family: 'Vazirmatn', sans-serif;
}

/* برای موبایل که منو سمت راست بیفته */
@media (max-width: 900px) {
    .navbar .user-dropdown {
        left: auto;
        right: 0;
        min-width: 170px;
        top: 48px;
    }
}
/* ===== ناوبری داخلی صفحات کاربری ===== */
.page-nav-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.page-nav-links .nav-link {
    padding: 8px 20px;
    border-radius: 999px;
    background: transparent;
    color: #888;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Vazirmatn', sans-serif;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
}

.page-nav-links .nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.page-nav-links .nav-link.active {
    color: white;
    background: linear-gradient(135deg, rgba(139, 61, 255, 0.2), rgba(255, 78, 199, 0.2));
    border-color: rgba(255, 78, 199, 0.3);
    font-weight: 600;
}

.page-nav-links .nav-link i {
    color: #ff4ec7;
    font-size: 14px;
}

@media (max-width: 600px) {
    .page-nav-links {
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
    }
    .page-nav-links .nav-link {
        justify-content: center;
        padding: 10px;
    }
}

/* ===== تب‌های پنل ادمین ===== */
.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 15px;
}
.admin-tab-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: #888;
    cursor: pointer;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 15px;
    transition: .3s;
}
.admin-tab-btn:hover {
    color: white;
    background: rgba(255,255,255,0.05);
}
.admin-tab-btn.active {
    color: white;
    background: linear-gradient(135deg, #8b3dff, #ff4ec7);
}
.admin-tab-content {
    display: none;
}
.admin-tab-content.active {
    display: block;
}

/* ===== لیست تیکت‌ها ===== */
.tickets-wrapper {
    padding: 5px;
}
.tickets-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ticket-item {
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: .3s;
    flex-wrap: wrap;
    gap: 10px;
}
.ticket-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,78,199,0.2);
}
.ticket-item .ticket-subject {
    color: white;
    font-weight: 600;
    font-size: 15px;
}
.ticket-item .ticket-user {
    color: #888;
    font-size: 13px;
}
.ticket-item .ticket-date {
    color: #555;
    font-size: 12px;
}
.priority-badge {
    display: inline-block;
    padding: 2px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
}
.priority-badge.high {
    background: rgba(244,67,54,0.2);
    color: #f44336;
}
.priority-badge.medium {
    background: rgba(255,193,7,0.2);
    color: #ffc107;
}
.priority-badge.low {
    background: rgba(76,175,80,0.2);
    color: #4caf50;
}
.status-badge.open {
    background: rgba(33,150,243,0.2);
    color: #2196f3;
}
.status-badge.in_progress {
    background: rgba(255,193,7,0.2);
    color: #ffc107;
}
.status-badge.closed {
    background: rgba(244,67,54,0.2);
    color: #f44336;
}

/* ===== مودال جزئیات تیکت ===== */
#ticketDetailModal .detail-modal {
    max-width: 700px;
}
#ticketReplyInput {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: white;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 14px;
    resize: vertical;
    outline: none;
    transition: .3s;
}
#ticketReplyInput:focus {
    border-color: #ff4ec7;
    box-shadow: 0 0 20px rgba(255,78,199,0.08);
}
/* ===== هدر ادمین ===== */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}
.admin-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.admin-header-left h2 { font-size: 26px; margin: 0; }
.admin-header-left h2 span { color: #ff4ec7; }
.admin-header-badge {
    padding: 4px 14px;
    border-radius: 999px;
    background: rgba(255,78,199,.15);
    color: #ff4ec7;
    font-size: 13px;
    font-weight: 500;
}
.admin-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.admin-header-right span { color: #aaa; font-size: 14px; }
.admin-header-right .logs-link {
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: .3s;
    font-size: 14px;
    font-family: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.admin-header-right .logs-link:hover {
    background: rgba(255,78,199,0.15);
    border-color: #ff4ec7;
}
.admin-header-right .logout-btn {
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: .3s;
    font-family: inherit;
}
.admin-header-right .logout-btn:hover {
    background: rgba(255,78,199,.2);
    border-color: #ff4ec7;
}

/* ===== تب‌ها ===== */
.admin-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(255,255,255,0.06);
    padding-bottom: 2px;
}
.admin-tab-btn {
    padding: 12px 28px;
    border: none;
    border-bottom: 3px solid transparent;
    background: transparent;
    color: #888;
    cursor: pointer;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 15px;
    font-weight: 500;
    transition: .3s;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 12px 12px 0 0;
}
.admin-tab-btn:hover {
    color: #ddd;
    background: rgba(255,255,255,0.03);
}
.admin-tab-btn.active {
    color: white;
    border-bottom-color: #ff4ec7;
    background: rgba(255,78,199,0.05);
}
.admin-tab-btn .tab-badge {
    background: #ff4ec7;
    color: white;
    font-size: 11px;
    padding: 1px 8px;
    border-radius: 999px;
    font-weight: 700;
}
.admin-tab-content { display: none; }
.admin-tab-content.active { display: block; }

/* ===== هدر جدول ===== */
.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}
.table-header h3 {
    color: #ccc;
    font-size: 16px;
    font-weight: 500;
}
.table-header h3 i { color: #ff4ec7; margin-left: 8px; }
.refresh-btn {
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: .3s;
    font-size: 14px;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.refresh-btn:hover {
    background: rgba(255,78,199,0.15);
    border-color: #ff4ec7;
}
.refresh-btn.spinning i { animation: spin 1s linear infinite; }

/* ===== کارت‌های تیکت ===== */
.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 16px;
}
.ticket-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 18px 20px;
    cursor: pointer;
    transition: .3s;
}
.ticket-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,78,199,0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.ticket-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}
.ticket-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.ticket-subject {
    color: white;
    font-weight: 600;
    font-size: 15px;
}
.ticket-card-body {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #888;
}
.ticket-card-body i { color: #ff4ec7; width: 16px; margin-left: 4px; }
.ticket-response-preview {
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255,78,199,0.06);
    font-size: 13px;
    color: #aaa;
    border-right: 2px solid #ff4ec7;
}
.ticket-response-preview i { color: #ff4ec7; margin-left: 6px; }
.ticket-response-preview .responded-by { color: #ff4ec7; font-weight: 500; }
.ticket-response-preview.no-response {
    border-right-color: #555;
    background: rgba(255,255,255,0.03);
}
.ticket-response-preview.no-response i { color: #555; }

/* ===== اولویت‌ها ===== */
.priority-badge {
    display: inline-block;
    padding: 2px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
}
.priority-high { background: rgba(244,67,54,0.2); color: #f44336; }
.priority-medium { background: rgba(255,193,7,0.2); color: #ffc107; }
.priority-low { background: rgba(76,175,80,0.2); color: #4caf50; }

.status-open { background: rgba(33,150,243,0.2); color: #2196f3; }
.status-progress { background: rgba(255,193,7,0.2); color: #ffc107; }
.status-closed { background: rgba(244,67,54,0.2); color: #f44336; }

/* ===== مودال جزئیات تیکت ===== */
.ticket-detail-modal { max-width: 720px; }
.ticket-detail-header {
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ticket-detail-title {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.ticket-detail-title h3 { color: white; font-size: 20px; margin: 0; }
.ticket-detail-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.ticket-detail-date { color: #888; font-size: 13px; }
.ticket-detail-user {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 12px;
}
.ticket-detail-user i { color: #ff4ec7; margin-left: 6px; }
.ticket-detail-description {
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 15px;
}
.ticket-detail-description strong { color: #aaa; display: block; margin-bottom: 6px; }
.ticket-detail-description p { color: #ddd; line-height: 1.8; margin: 0; white-space: pre-wrap; }
.ticket-detail-response {
    background: rgba(255,78,199,0.06);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 15px;
    border-right: 3px solid #ff4ec7;
}
.ticket-detail-response strong { color: #ff4ec7; display: block; margin-bottom: 6px; }
.ticket-detail-response p { color: #ddd; line-height: 1.8; margin: 0; white-space: pre-wrap; }
.ticket-detail-reply label { color: #ccc; font-size: 14px; display: block; margin-bottom: 8px; }
.ticket-detail-reply .input-custom {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: white;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 14px;
    resize: vertical;
    outline: none;
    transition: .3s;
}
.ticket-detail-reply .input-custom:focus {
    border-color: #ff4ec7;
    box-shadow: 0 0 20px rgba(255,78,199,0.08);
}
.ticket-detail-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.ticket-detail-actions .btn-submit-order {
    padding: 10px 24px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #8b3dff, #ff4ec7);
    color: white;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.ticket-detail-actions .btn-submit-order:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(255,78,199,0.3);
}
.ticket-detail-actions .btn-close-ticket {
    padding: 10px 24px;
    border: 1px solid rgba(244,67,54,0.3);
    border-radius: 999px;
    background: rgba(244,67,54,0.1);
    color: #f44336;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.ticket-detail-actions .btn-close-ticket:hover {
    background: rgba(244,67,54,0.2);
    transform: scale(1.02);
}
.ticket-detail-actions .btn-progress-ticket {
    padding: 10px 24px;
    border: 1px solid rgba(255,193,7,0.3);
    border-radius: 999px;
    background: rgba(255,193,7,0.1);
    color: #ffc107;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.ticket-detail-actions .btn-progress-ticket:hover {
    background: rgba(255,193,7,0.2);
    transform: scale(1.02);
}

/* ===== دکمه‌های عملیات ===== */
.btn-action {
    padding: 5px 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    min-height: 30px;
}
.btn-update {
    background: linear-gradient(135deg, #8b3dff, #ff4ec7);
    color: white;
}
.btn-update:hover { transform: scale(1.08); box-shadow: 0 0 20px rgba(255,78,199,0.3); }
.btn-view {
    background: rgba(33,150,243,0.2);
    color: #2196f3;
    border: 1px solid rgba(33,150,243,0.2);
}
.btn-view:hover { background: rgba(33,150,243,0.3); transform: scale(1.08); }
.btn-delete {
    background: rgba(244,67,54,0.2);
    color: #f44336;
    border: 1px solid rgba(244,67,54,0.2);
}
.btn-delete:hover { background: rgba(244,67,54,0.3); transform: scale(1.08); }

/* ===== No Data ===== */
.no-data {
    text-align: center;
    padding: 60px 20px;
    color: #555;
}
.no-data i {
    font-size: 48px;
    color: #333;
    display: block;
    margin-bottom: 15px;
}
.no-data p { color: #666; font-size: 15px; margin: 0; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .admin-header { flex-direction: column; text-align: center; }
    .admin-header-left { flex-direction: column; }
    .admin-header-right { justify-content: center; }
    .admin-tabs { justify-content: center; flex-wrap: wrap; }
    .admin-tab-btn { padding: 10px 16px; font-size: 13px; }
    .tickets-grid { grid-template-columns: 1fr; }
    .ticket-detail-actions { flex-direction: column; }
    .ticket-detail-actions button { width: 100%; justify-content: center; }
    .status-actions { flex-wrap: wrap; }
}
.btn-delete-ticket {
    background: rgba(244,67,54,0.2);
    border: 1px solid rgba(244,67,54,0.3);
    color: #f44336;
    padding: 10px 20px;
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    transition: .3s;
}
.btn-delete-ticket:hover {
    background: rgba(244,67,54,0.3);
    transform: scale(1.02);
}
.btn-delete-ticket {
    background: rgba(244,67,54,0.15);
    border: 1px solid rgba(244,67,54,0.3);
    color: #f44336;
    padding: 10px 22px;
    border-radius: 999px;
    cursor: pointer;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-delete-ticket:hover {
    background: rgba(244,67,54,0.3);
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(244,67,54,0.15);
}
/* ===== بخش اطلاعات سرور ===== */
.server-info-box {
    background: rgba(255,78,199,0.06);
    border-radius: 14px;
    padding: 16px 20px;
    margin-top: 12px;
    border-right: 3px solid #ff4ec7;
}
.server-info-box .server-title {
    color: #ff4ec7;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
}
.server-info-box .server-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.server-info-box .server-row:last-child {
    border-bottom: none;
}
.server-info-box .server-row .label {
    color: #888;
}
.server-info-box .server-row .value {
    color: white;
    direction: ltr;
    text-align: left;
    font-family: 'Space Grotesk', monospace;
}

/* ===== بخش اطلاعات دامنه ===== */
.domain-info-box {
    background: rgba(255,193,7,0.06);
    border-radius: 14px;
    padding: 16px 20px;
    margin-top: 12px;
    border-right: 3px solid #ffc107;
}
.domain-info-box .domain-title {
    color: #ffc107;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
}
.domain-info-box .domain-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.domain-info-box .domain-row:last-child {
    border-bottom: none;
}
.domain-info-box .domain-row .label {
    color: #888;
}
.domain-info-box .domain-row .value {
    color: white;
}

/* ===== فیلدهای ویرایش ===== */
.edit-field {
    width: 100%;
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: white;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 13px;
    outline: none;
    transition: .3s;
}
.edit-field:focus {
    border-color: #ff4ec7;
    box-shadow: 0 0 20px rgba(255,78,199,0.08);
}
.edit-field::placeholder {
    color: #555;
}

.btn-save {
    padding: 8px 22px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #8b3dff, #ff4ec7);
    color: white;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: .3s;
}
.btn-save:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(255,78,199,0.25);
}
/* ===== آیکون‌های لیست در کارت‌ها ===== */
/* ===== آیکون‌های استاتیک ===== */
.stat-card .label i {
    font-size: 14px;
    width: 20px;
    text-align: center;
}

/* ===== آیکون‌های وضعیت ===== */
.status-badge.pending i { color: #ffc107; }
.status-badge.completed i { color: #4caf50; }
.status-badge.cancelled i { color: #f44336; }
.status-badge.delivered i { color: #4caf50; }

/* ===== آیکون‌های لیست سفارشات ===== */
.order-card-body .date i { color: #888; }
.order-card-body .delivered-badge i { color: #4caf50; }
/* ===== دکمه تحویل ===== */
.btn-deliver {
    background: rgba(76,175,80,0.2);
    color: #4caf50;
    border: 1px solid rgba(76,175,80,0.2);
}
.btn-deliver:hover {
    background: rgba(76,175,80,0.3);
    transform: scale(1.08);
}

/* ===== ارور تحویل ===== */
.deliver-error {
    background: rgba(244,67,54,0.1);
    border: 1px solid rgba(244,67,54,0.2);
    border-radius: 10px;
    padding: 10px 14px;
    color: #f44336;
    font-size: 13px;
    display: none;
    margin-top: 10px;
}
.deliver-error.show {
    display: flex;
    align-items: center;
    gap: 8px;
}
.deliver-error i {
    font-size: 18px;
}
/* ===== رفع مشکل نمایش فروشگاه در موبایل ===== */
@media (max-width: 768px) {
    .store-section {
        display: block !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        min-height: auto !important;
        padding-top: 80px !important;
        padding-bottom: 40px !important;
    }

    .store-section.reveal {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    .store-grid,
    .bots-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        padding: 0 10px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .plan-card,
    .bot-card {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 25px 18px !important;
        box-sizing: border-box !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .billing-switch {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        width: auto !important;
        margin: 20px auto 30px !important;
        padding: 6px !important;
        border-radius: 999px !important;
    }

    .billing-btn {
        width: auto !important;
        padding: 10px 20px !important;
        font-size: 14px !important;
        border-radius: 999px !important;
    }

    .domain-section {
        padding: 20px 15px !important;
        margin: 10px 10px 0 !important;
        display: block !important;
    }

    .domain-search {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .domain-input {
        width: 100% !important;
        min-width: unset !important;
        padding: 12px !important;
        font-size: 15px !important;
    }

    .domain-extension {
        text-align: center !important;
        padding: 10px !important;
    }

    .domain-check-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px !important;
    }

    .domain-result {
        padding: 15px !important;
    }

    .domain-result .buy-btn {
        width: 100% !important;
    }

    .bots-divider {
        margin: 40px 0 15px !important;
    }

    .bots-divider span {
        font-size: 17px !important;
        padding: 0 10px !important;
    }

    .section-title {
        font-size: 28px !important;
        margin-bottom: 20px !important;
    }

    .section-subtitle {
        font-size: 14px !important;
        padding: 0 15px !important;
        margin-bottom: 25px !important;
    }

    .plan-card h3 {
        font-size: 22px !important;
    }

    .plan-card .price span {
        font-size: 32px !important;
    }

    .plan-card ul li {
        font-size: 14px !important;
        padding: 8px 0 !important;
    }

    .bot-card .price span {
        font-size: 34px !important;
    }

    .bot-card ul li {
        font-size: 13px !important;
        padding: 8px 0 !important;
    }

    .buy-btn {
        font-size: 15px !important;
        padding: 14px !important;
        margin-top: 20px !important;
    }

    .bot-card .buy-btn {
        font-size: 15px !important;
        padding: 14px !important;
        margin-top: 20px !important;
    }
}
/* ===== ریسپانسیو ===== */
@media (max-width: 768px) {
    .navbar { padding: 14px 20px; border-radius: 30px; flex-wrap: wrap; }
    .glass { padding: 40px 24px; }
    .glass h1 { font-size: 48px; }
    .section-title { font-size: 32px; }
    .rules-section, .store-section, .faq-section, .contact-section, .about-section { padding: 80px 5% 50px; }
    .about-card { padding: 30px 20px; }
    .about-title { font-size: 32px; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer a:hover { transform: none; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
    .glass h1 { font-size: 36px; }
    .plan-card .price span { font-size: 34px; }
    .about-title { font-size: 26px; }
}
/* ===== کوچیک‌تر کردن مودال‌ها ===== */
@media (min-width: 768px) {
    .modal-content {
        max-width: 400px !important;
        padding: 25px 28px !important;
    }
    .modal-content .input-custom {
        padding: 8px 12px !important;
        font-size: 13px !important;
    }
    .modal-content .btn-submit-order,
    .modal-content .btn-ts {
        padding: 10px !important;
        font-size: 14px !important;
    }
    .modal-content h3 {
        font-size: 20px !important;
    }
}
/* ===== استایل انتخاب‌گر ساب‌دامنه ===== */
select.subdomain-select {
    background: #1a0a2e !important;
    color: white !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 10px !important;
    padding: 10px 14px !important;
}
select.subdomain-select option {
    background: #1a0a2e !important;
    color: white !important;
}
/* ===== شمارنده تیکت ===== */
.ticket-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff4ec7;
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    margin-right: auto;
    line-height: 1;
}

.user-dropdown .dropdown-item {
    position: relative;
    justify-content: flex-start;
}

.user-dropdown .dropdown-item .ticket-badge {
    margin-right: auto;
    margin-left: 0;
}
/* ===== شمارنده تیکت ===== */
.ticket-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff4ec7;
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    margin-right: auto;
    line-height: 1;
}
/* ===== نوار ناوبری یکدست ===== */
.navbar {
    position: fixed;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, 90%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    z-index: 1000;
}
.navbar .logo {
    font-size: 28px;
    font-weight: 700;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 2px;
}
.navbar .logo span { color: #ff4ec7; }
.navbar .nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.navbar .nav-menu li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Vazirmatn', sans-serif;
}
.navbar .nav-menu li a:hover { color: #ff4ec7; }
.navbar .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}
.navbar .hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 999px;
    transition: 0.3s ease;
}
.navbar .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.navbar .hamburger.active span:nth-child(2) { opacity: 0; }
.navbar .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
.navbar .auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}
.navbar .auth-btn {
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 14px;
}
.navbar .auth-btn:hover {
    background: rgba(255,78,199,0.15);
    border-color: #ff4ec7;
}
.navbar .auth-btn.primary {
    background: linear-gradient(135deg, #8b3dff, #ff4ec7);
    border: none;
}
.navbar .auth-btn.primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255,78,199,0.3);
}
.navbar .ticket-btn-header {
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.navbar .ticket-btn-header:hover {
    background: rgba(255,78,199,0.15);
    border-color: #ff4ec7;
    color: #ff4ec7;
}
.navbar .user-menu {
    position: relative;
    display: inline-block;
}
.navbar .user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b3dff, #ff4ec7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.2);
    transition: 0.3s;
    font-family: 'Vazirmatn', sans-serif;
}
.navbar .user-avatar:hover {
    border-color: #ff4ec7;
    transform: scale(1.05);
}
.navbar .user-dropdown {
    display: none;
    position: absolute;
    top: 52px;
    left: 0;
    background: rgba(20,10,35,0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 10px 0;
    min-width: 210px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    z-index: 1000;
    font-family: 'Vazirmatn', sans-serif;
}
.navbar .user-dropdown.show { display: block; }
.navbar .user-dropdown .dropdown-item {
    padding: 10px 22px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    cursor: pointer;
    font-size: 14px;
    border: none;
    background: none;
    width: 100%;
    text-align: right;
    font-family: 'Vazirmatn', sans-serif;
}
.navbar .user-dropdown .dropdown-item:hover {
    background: rgba(255,78,199,0.1);
    color: #ff4ec7;
}
.navbar .user-dropdown .dropdown-item i {
    width: 20px;
    color: #ff4ec7;
}
.navbar .user-dropdown .dropdown-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 6px 12px;
}
.navbar .user-dropdown .user-name-display {
    padding: 8px 22px;
    color: #888;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 6px;
    font-family: 'Vazirmatn', sans-serif;
}
.navbar .user-dropdown .user-name-display strong { color: white; }

@media (max-width: 900px) {
    .navbar .hamburger { display: flex; }
    .navbar .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 320px;
        height: 100vh;
        background: rgba(9,4,15,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(255,255,255,0.08);
        padding: 40px 20px;
        margin: 0;
    }
    .navbar .nav-menu.active { right: 0; }
    .navbar .nav-menu li a {
        font-size: 20px;
        padding: 12px 0;
        display: block;
        width: 100%;
        text-align: center;
    }
    .navbar .user-dropdown {
        left: auto;
        right: 0;
        min-width: 170px;
    }
}
@media (max-width: 600px) {
    .navbar {
        padding: 14px 20px;
        border-radius: 30px;
        top: 12px;
        width: 95%;
    }
    .navbar .logo { font-size: 22px; }
    .navbar .nav-menu { width: 80%; max-width: 280px; }
    .navbar .nav-menu li a { font-size: 18px; }
    .navbar .auth-btn,
    .navbar .ticket-btn-header { padding: 6px 12px; font-size: 12px; }
    .navbar .user-avatar { width: 34px; height: 34px; font-size: 14px; }
}

/* ===== نشان تیکت روی آواتار ===== */
.navbar .user-avatar { position: relative; }
.navbar .user-avatar .avatar-ticket-badge {
    position: absolute;
    top: -4px;
    left: -4px;
    background: #ff4ec7;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid #09040f;
    font-family: 'Vazirmatn', sans-serif;
}

/* ===== پنل کاربری (User Panel) ===== */
#userPanelOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 100000;
    display: none;
    opacity: 0;
    transition: opacity .3s;
}
#userPanelOverlay.show { display: block; opacity: 1; }

#userPanelDrawer {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: min(400px, 100vw);
    background: rgba(15, 8, 25, .98);
    border-left: 1px solid rgba(255, 255, 255, .1);
    z-index: 100001;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.2, .8, .2, 1);
    display: flex;
    flex-direction: column;
    font-family: 'Vazirmatn', sans-serif;
    direction: rtl;
}
#userPanelDrawer.show { transform: translateX(0); }

.up-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    flex-shrink: 0;
}
.up-header h3 {
    font-size: 18px;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.up-header h3 i { color: #ff4ec7; }
.up-close-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    transition: .3s;
}
.up-close-btn:hover { background: rgba(244, 67, 54, .2); }

.up-body { padding: 20px; flex: 1; overflow-y: auto; }

.up-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(139, 61, 255, .18), rgba(255, 78, 199, .10));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 18px;
}
.up-avatar-lg {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b3dff, #ff4ec7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    border: 2px solid rgba(255, 255, 255, .25);
    flex-shrink: 0;
    font-family: 'Vazirmatn', sans-serif;
}
.up-profile-info h4 { color: #fff; font-size: 16px; margin: 0 0 5px; }
.up-profile-info span { color: #999; font-size: 13px; display: flex; align-items: center; gap: 6px; }
.up-profile-info span i { color: #ff4ec7; font-size: 12px; }

.up-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.up-stat-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 14px;
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
}
.up-stat-card:hover { border-color: #ff4ec7; background: rgba(255, 78, 199, .08); transform: translateY(-2px); }
.up-stat-card .num {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 4px;
    font-family: 'Space Grotesk', sans-serif;
}
.up-stat-card .lbl { font-size: 12px; color: #999; display: flex; align-items: center; justify-content: center; gap: 5px; }
.up-stat-card.tickets .num { color: #ff4ec7; }
.up-stat-card.orders .num { color: #8b3dff; }

.up-section-title {
    font-size: 13px;
    color: #888;
    margin: 4px 0 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.up-section-title i { color: #ff4ec7; font-size: 12px; }

.up-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.up-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 18px 10px;
    color: #fff;
    cursor: pointer;
    transition: .3s;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 13px;
    position: relative;
    text-align: center;
}
.up-action-btn i { font-size: 20px; color: #ff4ec7; }
.up-action-btn:hover { border-color: #ff4ec7; background: rgba(255, 78, 199, .1); transform: translateY(-2px); }
.up-action-btn.primary { background: linear-gradient(135deg, rgba(139, 61, 255, .25), rgba(255, 78, 199, .18)); border-color: rgba(255, 78, 199, .3); }
.up-action-btn .up-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ff4ec7;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    line-height: 1;
}

.up-account-info {
    display: none;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 6px 16px;
    margin-bottom: 4px;
}
.up-account-info.show { display: block; animation: upFadeInUp .3s ease; }
.up-account-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: 13px;
}
.up-account-row:last-child { border-bottom: none; }
.up-account-row .lbl { color: #888; display: flex; align-items: center; gap: 6px; }
.up-account-row .lbl i { color: #ff4ec7; width: 16px; text-align: center; }
.up-account-row .val { color: #fff; font-weight: 600; }

.up-footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    flex-shrink: 0;
}
.up-logout-btn {
    width: 100%;
    padding: 12px;
    border-radius: 999px;
    border: 1px solid rgba(244, 67, 54, .3);
    background: rgba(244, 67, 54, .08);
    color: #f44336;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: .3s;
}
.up-logout-btn:hover { background: rgba(244, 67, 54, .2); }

@keyframes upFadeInUp {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    #userPanelDrawer { width: 100vw; }
}
/* ===== استایل غیرفعال برای پلن‌های سه‌ماهه (قرمز + خاموش) ===== */
.plan-card.unavailable {
    opacity: 0.45;
    filter: grayscale(0.7) saturate(0.2);
    transform: scale(0.96);
    border-color: rgba(255, 50, 50, 0.15) !important;
    pointer-events: none;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: none !important;
}

/* نوار مورب قرمز با نوشته ناموجود */
.plan-card.unavailable::before {
    content: "ناموجود";
    position: absolute;
    top: 22px;
    right: -30px;
    background: linear-gradient(135deg, #ff1744, #d50000);
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 20px rgba(255, 23, 68, 0.5);
    z-index: 10;
    font-family: 'Vazirmatn', sans-serif;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.15);
}

/* افکت شیشه‌ای قرمز ملایم روی کل کارت */
.plan-card.unavailable::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 23, 68, 0.04);
    border-radius: inherit;
    z-index: 1;
    pointer-events: none;
}

/* دکمه خرید غیرفعال */
.plan-card.unavailable .buy-btn {
    opacity: 0.15;
    pointer-events: none;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
    background: #333 !important;
    border: 1px solid rgba(255, 50, 50, 0.1) !important;
}

/* قیمت کمرنگ با رنگ قرمز ملایم */
.plan-card.unavailable .price span {
    opacity: 0.35;
    color: #ff6b6b;
}
.plan-card.unavailable .price small {
    opacity: 0.25;
    color: #ff6b6b;
}

/* عنوان و آیتم‌ها */
.plan-card.unavailable h3 {
    opacity: 0.3;
    color: #cc8888;
}
.plan-card.unavailable ul li {
    opacity: 0.25;
}
.plan-card.unavailable ul li::before {
    opacity: 0.2;
    color: #ff6b6b;
}

/* برچسب کوچک "غیرفعال" در پایین */
.plan-card.unavailable .unavailable-label {
    display: block;
    text-align: center;
    margin-top: 18px;
    font-size: 12px;
    color: rgba(255, 50, 50, 0.4);
    letter-spacing: 4px;
    font-weight: 300;
    border-top: 1px solid rgba(255, 50, 50, 0.08);
    padding-top: 14px;
}
/* ===== پیام ناموجود ===== */
#unavailableMessage {
    text-align: center;
    padding: 80px 20px;
}
#unavailableMessage i {
    font-size: 64px;
    color: #ff1744;
    display: block;
    margin-bottom: 20px;
}
#unavailableMessage h2 {
    font-size: 48px;
    font-weight: 800;
    color: #ff1744;
    margin: 0;
}
#unavailableMessage p {
    color: #888;
    font-size: 18px;
    margin-top: 10px;
}
/* ===== برچسب ناموجود روی کارت ربات ===== */
.unavailable-badge {
    position: absolute;
    top: 18px;
    right: 20px;
    background: linear-gradient(135deg, #ff1744, #d50000);
    color: #fff;
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 23, 68, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 2;
    font-family: 'Vazirmatn', sans-serif;
}

/* ===== دکمه غیرفعال ===== */
.unavailable-btn {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    background: #333 !important;
    box-shadow: none !important;
    pointer-events: none;
    border: 1px solid rgba(255, 50, 50, 0.1) !important;
    color: #999 !important;
}

/* ===== حذف افکت‌های هاور از کارت (اختیاری) ===== */
.plan-card.bot-card .unavailable-badge + h3 {
    margin-top: 0;
}
/* ===== اطمینان از نمایش فروشگاه ===== */
#plansContainer {
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
    min-height: 100px;
}

.store-grid {
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.plan-card {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}
/* ============================================
   نوتیفیکیشن شیشه‌ای فوق‌شفاف
   ============================================ */
.glass-notification {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: min(680px, 92%);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 18px 24px;
    z-index: 99999;
    direction: rtl;
    font-family: 'Vazirmatn', sans-serif;
    overflow: hidden;
    
    /* ===== انیمیشن ورود و خروج یکسان ===== */
    transition: top 0.5s cubic-bezier(0.34, 1.2, 0.64, 1), 
                opacity 0.5s ease;
    opacity: 0;
}

.glass-notification.glass-notif-show {
    top: 20px;
    opacity: 1;
}

/* ===== خروج به بالا با همان انیمیشن ===== */
.glass-notification.glass-notif-hide {
    top: -100%;
    opacity: 0;
    transition: top 0.5s cubic-bezier(0.34, 1.2, 0.64, 1), 
                opacity 0.5s ease;
}

/* محتوای داخلی */
.glass-notif-content {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

/* آیکون */
.glass-notif-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: rgba(255, 78, 199, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ff4ec7;
    border: 1px solid rgba(255, 78, 199, 0.08);
    margin-top: 2px;
}

/* متن */
.glass-notif-text {
    flex: 1;
    min-width: 0;
}

.glass-notif-text strong {
    display: block;
    color: white;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.glass-notif-text span {
    color: #d4d4d4;
    font-size: 14px;
    line-height: 1.9;
    display: block;
}

.glass-notif-brand {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.15) !important;
    font-size: 12px !important;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-align: left;
    direction: ltr;
}

/* دکمه بستن */
.glass-notif-close {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-radius: 50%;
    color: #888;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: 2px;
}

.glass-notif-close:hover {
    background: rgba(255, 78, 199, 0.1);
    color: #ff4ec7;
    transform: rotate(90deg);
}

/* ===== نوار پیشرفت (۳.۵ ثانیه) ===== */
.glass-notif-progress {
    position: absolute;
    bottom: 0;
    left: 2px;
    right: 2px;
    height: 3px;
    background: linear-gradient(90deg, #8b3dff, #ff4ec7);
    border-radius: 0 0 24px 24px;
    width: 0%;
    animation: none;
}

@keyframes glassProgress {
    0% { width: 0%; }
    100% { width: calc(100% - 4px); }
}

.glass-notification:hover .glass-notif-progress {
    animation-play-state: paused !important;
}

/* ===== واکنش‌گرایی موبایل ===== */
@media (max-width: 600px) {
    .glass-notification {
        width: 96%;
        padding: 14px 16px;
        border-radius: 18px;
        top: -100%;
    }
    .glass-notification.glass-notif-show {
        top: 12px;
    }
    .glass-notification.glass-notif-hide {
        top: -100%;
    }
    .glass-notif-icon {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
    .glass-notif-text strong {
        font-size: 15px;
    }
    .glass-notif-text span {
        font-size: 13px;
        line-height: 1.8;
    }
    .glass-notif-brand {
        font-size: 11px !important;
    }
    .glass-notif-close {
        width: 28px;
        height: 28px;
        font-size: 15px;
    }
    .glass-notif-progress {
        border-radius: 0 0 18px 18px;
        left: 1px;
        right: 1px;
    }
    @keyframes glassProgress {
        0% { width: 0%; }
        100% { width: calc(100% - 2px); }
    }
}
/* ===== نوتیفیکیشن بحرانی (قرمز) ===== */
.critical-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: min(680px, 92%);
    background: rgba(255, 0, 0, 0.08);
    backdrop-filter: blur(28px);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.25);
    padding: 18px 24px;
    z-index: 99998;
    direction: rtl;
    font-family: 'Vazirmatn', sans-serif;
    animation: criticalSlideUp 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
    display: flex;
    align-items: center;
    gap: 14px;
}

@keyframes criticalSlideUp {
    from { opacity: 0; transform: translateX(-50%) translateY(40px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.critical-notification .critical-notif-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: rgba(255, 0, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.critical-notification .critical-notif-text {
    flex: 1;
    min-width: 0;
}

.critical-notification .critical-notif-text strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 2px;
}

.critical-notification .critical-notif-text span {
    color: #d4d4d4;
    font-size: 14px;
    line-height: 1.9;
    display: block;
}

.critical-notification .critical-renew-btn {
    padding: 6px 20px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff4ec7, #8b3dff);
    color: white;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
    margin-top: 6px;
}

.critical-notification .critical-renew-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 0 25px rgba(255,78,199,0.3);
}

.critical-notification .critical-notif-close {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-radius: 50%;
    color: #888;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.critical-notification .critical-notif-close:hover {
    background: rgba(255, 0, 0, 0.15);
    color: #ff4444;
    transform: rotate(90deg);
}

@media (max-width: 600px) {
    .critical-notification {
        width: 96%;
        padding: 14px 16px;
        border-radius: 16px;
        bottom: 16px;
        flex-wrap: wrap;
        gap: 10px;
    }
    .critical-notification .critical-notif-icon {
        width: 34px;
        height: 34px;
        font-size: 17px;
    }
    .critical-notification .critical-notif-text strong {
        font-size: 15px;
    }
    .critical-notification .critical-notif-text span {
        font-size: 13px;
    }
    .critical-notification .critical-renew-btn {
        font-size: 12px;
        padding: 5px 16px;
        width: 100%;
        text-align: center;
    }
}
/* ===== رفع بک‌گراند لیست رادیوهای ربات موزیک عادی ===== */
.music-radio-select {
    background: #1a0a2e !important;
    color: white !important;
    border: 1.5px solid rgba(255,255,255,0.12) !important;
}

.music-radio-select option {
    background: #1a0a2e !important;
    color: white !important;
}
/* ===================================================== */
/* ===== Features (چرا وایس‌سیتی) ===== */
/* ===================================================== */
.features-section { padding: 60px 8% 120px; direction: rtl; font-family: "Vazirmatn", sans-serif; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1200px; margin: 0 auto; }
.feature-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 36px 30px;
    transition: .35s;
}
.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,78,199,.35);
    box-shadow: 0 20px 50px rgba(0,0,0,.35), 0 0 35px rgba(255,78,199,.15);
}
.feature-icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(139,61,255,.18), rgba(255,78,199,.18));
    border: 1px solid rgba(255,255,255,.10);
    margin-bottom: 20px;
    font-size: 22px;
    background-clip: padding-box;
}
.feature-icon i {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.feature-card h3 { font-size: 19px; margin-bottom: 10px; color: white; }
.feature-card p { color: #aaa; font-size: 14.5px; line-height: 1.9; }

@media (max-width: 900px) {
    .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
}

/* ===================================================== */
/* ===== Our Story (داستان ما) - دو ستونه ===== */
/* ===================================================== */
.story-section { padding: 60px 8% 120px; direction: rtl; font-family: "Vazirmatn", sans-serif; }
.story-layout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.story-text .about-badge { margin-bottom: 18px; }
.story-text h2 {
    font-size: 38px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.5;
}
.story-text h2 .highlight {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.story-text p {
    color: #bdbdbd;
    font-size: 15.5px;
    line-height: 2.1;
    margin-bottom: 16px;
}
.story-stats { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.stat-badge {
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.04);
    border-radius: 18px;
    padding: 16px 26px;
    text-align: center;
    min-width: 130px;
}
.stat-badge span {
    display: block;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-badge small { color: #999; font-size: 13px; }

.story-visual {
    position: relative;
    height: 340px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.10);
    background: linear-gradient(160deg, rgba(139,61,255,.12), rgba(255,78,199,.08));
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.story-visual-core {
    width: 110px; height: 110px; border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    display: flex; align-items: center; justify-content: center;
    font-size: 38px;
    color: var(--pink);
    z-index: 2;
}
.story-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,.12);
}
.story-orbit.o1 { width: 220px; height: 220px; }
.story-orbit.o2 { width: 300px; height: 300px; }
.story-dot {
    position: absolute;
    width: 16px; height: 16px; border-radius: 50%;
    box-shadow: 0 0 18px currentColor;
}

@media (max-width: 900px) {
    .story-layout { grid-template-columns: 1fr; }
    .story-visual { height: 260px; }
}

/* ===================================================== */
/* ===== Testimonials (نظرات مشتریان) ===== */
/* ===================================================== */
.testimonials-section { padding: 60px 8% 120px; direction: rtl; font-family: "Vazirmatn", sans-serif; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1200px; margin: 0 auto; }
.testimonial-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 34px;
    transition: .35s;
}
.testimonial-card:hover { transform: translateY(-6px); border-color: rgba(255,78,199,.3); }
.testimonial-card .quote-icon { color: rgba(255,78,199,.5); font-size: 22px; margin-bottom: 14px; }
.testimonial-card p.review-text { color: #ccc; font-size: 14.5px; line-height: 2; margin-bottom: 18px; min-height: 80px; }
.testimonial-stars { color: #ffb800; margin-bottom: 16px; font-size: 14px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08); }
.testimonial-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 15px;
}
.testimonial-author strong { display: block; color: white; font-size: 14.5px; }
.testimonial-author span { color: #888; font-size: 12.5px; }

@media (max-width: 900px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===================================================== */
/* ===== دسترسی سریع (پنل‌ها و امکانات) ===== */
/* ===================================================== */
.quickaccess-section { padding: 60px 8% 120px; direction: rtl; font-family: "Vazirmatn", sans-serif; }
.quickaccess-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.quickaccess-card {
    position: relative;
    border-radius: 24px;
    padding: 34px 22px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(160deg, rgba(139,61,255,.14), rgba(255,78,199,.08));
    backdrop-filter: blur(14px);
    cursor: pointer;
    transition: .35s;
    text-decoration: none;
    display: block;
}
.quickaccess-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,78,199,.4);
    box-shadow: 0 20px 50px rgba(0,0,0,.35), 0 0 35px rgba(255,78,199,.18);
}
.quickaccess-card i {
    font-size: 34px;
    margin-bottom: 16px;
    display: block;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.quickaccess-card h3 { color: white; font-size: 16.5px; margin-bottom: 8px; }
.quickaccess-card p { color: #999; font-size: 13px; line-height: 1.8; }

@media (max-width: 900px) {
    .quickaccess-grid { grid-template-columns: 1fr 1fr; max-width: 600px; }
}

.enamad-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(160deg, rgba(139,61,255,.14), rgba(255,78,199,.08));
    backdrop-filter: blur(14px);
    transition: .35s;
    margin-top: 20px;
}
.enamad-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,78,199,.4);
    box-shadow: 0 20px 50px rgba(0,0,0,.35), 0 0 35px rgba(255,78,199,.18);
}
.enamad-card img { display: block; border-radius: 10px; width: 100px; height: auto; }
.enamad-card a { display: inline-block; margin: 0; }
.enamad-card a:hover { transform: none; color: inherit; }
@media (max-width: 600px) {
    .quickaccess-grid { grid-template-columns: 1fr; }
}

/* ===================================================== */
/* ===== Hero Stats Row ===== */
/* ===================================================== */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 34px;
    flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat span {
    display: block;
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-stat small { color: #999; font-size: 13px; }

/* ===================================================== */
/* ===== بنر صفحات داخلی (مثل فروشگاه) ===== */
/* ===================================================== */
.page-banner { padding: 150px 8% 60px; direction: rtl; font-family: "Vazirmatn", sans-serif; }
.page-banner-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.page-banner-back {
    display: inline-flex; align-items: center; gap: 8px;
    color: #999; text-decoration: none; font-size: 14px;
    margin-bottom: 22px; transition: .3s;
}
.page-banner-back:hover { color: #ff4ec7; }
.page-banner-inner h1 {
    font-size: 42px; font-weight: 800; color: white;
    margin-bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 14px;
}
.page-banner-inner p { color: #bdbdbd; font-size: 16px; line-height: 2; }
.page-banner .hero-stats { margin-top: 30px; }

@media (max-width: 600px) {
    .page-banner-inner h1 { font-size: 30px; flex-direction: column; gap: 6px; }
}

/* ===================================================== */
/* ===== هیرو جدید دو ستونه (صفحه اصلی) ===== */
/* ===================================================== */
.hero-split {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
    min-height: 100vh;
    padding: 160px 8% 80px;
    max-width: 1300px;
    margin: 0 auto;
    direction: rtl;
    font-family: 'Vazirmatn', sans-serif;
}
.hero-split-left .hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255,78,199,.3);
    background: rgba(255,78,199,.08);
    color: #ff9fdc;
    font-size: 13px;
    margin-bottom: 26px;
}
.hero-split-left h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.35;
    color: white;
    margin-bottom: 24px;
}
.hero-split-left h1 .highlight {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-split-left p.hero-desc {
    color: #bdbdbd;
    font-size: 17px;
    line-height: 2.1;
    max-width: 540px;
    margin-bottom: 34px;
}
.hero-split-left .store-link { justify-content: flex-start; }
.hero-split-left .hero-stats { justify-content: flex-start; }

.hero-split-right { position: relative; }
.hero-visual-panel {
    position: relative;
    height: 440px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: linear-gradient(160deg, rgba(139,61,255,.20), rgba(255,78,199,.10));
    backdrop-filter: blur(16px);
    box-shadow: inset 0 1px rgba(255,255,255,.15), 0 20px 60px rgba(0,0,0,.4), 0 0 80px rgba(139,61,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-visual-core {
    width: 150px; height: 150px; border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.16);
    display: flex; align-items: center; justify-content: center;
    font-size: 52px;
    color: #ff4ec7;
    z-index: 2;
}
.hero-visual-logo { width: 80px; z-index: 2; }
.hero-orbit { position: absolute; border-radius: 50%; border: 1px dashed rgba(255,255,255,.14); }
.hero-orbit.o1 { width: 260px; height: 260px; }
.hero-orbit.o2 { width: 360px; height: 360px; }
.hero-dot { position: absolute; width: 18px; height: 18px; border-radius: 50%; box-shadow: 0 0 20px currentColor; }
.hero-status-badge {
    position: absolute;
    bottom: 22px;
    left: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(15,10,25,.85);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    padding: 10px 16px;
    backdrop-filter: blur(14px);
    font-size: 13px;
    color: #ddd;
}
.hero-status-badge .dot-live {
    width: 10px; height: 10px; border-radius: 50%;
    background: #21e065; box-shadow: 0 0 10px #21e065;
    animation: pulseLive 1.6s infinite;
}
@keyframes pulseLive { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

@media (max-width: 980px) {
    .hero-split { grid-template-columns: 1fr; padding-top: 130px; text-align: center; }
    .hero-split-left .store-link, .hero-split-left .hero-stats { justify-content: center; }
    .hero-split-left h1 { font-size: 38px; }
    .hero-split-left p.hero-desc { margin-left: auto; margin-right: auto; }
    .hero-visual-panel { height: 300px; }
}

/* ===================================================== */
/* ===== بنر دعوت به فروشگاه (CTA) ===== */
/* ===================================================== */
.store-cta-section { padding: 20px 8% 100px; direction: rtl; font-family: "Vazirmatn", sans-serif; }
.store-cta-card {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: linear-gradient(120deg, rgba(139,61,255,.18), rgba(255,78,199,.10));
    backdrop-filter: blur(16px);
    padding: 50px 55px;
    box-shadow: inset 0 1px rgba(255,255,255,.12), 0 20px 60px rgba(0,0,0,.35);
}
.store-cta-text h2 { font-size: 28px; color: white; margin: 14px 0 10px; }
.store-cta-text p { color: #ccc; font-size: 15px; line-height: 1.9; max-width: 480px; }
.store-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    transition: .3s;
}
.store-cta-btn:hover { transform: scale(1.04); box-shadow: 0 0 35px rgba(255,78,199,.4); }

@media (max-width: 700px) {
    .store-cta-card { flex-direction: column; text-align: center; padding: 40px 26px; }
    .store-cta-text p { margin: 0 auto; }
}

/* ===================================================== */
/* ===== مودال ورود/ثبت‌نام دو ستونه (تمام‌صفحه) ===== */
/* ===================================================== */
.modal.auth-modal { padding: 0; background: #050208; backdrop-filter: none; }
.auth-modal-content {
    width: 100%;
    height: 100%;
    max-width: none;
    border-radius: 0;
    border: none;
    padding: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    overflow: hidden;
}
.auth-modal-content .close-modal {
    position: fixed;
    top: 18px;
    left: 18px;
    z-index: 20;
}
.auth-form-col {
    flex: 0 0 42%;
    max-width: 42%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px;
    overflow-y: auto;
}
.auth-form-col .auth-form-inner { max-width: 340px; margin: 0 auto; width: 100%; }
.auth-form-col h3 { font-size: 26px; margin-bottom: 6px; color: white; }
.auth-form-col .auth-sub { color: #888; font-size: 14px; margin-bottom: 26px; }
.auth-visual-col {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 60px;
    background: linear-gradient(150deg, rgba(60,10,90,.55), rgba(10,5,20,.9) 55%, rgba(5,10,30,.95));
    overflow: hidden;
    text-align: right;
}
.auth-visual-col::before {
    content: "";
    position: absolute; inset: -30%;
    background: radial-gradient(circle at 75% 20%, rgba(255,78,199,.28), transparent 45%),
                radial-gradient(circle at 20% 80%, rgba(139,61,255,.22), transparent 50%);
    filter: blur(45px);
    z-index: 0;
}
.auth-visual-logo {
    position: absolute;
    top: 34px;
    right: 46px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}
.auth-visual-logo .auth-logo-badge {
    width: 40px; height: 40px; border-radius: 12px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 17px;
}
.auth-visual-logo span { color: white; font-weight: 700; font-size: 17px; }
.auth-visual-body { position: relative; z-index: 2; max-width: 460px; margin-right: 0; }
.auth-visual-body h2 { font-size: 34px; line-height: 1.5; color: white; margin-bottom: 22px; }
.auth-visual-body h2 .highlight {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.auth-visual-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.auth-visual-list li {
    display: flex; align-items: center; justify-content: flex-end; gap: 10px;
    color: #e5e5e5; font-size: 14.5px;
}
.auth-visual-list li i { color: #21e065; font-size: 15px; }
.auth-visual-copyright {
    position: absolute;
    bottom: 26px;
    right: 46px;
    color: #777;
    font-size: 12.5px;
    z-index: 2;
}

@media (max-width: 900px) {
    .auth-modal-content { flex-direction: column; overflow-y: auto; }
    .auth-form-col { flex: none; max-width: 100%; padding: 90px 24px 30px; }
    .auth-visual-col { display: none; }
}

/* ===================================================== */
/* ===== صفحات مستقل ورود/ثبت‌نام (بدون مودال) ===== */
/* ===================================================== */
html.auth-html, body.auth-body { height: 100%; margin: 0; }
.auth-page {
    min-height: 100vh;
    width: 100%;
    background: #050208;
    display: flex;
    overflow: hidden;
    direction: rtl;
    font-family: "Vazirmatn", sans-serif;
}
.auth-page .auth-form-col { flex: 0 0 42%; max-width: 42%; padding: 50px 60px; }
.auth-page .auth-brand {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 40px;
    text-decoration: none;
    width: fit-content;
}
.auth-page .auth-brand .auth-logo-badge {
    width: 38px; height: 38px; border-radius: 11px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 16px;
}
.auth-page .auth-brand span { color: white; font-weight: 700; font-size: 16px; }

@media (max-width: 900px) {
    .auth-page { flex-direction: column; }
    .auth-page .auth-form-col { flex: none; max-width: 100%; padding: 40px 24px 40px; }
    .auth-page .auth-visual-col { display: none; }
}

/* ===== زیرمتن پنل بصری ورود/ثبت‌نام ===== */
.auth-visual-sub {
    color: #bbb;
    font-size: 14.5px;
    line-height: 2;
    margin: -10px 0 24px;
    max-width: 420px;
}


/* ===== نوار شناور تخفیف ویژه خرید اول ===== */
.promo-strip {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;

    direction: rtl;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;

    width: 100%;
    padding: 4px 40px 4px 20px;

    background: linear-gradient(135deg, rgba(139,61,255,.9), rgba(255,78,199,.9));
    background-size: 200% 200%;
    animation: promoStripShift 8s ease-in-out infinite;

    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 -6px 24px rgba(0,0,0,.25);

    text-decoration: none;
    color: rgba(255,255,255,.92);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .2px;

    transition: background .4s ease, box-shadow .4s ease;
}
@keyframes promoStripShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.promo-strip:hover {
    box-shadow: 0 -8px 30px rgba(255,78,199,.2);
}
.promo-strip-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    font-size: 11px;
    opacity: .8;
}
.promo-strip-text {
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
}
.promo-strip-text b {
    font-weight: 600;
    color: #fff;
}
.promo-strip-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    font-size: 10px;
    opacity: .7;
}
.promo-strip-close {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: rgba(255,255,255,.7);
    background: rgba(0,0,0,.12);
    transition: .3s;
    cursor: pointer;
}
.promo-strip-close:hover {
    background: rgba(0,0,0,.25);
    color: #fff;
}
@media (max-width: 600px) {
    .promo-strip {
        padding: 7px 34px 7px 12px;
        font-size: 10.5px;
        gap: 5px;
    }
    .promo-strip-text { white-space: normal; line-height: 1.5; }
    .promo-strip-arrow { display: none; }
    .promo-strip-close { left: 6px; width: 16px; height: 16px; }
}
