/* ViceCity Style.css - Professional Edition */
:root {
    --bg: #09040f;
    --surface: rgba(255,255,255,.08);
    --surface-2: rgba(255,255,255,.05);
    --border: rgba(255,255,255,.14);
    --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: #09040f;
    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,.35), transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255,78,199,.30), transparent 35%),
        radial-gradient(circle at 50% 80%, rgba(95,0,255,.25), transparent 45%);
    filter: blur(90px);
    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(24px);
    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(28px);
    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(45px);
    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(25px);
    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; }
.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(20px);
}
.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(25px);
    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: 35px; margin-top: 70px; }
.contact-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(25px);
    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; }

/* ===== 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(15px);
    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: 30px;
    padding: 35px;
    max-width: 480px;
    width: 100%;
    color: white;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 60px rgba(139,61,255,0.1);
    animation: modalFadeIn 0.4s ease;
    position: relative;
    overflow: hidden;
}
@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.close-modal {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #888;
    transition: 0.3s;
    z-index: 10;
    background: rgba(255,255,255,0.05);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.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: 18px; text-align: right; }
.input-group-custom label { display: block; font-size: 13px; color: #aaa; margin-bottom: 6px; font-weight: 500; }
.input-group-custom label i { margin-left: 6px; color: #ff4ec7; }

.input-custom {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: white;
    outline: none;
    font-size: 15px;
    transition: 0.3s;
    font-family: inherit;
}
.input-custom::placeholder { color: #555; }
.input-custom:focus { border-color: #ff4ec7; box-shadow: 0 0 25px rgba(255,78,199,0.1); background: rgba(255,255,255,0.08); }
.input-custom.textarea { min-height: 80px; resize: vertical; }

.btn-submit-order {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #8b3dff, #ff4ec7);
    color: white;
    font-size: 17px;
    font-family: inherit;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
    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 40px rgba(255,78,199,0.3); }
.btn-submit-order:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.divider { display: flex; align-items: center; gap: 15px; margin: 20px 0 15px; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,0.08); }
.divider span { color: #555; font-size: 13px; white-space: nowrap; }

.btn-ts {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    font-size: 16px;
    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 30px rgba(37,99,235,0.3); }

.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: 12px 16px;
    border-radius: 14px;
    margin-top: 10px;
}
.telegram-box span { color: #ccc; font-size: 14px; }
.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: 6px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 13px;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 6px;
}
.copy-btn-custom:hover { background: #ff4ec7; border-color: #ff4ec7; }

/* ===== 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: #09040f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.7s ease;
}
.loader-logo {
    width: 130px;
    animation: loaderFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(139,61,255,.5)) drop-shadow(0 0 45px rgba(255,78,199,.35));
}
#loader h1 { margin-top: 25px; color: white; font-size: 58px; letter-spacing: 2px; }
#loader span { color: var(--pink); }
.loader-bar {
    margin-top: 40px;
    width: 280px;
    height: 7px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
}
.loader-fill {
    height: 100%;
    width: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--purple), var(--pink));
    animation: loading 2s ease forwards;
}
@keyframes loading { from { width: 0; } to { width: 100%; } }
@keyframes loaderFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

/* ===== 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-top: 120px;
    padding: 70px 8% 25px;
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
    backdrop-filter: blur(25px);
}
.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-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(25px);
    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;
    }
}