

/* For - All */
table, td, th {
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
}
* {
            font-family: 'Vazirmatn', sans-serif;
            box-sizing: border-box;
        }

        body {
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        .gradient-bg {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #bbf7d0 100%);
            position: relative;
        }

        .gradient-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 80%, rgba(132, 204, 22, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(94, 234, 212, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .card-advanced {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
            position: relative;
            overflow: hidden;
        }

        .card-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.6s ease;
        }

        .card-advanced:hover::before {
            left: 100%;
        }

        .card-advanced:hover {
            transform: translateY(-10px) rotateX(5deg) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .btn-premium {
            background: linear-gradient(135deg, #a7f3d0 0%, #6ee7b7 100%);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            color: #065f46;
            box-shadow: 0 15px 30px rgba(167, 243, 208, 0.3);
        }

        .btn-premium::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .btn-premium:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-premium:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 20px 40px rgba(94, 234, 212, 0.5);
        }

        .btn-premium:active {
            transform: translateY(-1px) scale(1.02);
        }

        .text-gradient-advanced {
            background: linear-gradient(135deg, #065f46 0%, #10b981 50%, #34d399 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% 200%;
            animation: gradientShift 3s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        .phone-premium {
            width: 280px;
            height: 560px;
            background: linear-gradient(145deg, #1f2937, #374151, #4b5563);
            border-radius: 35px;
            padding: 25px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            position: relative;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .phone-premium::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #6b7280, #9ca3af, #6b7280);
            border-radius: 2px;
        }

        .phone-premium:hover {
            transform: translateY(-15px) rotateX(10deg) rotateY(-5deg);
            box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
        }

        .screen-premium {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #052e2b, #064e3b, #065f46);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .screen-premium::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
        }

        .float-advanced {
            animation: floatAdvanced 4s ease-in-out infinite;
        }

        @keyframes floatAdvanced {
            0%, 100% {
                transform: translateY(0px) rotateZ(0deg);
            }
            25% {
                transform: translateY(-15px) rotateZ(1deg);
            }
            50% {
                transform: translateY(-25px) rotateZ(0deg);
            }
            75% {
                transform: translateY(-15px) rotateZ(-1deg);
            }
        }

        .particles-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: radial-gradient(circle, rgba(34, 197, 94, 0.8), transparent);
            border-radius: 50%;
            animation: particleFloat 8s linear infinite;
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) translateX(100px) rotate(360deg);
                opacity: 0;
            }
        }

        .reveal-up, .reveal-left, .reveal-right {
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .reveal-up {
            transform: translateY(50px);
        }

        .reveal-left {
            transform: translateX(-50px);
        }

        .reveal-right {
            transform: translateX(50px);
        }

        .reveal-up.revealed, .reveal-left.revealed, .reveal-right.revealed {
            opacity: 1;
            transform: translate(0);
        }

        .icon-bounce {
            animation: iconBounce 2s ease-in-out infinite;
        }

        @keyframes iconBounce {
            0%, 100% {
                transform: scale(1) rotate(0deg);
            }
            50% {
                transform: scale(1.1) rotate(5deg);
            }
        }

        .glow-blue {
            box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
            transition: box-shadow 0.3s ease;
        }

        .glow-blue:hover {
            box-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
        }

        .loading-bar {
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #a7f3d0, #6ee7b7, #a7f3d0);
            background-size: 200% 100%;
            animation: loadingShine 2s ease-in-out infinite;
        }

        @keyframes loadingShine {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        /* Responsive optimizations */
        .section-padding {
            padding: 5rem 0;
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 3rem 0;
            }

            .phone-premium {
                width: 220px;
                height: 440px;
                padding: 20px;
            }

            .card-advanced:hover {
                transform: translateY(-5px) scale(1.01);
            }
        }

        /* Performance optimizations */
        .will-change-transform {
            will-change: transform;
        }

        .gpu-accelerated {
            transform: translateZ(0);
            backface-visibility: hidden;
            perspective: 1000px;
        }

        /* Custom scrollbar — green */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #ecfdf5;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #22c55e, #34d399);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #16a34a, #10b981);
        }




/* For - Buying */



 .glass {
                        background: rgba(255, 255, 255, 0.1);
                        border-radius: 16px;
                        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
                        backdrop-filter: blur(10px);
                        -webkit-backdrop-filter: blur(10px);
                        border: 1px solid rgba(255, 255, 255, 0.3);
                        color: #fff;
                    }
                    .glass-card {
                        background: rgba(255, 255, 255, 0.05);
                        border-radius: 12px;
                        border: 1px solid rgba(255, 255, 255, 0.2);
                    }
                    .glass-button {
                        position: relative;
                        overflow: hidden;
                        z-index: 1;
                    }
                    .glass-button::before {
                        content: '';
                        position: absolute;
                        top: 0;
left: -100%;
                        width: 100%;
                        height: 100%;
                        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
                        transition: all 0.5s;
                        z-index: -1;
                    }
                    .glass-button:hover::before {
                        left: 100%;
                    }
                    .premium-gradient {
                        background: linear-gradient(45deg, #10b981, #34d399);
                    }



.error-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.error-content {
  background: #fff;
  padding: 25px 30px;
  border-radius: 14px;
  text-align: center;
  max-width: 380px;
  width: 90%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  animation: fadeIn .3s ease;
}
.error-icon {
  font-size: 40px;
  margin-bottom: 10px;
}
.error-content h3 {
  margin-bottom: 12px;
  color: #dc2626;
  font-size: 20px;
}
.error-content p {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}


.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.success-content {
  background: #fff;
  padding: 25px 30px;
  border-radius: 14px;
  text-align: center;
  max-width: 380px;
  width: 90%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  animation: fadeIn .3s ease;
}
.success-icon {
  font-size: 40px;
  margin-bottom: 10px;
  color: #16a34a;
}
.success-content h3 {
  margin-bottom: 12px;
  color: #16a34a;
  font-size: 20px;
}
.success-content p {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}








.success-text {
  color: #16a34a;
  font-weight: bold;
  font-size: 16px;
  margin-top: 20px;
}
.error-text {
  color: #dc2626;
  font-weight: bold;
  font-size: 16px;
  margin-top: 20px;
}


                /* چهار سرویس بیرون از منو */
                .service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-btn {
  width: 100%;
  text-align: right;
  padding: 12px 15px;
  font-size: 15px;
  border: 2px solid var(--primary);
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  color: var(--text-color, #fff);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.service-btn i {
  font-size: 18px;
}

.service-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.show-more-btn {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 6px;
  background: var(--secondary, #444);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.show-more-btn:hover {
  background: var(--primary);
}


                /* رنگ آیکن‌ها */
                .icon-telegram i { color: #229ED9; }
                .icon-instagram i { color: #E1306C; }
                .icon-whatsapp i { color: #25D366; }
                .icon-x i { color: #000000; }
                .icon-line i { color: #00C300; }
                .icon-snapchat i { color: #FFFC00; }

                /* دکمه نمایش بیشتر */
                .show-more-btn {
                    width: 100%;
                    padding: 10px;
                    border: 1px solid var(--glass-border, rgba(255,255,255,0.25));
                    border-radius: var(--radius, 8px);
                    background: rgba(255,255,255,0.08);
                    color: var(--text-color, #fff);
                    font-size: 14px;
                    cursor: pointer;
                    transition: background 0.2s ease, border-color 0.2s ease;
                }

                .show-more-btn:hover {
                    background: rgba(255,255,255,0.15);
                }

                #dropdownWrapper {
                    display: none;
                    position: relative;
                    margin-bottom: 10px; /* فاصله از سرویس‌های اصلی */
                    width: 100%;
                    max-height: 300px;
                    overflow-y: auto;
                    background: #ffffff;
                    border: 1px solid var(--glass-border);
                    border-radius: var(--radius);
                    box-shadow: var(--shadow-card);
                }

                #dropdownWrapper.open {
                    display: block !important;
                }



                .dropdown-service-list {
                    list-style: none;
                    padding: 8px;
                    margin: 0;
                    display: flex;
                    flex-direction: column;
                    gap: 8px;
                }





                /* والد منو */
.dropdown-area {
  position: relative;
}



.loading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: var(--text-secondary);
}

.loader-dots {
  display: flex;
  gap: 6px;
}

.loader-dots span {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}

.loader-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.loader-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  to {
    transform: translateY(-8px);
    opacity: 0.7;
  }
}

@keyframes spin { to { transform: rotate(360deg); } }





/* کادر اصلی جدول */
#tableContainer {
  max-height: 500px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--gradient-card);
  box-shadow: var(--shadow-card);
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* بخش اسکرول داخلی */
.table-scroll-inner {
    flex: 1;
    max-height: 550px;
    overflow-y: auto;
    overflow-x: auto; /* در موبایل اجازه اسکرول افقی بده */
    border-radius: inherit;
    padding: 8px;
}

/* حالت پیش‌فرض */
.empty-state {
    text-align: center;
    padding: 50px 20px;
    color: var(--text-primary);
}

.empty-icon {
    font-size: 60px;
    margin-bottom: 15px;
    display: inline-block;
    width: 60px;   /* باکس ثابت */
    height: 60px;  /* باکس ثابت */
    line-height: 60px; /* وسط‌چین شدن ایموجی */
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%   { transform: scale(1); opacity: 0.8; }
    50%  { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}


/* ریسپانسیو فونت‌ها و فاصله‌ها */
@media (max-width: 768px) {
  .empty-state {
    padding: 30px 15px;
  }
  .empty-state h3 {
    font-size: 16px;
  }
  .empty-state p {
    font-size: 13px;
  }
}

                
/* جدول */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: var(--text-primary);
  table-layout: auto;
}

/* هدر جدول */
.styled-table thead {
  background: var(--gradient-primary);
  color: var(--text-primary);
  position: sticky;
  top: 0;
  z-index: 2;
}

.styled-table th {
  padding: 10px;          /* کمتر از قبل */
  font-size: 13px;        /* کوچیک‌تر از بدنه */
  font-weight: 600;       /* کمی بولد برای تمایز */
  text-align: right;
  white-space: nowrap;    /* جلوگیری از شکستن متن */
}

/* بدنه جدول */
.styled-table td {
  padding: 10px;
  font-size: 13px;
  text-align: right;
  white-space: nowrap;
}

/* ریسپانسیو تبلت */
@media (max-width: 768px) {
  .styled-table th,
  .styled-table td {
    font-size: 12px;
    padding: 6px 8px;
  }
}

/* ریسپانسیو موبایل */
@media (max-width: 480px) {
  .styled-table th,
  .styled-table td {
    font-size: 11px;
    padding: 4px 6px;
  }
}


/* ردیف‌ها */
.styled-table tbody tr {
  border-bottom: 1px solid var(--glass-border);
}
.styled-table tbody tr:last-child {
  border-bottom: none;
}
.styled-table tbody tr:nth-child(even) {
  background: var(--glass-hover);
}
.styled-table tbody tr:hover {
  background: rgba(34, 197, 94, 0.15);
  cursor: pointer;
}

/* ریسپانسیو تبلت و موبایل */
@media (max-width: 768px) {
  .styled-table th,
  .styled-table td {
    font-size: 11px;
    padding: 4px 6px;
  }
  .styled-table td:nth-child(1) { /* ستون کشور */
    max-width: 90px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .styled-table td:nth-child(2), /* موجودی */
  .styled-table td:nth-child(3) { /* قیمت */
    max-width: 70px;
  }
  .buy-btn {
    font-size: 11px;
    padding: 3px 6px;
  }
}


/* کانتینر اسکرول برای موبایل */
.table-scroll-inner {
  overflow-x: auto;
}







                :root {
                    --primary: #22c55e;
                    --primary-dark: #16a34a;
                    --primary-light: #6ee7b7;
                    --secondary: #34d399;
                    --accent: #bbf7d0;
                    --success: #10b981;
                    --warning: #facc15;
                    --danger: #ef4444;
                    --info: #2dd4bf;
                    --dark: #052e2b;
                    --dark-card: #064e3b;
                    --dark-lighter: #065f46;
                    --dark-select: #0f766e;
                    --text-primary: #ffffff;
                    --text-secondary: #d1fae5;
                    --text-muted: #6b7280;
                    --text-accent: #34d399;
                    --glass-bg: rgba(6, 94, 70, 0.85);
                    --glass-border: rgba(34, 197, 94, 0.25);
                    --glass-hover: rgba(34, 197, 94, 0.1);
                    --shadow-glow: 0 0 50px rgba(34, 197, 94, 0.4);
                    --shadow-card: 0 15px 50px rgba(0, 0, 0, 0.5);
                    --shadow-hover: 0 25px 80px rgba(34, 197, 94, 0.3);
                    --radius: 16px;
                    --radius-lg: 24px;
                    --radius-xl: 32px;
                    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
                    --gradient-primary: linear-gradient(135deg, #22c55e 0%, #34d399 100%);
                    --gradient-secondary: linear-gradient(135deg, #a7f3d0 0%, #6ee7b7 100%);
                    --gradient-accent: linear-gradient(135deg, #bbf7d0 0%, #d1fae5 100%);
                    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
                    --gradient-bg: linear-gradient(135deg, #052e2b 0%, #064e3b 30%, #065f46 70%, #0f766e 100%);
                    --gradient-card: linear-gradient(145deg, rgba(6, 94, 70, 0.9), rgba(5, 46, 43, 0.8));
                    --blur-strong: blur(25px);
                    --blur-medium: blur(15px);
                    --blur-light: blur(8px);
                     --toast-width: 24rem;
      --toast-radius: 16px;
      --toast-shadow: 0 12px 30px rgba(0,0,0,.18);
      --toast-duration: 4s;
                }


                .main-layout {
  display: flex;
  gap: 20px;
}

/* دسکتاپ: سایدبار چپ، جدول راست */
.sidebar-left {
  flex: 0 0 280px;
}
.content-area {
  flex: 1;
}

/* موبایل: زیر هم */
@media (max-width: 768px) {
  .main-layout {
    flex-direction: column; /* تغییر جهت به ستونی */
  }
  .sidebar-left,
  .content-area {
    width: 100%;
    flex: none;
  }
  
}

                

                .glass-card {
                    background: var(--gradient-card);
                    backdrop-filter: var(--blur-strong);
                    border: 1px solid var(--glass-border);
                    border-radius: var(--radius-lg);
                    overflow: visible;
                    transition: var(--transition);
                    margin-bottom: 1rem;
                    box-shadow: var(--shadow-card);
                    position: relative;
                }

                .glass-card::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    height: 1px;
                    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.5), transparent);
                    opacity: 0;
                    transition: var(--transition);
                }

                .glass-card:hover {
                    transform: translateY(-5px);
                    box-shadow: var(--shadow-hover);
                    border-color: var(--primary);
                }

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

                .card-header {
                    padding: 1rem;
                    border-bottom: 1px solid var(--glass-border);
                    background: rgba(34, 197, 94, 0.08);
                }

                .card-title {
                    font-size: 1rem;
                    font-weight: 700;
                    color: var(--text-primary);
                    display: flex;
                    align-items: center;
                    gap: 0.5rem;
                }

                .card-icon {
                    width: 30px;
                    height: 30px;
                    background: var(--gradient-primary);
                    color: white;
                    border-radius: 8px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 1rem;
                    flex-shrink: 0;
                }

                .card-body {
                    padding: 1rem;
                }

                .form-section {
                    margin-bottom: 1rem;
                }

                .section-title {
                    font-size: 0.875rem;
                    font-weight: 600;
                    color: var(--text-secondary);
                    margin-bottom: 0.75rem;
                    display: flex;
                    align-items: center;
                    gap: 0.5rem;
                }

                .form-group {
                    margin-bottom: 1rem;
                }

                .form-label {
                    display: block;
                    font-size: 0.8125rem;
                    font-weight: 600;
                    color: var(--text-secondary);
                    margin-bottom: 0.5rem;
                }

                .form-control {
                    width: 100%;
                    padding: 0.75rem;
                    background: var(--dark-card);
                    border: 2px solid var(--glass-border);
                    border-radius: var(--radius);
                    color: var(--text-primary);
                    font-size: 0.8125rem;
                    font-family: inherit;
                    transition: var(--transition);
                    font-weight: 500;
                }

                .form-control:focus {
                    outline: none;
                    border-color: var(--primary);
                    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
                    background: var(--dark-lighter);
                }

                .form-control:hover {
                    border-color: var(--primary-light);
                }

                /* استایل دراپ‌داون */
                select.form-control {
                    appearance: none;
                    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d1fae5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
                    background-repeat: no-repeat;
                    background-position: left 1rem center;
                    background-size: 0.875rem;
                    padding-left: 2.5rem;
                    cursor: pointer;
                    background-color: var(--dark-card);
                }

                select.form-control:focus {
                    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
                    background-color: var(--dark-lighter);
                }

                select.form-control option {
                    background-color: var(--dark-card) !important;
                    color: var(--text-primary) !important;
                    padding: 0.75rem !important;
                    font-weight: 500 !important;
                }

                select.form-control option:checked,
                select.form-control option:hover,
                select.form-control option:focus {
                    background-color: var(--primary) !important;
                    background: var(--primary) !important;
                    color: white !important;
                }

                /* دکمه‌ها */
                .btn {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    gap: 0.5rem;
                    padding: 0.75rem 1.25rem;
                    border: none;
                    border-radius: var(--radius);
                    font-size: 0.8125rem;
                    font-weight: 600;
                    font-family: inherit;
                    cursor: pointer;
                    transition: var(--transition);
                    text-decoration: none;
                    position: relative;
                    overflow: hidden;
                }

                .btn-primary {
                    background: var(--gradient-primary);
                    color: white;
                    box-shadow: var(--shadow-glow);
                }

                .btn-primary:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.4);
                }

                .btn-primary:active {
                    transform: translateY(0);
                }

                .btn-secondary {
                    background: rgba(255, 255, 255, 0.1);
                    color: var(--text-primary);
                    border: 1px solid var(--glass-border);
                }

                .btn-secondary:hover {
                    background: rgba(255, 255, 255, 0.15);
                    transform: translateY(-2px);
                }

                .btn-lg {
                    padding: 1rem 1.5rem;
                    font-size: 0.9375rem;
                    font-weight: 700;
                }

                .btn-block {
                    width: 100%;
                }

                /* نمایش کانفیگ بهبود یافته */
                .config-section {
                    position: relative;
                }

                .config-header {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin-bottom: 1.5rem;
                    flex-wrap: wrap;
                    gap: 1rem;
                }

                .status-indicator {
                    display: flex;
                    align-items: center;
                    gap: 0.5rem;
                    padding: 0.4rem 0.75rem;
                    background: rgba(16, 185, 129, 0.1);
                    border: 1px solid rgba(16, 185, 129, 0.3);
                    border-radius: var(--radius);
                    color: var(--success);
                    font-size: 0.6875rem;
                    font-weight: 600;
                }

                .config-textarea {
                    width: 100%;
                    height: 400px;
                    padding: 1.25rem;
                    background: var(--dark-card);
                    border: 2px solid var(--glass-border);
                    border-radius: var(--radius);
                    color: var(--text-secondary);
                    font-family: 'JetBrains Mono', monospace;
                    font-size: 0.75rem;
                    line-height: 1.6;
                    resize: vertical;
                    transition: var(--transition);
                }

                .config-textarea:focus {
                    outline: none;
                    border-color: var(--primary);
                    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
                }

                .config-textarea::placeholder {
                    color: var(--text-muted);
                    line-height: 1.8;
                }

                /* نوار عملیات */
                .action-bar {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                    gap: 1rem;
                    margin-top: 1.5rem;
                }

                /* فوتر */
                .footer-section h4 {
                    color: var(--text-primary);
                    font-size: 1.1rem;
                    font-weight: 700;
                    margin-bottom: 1rem;
                    display: flex;
                    align-items: center;
                    gap: 0.5rem;
                }

                /* استایل نوار اسکرول فقط برای وب‌کیت (Chrome, Edge, Safari) */
                #dropdownWrapper::-webkit-scrollbar {
                    width: 8px; /* ضخامت نوار */
                }

                #dropdownWrapper::-webkit-scrollbar-track {
                    background: #f0f4f8; /* پس‌زمینه مسیر */
                    border-radius: 8px;
                }

                #dropdownWrapper::-webkit-scrollbar-thumb {
                    background: linear-gradient(180deg, #6366f1, #8b5cf6); /* رنگ گرادینت زیبا */
                    border-radius: 8px;
                }

                #dropdownWrapper::-webkit-scrollbar-thumb:hover {
                    background: linear-gradient(180deg, #4f46e5, #7c3aed); /* تغییر رنگ در هاور */
                }

                /* برای فایرفاکس */
                #dropdownWrapper {
                    scrollbar-color: #6366f1 #f0f4f8;
                    scrollbar-width: thin;
                }

                /* استایل آیتم‌های لیست */
                #dropdownWrapper ul li button {
                    background: white;
                    color: #374151;
                    font-weight: 500;
                    transition: all 0.25s ease;
                    border-radius: 0.5rem;
                }

                #dropdownWrapper ul li button:hover {
                    background: linear-gradient(90deg, #eef2ff, #f5f3ff);
                    color: #4f46e5;
                    transform: translateX(-4px); /* کمی به چپ حرکت کند */
                }

                /* استایل دکمه انتخاب سرویس */
                #serviceButton {
                    background: linear-gradient(90deg, #6366f1, #8b5cf6);
                    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
                }

                #serviceButton:hover {
                    background: linear-gradient(90deg, #4f46e5, #7c3aed);
                    transform: scale(1.03);
                }


/* For - Buying */

/* Message - Success */
/* حالت اولیه — قبل از انیمیشن */
/* انیمیشن ورود */










