@font-face {
    font-family: 'Vazirmatn';
    src: url('https://rpcity.net/fonts/Vazirmatn-Variable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
    }
    :root {
        --bg-color: #0f172a;
        --card-bg: rgba(255, 255, 255, 0.1);
        --neon-green: #d3da40;
        --neon-yellow: #d3da40;
        --neon-blue: #60a5fa;
        --neon-pink: #f472b6;
        --neon-purple: #a78bfa;
        --text-color: #ffffff;
        --text-muted: #94a3b8;
    }
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: 'Vazirmatn', sans-serif;
        -webkit-tap-highlight-color: transparent;
    }
    body {
        background-color: var(--bg-color);
        color: var(--text-color);
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        padding-bottom: 80px;
        overflow-x: hidden;
        font-family: 'Vazirmatn', sans-serif;
    }
    /* استایل‌های اصلی کانتینر */
    .mx-auto {
        width: 100%;
        max-width: 1280px;
        margin-bottom: 60px; /* فاصله بین بخش‌ها */
    }
    .relative {
        position: relative;
    }
    .overflow-hidden {
        overflow: hidden;
    }
    .rounded-2xl {
        border-radius: 1rem;
    }
    .border {
        border-width: 1px;
        border-style: solid;
    }
    /* افکت‌های پس‌زمینه و نور */
    .bg-card\/30 {
        background-color: rgba(30, 41, 59, 0.3);
    }
    .backdrop-blur-sm {
        backdrop-filter: blur(4px);
    }
    .blur-glow {
        position: absolute;
        left: 50%;
        top: 0;
        width: 24rem;
        height: 24rem;
        background-color: rgba(74, 222, 128, 0.1);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        filter: blur(128px);
        z-index: 0;
        pointer-events: none;
    }
    /* رنگ‌بندی متفاوت برای بخش جواهرات */
    .section-gems .blur-glow {
        background-color: rgba(96, 165, 250, 0.1);
    }
    .section-gems .text-neon-green {
        color: var(--neon-blue);
    }
    .section-gems .drop-shadow-text {
        text-shadow: 0 0 20px rgba(96, 165, 250, 0.6);
    }
    .section-gems .border-neon-green\/30 {
        border-color: rgba(96, 165, 250, 0.3);
    }
    
    /* هدر بخش */
    .space-y-8 > * + * {
        margin-top: 2rem;
    }
    .text-center {
        text-align: center;
    }
    .px-3 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .py-10 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    .text-neon-green {
        color: var(--neon-green);
    }
    .drop-shadow-text {
        text-shadow: 0 0 20px rgba(128, 255, 128, 0.6);
    }
    .text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
        font-weight: 700;
    }
    .text-muted-foreground {
        color: var(--text-muted);
    }
    /* دکمه‌های اسکرول */
    .scroll-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 30;
        background: white;
        border: 2px solid white;
        color: black;
        padding: 0.5rem 0.125rem;
        border-radius: 0.375rem;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .scroll-btn:hover {
        background: #f3f4f6;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
    }
    .scroll-btn.left {
        left: 0;
    }
    .scroll-btn.right {
        right: 0;
    }
    /* ناحیه اسکرول */
    .scroll-container {
        width: 100%;
        overflow-x: auto;
        overflow-y: visible;
        padding-bottom: 1rem;
        scroll-behavior: smooth;
        scrollbar-width: none; /* فایرفاکس */
        -ms-overflow-style: none; /* IE */
    }
    .scroll-container::-webkit-scrollbar {
        display: none; /* کروم و سافاری */
    }
    .inline-flex {
        display: inline-flex;
    }
    .gap-3 {
        gap: 0.75rem;
    }
    /* کارت‌های محصول */
    .gem-card {
        flex-shrink: 0;
        width: 72vw;
        max-width: 220px;
        user-select: none;
    }
    @media (min-width: 640px) {
        .gem-card {
            width: 250px;
        }
    }
    .card-inner {
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
        min-height: 280px;
        overflow: hidden;
        border-radius: 0.5rem;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(107, 114, 128, 0.3);
        transition: all 0.3s;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    }
    /* حالت تاریک برای کارت */
    @media (prefers-color-scheme: dark) {
        .card-inner {
            background: rgba(255, 255, 255, 0.1);
        }
    }
    .card-inner:hover {
        transform: scale(1.05);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }
    .card-inner:active {
        transform: scale(1);
    }
    /* تصویر کارت */
    .card-image-wrapper {
        position: absolute;
        inset: 0;
        z-index: 0;
    }
    .card-image {
        width: 100%;
        height: 125%;
        object-fit: contain;
        object-position: center;
        transform: translateY(-6%);
        transition: transform 0.3s;
    }
    .card-inner:hover .card-image {
        transform: scale(1.1) translateY(-10%);
    }
    .card-gradient {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, transparent, transparent, rgba(15, 23, 42, 0.4));
        z-index: 0;
    }
    /* محتوای کارت */
    .card-content {
        position: relative;
        z-index: 10;
        display: flex;
        flex-direction: column;
        flex: 1;
        min-height: 0;
    }
    .card-header {
        padding: 1rem 1.5rem 0.25rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        flex-shrink: 0;
    }
    .card-title {
        font-size: 0.875rem;
        font-weight: 700;
        color: white;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
        text-align: center;
    }
    .gem-amount {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--neon-y);
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
        line-height: 1.2;
    }
    .section-gems .gem-amount {
        color: var(--neon-blue);
    }
    .card-footer {
        padding: 0.5rem 1.5rem 0.75rem;
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }
    /* دکمه خرید */
    .buy-btn {
        position: relative;
        width: 100%;
        overflow: hidden;
        border-radius: 0.375rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
        font-weight: 700;
        border: 2px solid rgba(74, 222, 128, 0.7);
        background: linear-gradient(to bottom, rgba(74, 222, 128, 0.2), rgba(74, 222, 128, 0.15), rgba(74, 222, 128, 0.2));
        backdrop-filter: blur(4px);
        color: var(--neon-green);
        cursor: pointer;
        transition: all 0.3s ease-out;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        text-decoration: none;
    }
    .section-gems .buy-btn {
        border-color: rgba(96, 165, 250, 0.7);
        background: linear-gradient(to bottom, rgba(96, 165, 250, 0.2), rgba(96, 165, 250, 0.15), rgba(96, 165, 250, 0.2));
        color: var(--neon-blue);
    }
    .buy-btn:hover {
        border-color: var(--neon-green);
        background: linear-gradient(to bottom, rgba(74, 222, 128, 0.3), rgba(74, 222, 128, 0.25), rgba(74, 222, 128, 0.3));
        box-shadow: 0 0 25px rgba(128, 255, 128, 0.6), inset 0 0 25px rgba(128, 255, 128, 0.15);
        transform: scale(1.03);
    }
    .section-gems .buy-btn:hover {
        border-color: var(--neon-blue);
        background: linear-gradient(to bottom, rgba(96, 165, 250, 0.3), rgba(96, 165, 250, 0.25), rgba(96, 165, 250, 0.3));
        box-shadow: 0 0 25px rgba(96, 165, 250, 0.6), inset 0 0 25px rgba(96, 165, 250, 0.15);
    }
    .buy-btn:active {
        transform: scale(0.97);
    }
    .price-text {
        text-shadow: 0 0 8px rgba(128, 255, 128, 0.6);
        font-family: monospace;
    }
    .section-gems .price-text {
        text-shadow: 0 0 8px rgba(96, 165, 250, 0.6);
    }
    /* نشان محبوب */
    .badge {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        z-index: 20;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 9999px;
        border: 1px solid rgba(244, 114, 182, 0.5);
        background-color: var(--neon-pink);
        color: white;
        font-size: 0.75rem;
        font-weight: 500;
        padding: 0.125rem 0.5rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(4px);
    }
    /* گرادینت‌های کناری برای محو شدن */
    .fade-gradient {
        position: absolute;
        inset-y: 0;
        width: 2.5rem;
        z-index: 20;
        pointer-events: none;
    }
    .fade-left {
        left: 0;
        background: linear-gradient(to right, rgba(15, 23, 42, 0.95), transparent);
    }
    .fade-right {
        right: 0;
        background: linear-gradient(to left, rgba(15, 23, 42, 0.95), transparent);
    }
    /* دات‌های پایین */
    .dots-container {
        position: absolute;
        bottom: -1.5rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 20;
        display: flex;
        gap: 0.5rem;
    }
    .dot {
        height: 0.5rem;
        border-radius: 9999px;
        background-color: rgba(74, 222, 128, 0.5);
        transition: all 0.3s;
        cursor: pointer;
    }
    .dot:hover {
        background-color: rgba(74, 222, 128, 0.7);
    }
    .dot.active {
        width: 2rem;
        background-color: var(--neon-green);
        box-shadow: 0 0 10px rgba(128, 255, 128, 0.8);
    }
    .section-gems .dot {
        background-color: rgba(96, 165, 250, 0.5);
    }
    .section-gems .dot:hover {
        background-color: rgba(96, 165, 250, 0.7);
    }
    .section-gems .dot.active {
        background-color: var(--neon-blue);
        box-shadow: 0 0 10px rgba(96, 165, 250, 0.8);
    }
    /* آیکون SVG */
    .icon {
        width: 1rem;
        height: 1rem;
    }
    @media (min-width: 640px) {
        .px-3 { padding-left: 2rem; padding-right: 2rem; }
        .py-10 { padding-top: 5rem; padding-bottom: 5rem; }
        .text-3xl { font-size: 3.75rem; }
        .gem-amount { font-size: 2rem; }
        .buy-btn { padding: 0.75rem; font-size: 1rem; }
        .fade-gradient { width: 3.5rem; }
    }
        /* استایل‌های هدر اصلی */
    .main-header {
        width: 100%;
        max-width: 1280px;
        margin: 0 auto 30px auto; /* فاصله از بالا و پایین */
        padding: 0 20px;
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(30, 41, 59, 0.6);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 25px;
        border-radius: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .logo-area {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo-icon {
        font-size: 2rem;
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    }

    .site-title {
        font-size: 1.5rem;
        font-weight: 800;
        color: #fff;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .highlight {
        color: var(--neon-green);
        text-shadow: 0 0 15px rgba(74, 222, 128, 0.6);
    }

    .header-btn {
        background-color: var(--neon-green);
        color: #000;
        padding: 10px 20px;
        border-radius: 9999px;
        text-decoration: none;
        font-weight: 700;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        box-shadow: 0 0 15px rgba(74, 222, 128, 0.4);
    }

    .header-btn:hover {
        background-color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    }

    /* برای موبایل */
    @media (max-width: 600px) {
        .header-content {
            flex-direction: column;
            gap: 15px;
            text-align: center;
        }
        .site-title {
            font-size: 1.25rem;
        }
    }