/*
Theme Name: CNJIM
Description: قالب دارک مینیمال با بوت استرپ و انیمیشن‌های پیشرفته
Version: 1.0
Author: CNJIM Team
Text Domain: cnjim
*/
/* CSS Variables for Dark Minimal Theme */
:root {
    /* Typography - فونت‌ها */
    --font-primary: 'IRANYekanX', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-display: 'IRANYekanX', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 16px;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    /* Dark Color Palette */
    --color-primary: #ffffff;
    --color-secondary: #f8f9fa;
    --color-accent: #6c63ff;
    --color-accent-hover: #5a52d5;
    /* Dark Backgrounds */
    --bg-primary: #000000;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: #151515;
    --bg-hover: #202020;
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #666666;
    --text-inverse: #000000;
    /* Border Colors */
    --border-primary: #333333;
    --border-secondary: #2a2a2a;
    --border-accent: #444444;
    /* Shadow Colors */
    --shadow-light: rgba(255, 255, 255, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.3);
    --shadow-heavy: rgba(0, 0, 0, 0.5);
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    --gradient-accent: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    /* Transitions */
    --transition-fast: 0.15s ease-out;
    --transition-normal: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: auto; /* Changed to auto, JS handles smooth scroll */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    color: var(--text-primary);
    background-color: #000000;
    background-image: none;
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
    /* Performance optimizations */
    backface-visibility: hidden;
    perspective: 1000px;
}
/* Ensure all elements use Persian font */
h1, h2, h3, h4, h5, h6,
p, a, span, div, button,
input, textarea, select, label {
    font-family: var(--font-primary) !important;
}
/* Bootstrap Override for Dark Theme */
.bg-dark {
    background-color: var(--bg-secondary) !important;
}
.bg-primary {
    background-color: var(--color-accent) !important;
}
.text-light {
    color: var(--text-primary) !important;
}
.text-muted {
    color: var(--text-muted) !important;
}
.border {
    border-color: var(--border-primary) !important;
}
/* Custom Dark Components */
.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 8px var(--shadow-medium);
}
.card:hover {
    box-shadow: 0 8px 16px var(--shadow-heavy);
}
.btn {
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-medium);
    border: none;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--gradient-accent);
    color: var(--text-primary);
}
.btn-primary:hover {
    background: var(--color-accent-hover);
    box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
}
.btn-outline-primary {
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    background: transparent;
}
.btn-outline-primary:hover {
    background: var(--color-accent);
    color: var(--text-primary);
}
.btn-dark {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    color: var(--text-primary);
}
.btn-dark:hover {
    background-color: var(--bg-hover);
    border-color: var(--border-accent);
}
/* Form Controls */
.form-control {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    color: var(--text-primary);
    border-radius: var(--radius-md);
}
.form-control:focus {
    background-color: var(--bg-tertiary);
    border-color: var(--color-accent);
    box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.25);
    color: var(--text-primary);
}
.form-control::placeholder {
    color: var(--text-muted);
}
/* Navigation */
.navbar {
    background-color: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-primary);
}
.navbar-brand {
    color: var(--text-primary) !important;
    font-weight: var(--font-weight-bold);
}
.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
}
.navbar-nav .nav-link:hover {
    color: var(--color-accent) !important;
}
/* Utilities */
.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bg-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.shadow-glow {
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.3);
}
/* Animation Classes */
.fade-in {
    opacity: 0;
}
.slide-up {
    opacity: 0;
}
.scale-in {
    opacity: 0;
}
/* Keyframe Animations */
/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-accent);
    z-index: var(--z-fixed);
}
/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-hover);
}
/* Selection */
::selection {
    background: var(--color-accent);
    color: var(--text-primary);
}
::-moz-selection {
    background: var(--color-accent);
    color: var(--text-primary);
}
/* ===== PLATFORMS SECTION STYLES ===== */
/* Platforms Section */
.platforms-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}
/* Platforms Background */
.platforms-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
.platforms-background .bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: blur(2px);
}
/* Platforms Content */
.platforms-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
/* Platforms Box */
.platforms-box {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%),
        rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}
.platforms-box:hover {
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.4),
        0 12px 30px rgba(0, 0, 0, 0.3),
        inset 0 3px 0 rgba(255, 255, 255, 0.25),
        inset 0 -3px 0 rgba(0, 0, 0, 0.05);
}
/* Platforms Title */
.platforms-title {
    margin-bottom: 30px;
}
.platforms-title .title-text {
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    margin: 0;
}
/* Social Icons Grid */
.social-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    justify-items: center;
}
/* Social Icon */
.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%),
        rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 3px 10px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
   
    justify-content: center;
}
.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}
.social-icon:hover::before {
    left: 100%;
}
.social-icon:hover {
    color: rgba(255, 255, 255, 1);
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%),
        rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.25),
        0 6px 15px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.25),
        inset 0 -2px 0 rgba(0, 0, 0, 0.05);
}
.social-icon .icon-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8;
}
.social-icon:hover .icon-label {
    opacity: 1;
}
/* Platform-specific colors for main section */
.social-icon.instagram:hover { color: #E4405F; }
.social-icon.instagram:hover {
    background: 
        linear-gradient(145deg, rgba(228, 64, 95, 0.12) 0%, rgba(228, 64, 95, 0.06) 100%),
        rgba(228, 64, 95, 0.08);
    box-shadow: 
        0 15px 40px rgba(228, 64, 95, 0.2),
        0 6px 15px rgba(228, 64, 95, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.25),
        inset 0 -2px 0 rgba(0, 0, 0, 0.05);
}
.social-icon.telegram:hover { color: #0088CC; }
.social-icon.telegram:hover {
    background: 
        linear-gradient(145deg, rgba(0, 136, 204, 0.12) 0%, rgba(0, 136, 204, 0.06) 100%),
        rgba(0, 136, 204, 0.08);
    box-shadow: 
        0 15px 40px rgba(0, 136, 204, 0.2),
        0 6px 15px rgba(0, 136, 204, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.25),
        inset 0 -2px 0 rgba(0, 0, 0, 0.05);
}
.social-icon.youtube:hover { color: #FF0000; }
.social-icon.youtube:hover {
    background: 
        linear-gradient(145deg, rgba(255, 0, 0, 0.12) 0%, rgba(255, 0, 0, 0.06) 100%),
        rgba(255, 0, 0, 0.08);
    box-shadow: 
        0 15px 40px rgba(255, 0, 0, 0.2),
        0 6px 15px rgba(255, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.25),
        inset 0 -2px 0 rgba(0, 0, 0, 0.05);
}
.social-icon.spotify:hover { color: #1DB954; }
.social-icon.spotify:hover {
    background: 
        linear-gradient(145deg, rgba(29, 185, 84, 0.12) 0%, rgba(29, 185, 84, 0.06) 100%),
        rgba(29, 185, 84, 0.08);
    box-shadow: 
        0 15px 40px rgba(29, 185, 84, 0.2),
        0 6px 15px rgba(29, 185, 84, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.25),
        inset 0 -2px 0 rgba(0, 0, 0, 0.05);
}
.social-icon.apple:hover { color: #000000; }
.social-icon.apple:hover {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%),
        rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 15px 40px rgba(255, 255, 255, 0.1),
        0 6px 15px rgba(255, 255, 255, 0.08),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.05);
}
.social-icon.soundcloud:hover { color: #FF5500; }
.social-icon.soundcloud:hover {
    background: 
        linear-gradient(145deg, rgba(255, 85, 0, 0.12) 0%, rgba(255, 85, 0, 0.06) 100%),
        rgba(255, 85, 0, 0.08);
    box-shadow: 
        0 15px 40px rgba(255, 85, 0, 0.2),
        0 6px 15px rgba(255, 85, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.25),
        inset 0 -2px 0 rgba(0, 0, 0, 0.05);
}
/* Responsive Design */
/* Print Styles */
/* Accessibility */
/* Focus Styles */
*:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}
/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================
   PREMIUM MINIMAL HEADER - هدر پریمیوم مینیمال
   ========================================== */

/* Base Header */
.premium-header {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.06) 100%
    );
    border-radius: 32px;
    pointer-events: none;
    opacity: 0.6;
}

.premium-header.scrolled {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

/* Header Container */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 28px;
    height: 64px;
    position: relative;
    z-index: 2;
}

/* Logo - Left Side */
.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 3;
}

.logo-img {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-primary);
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Desktop Navigation - Center */
.header-nav {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 36px;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    font-family: var(--font-primary);
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.5) 100%);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-menu a:hover::before {
    width: 100%;
}

/* Desktop Social - Right Side */
.header-social {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    z-index: 3;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    font-size: 19px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.05);
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    flex-shrink: 0;
    z-index: 3;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.bar {
    width: 22px;
    height: 2.5px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ==========================================
   FULLSCREEN MOBILE MENU - منوی موبایل
   ========================================== */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    overflow-y: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 100px 30px 60px;
    position: relative;
}

/* Close Button */
.menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.menu-close:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Mobile Navigation */
.mobile-nav {
    margin-bottom: 60px;
    width: 100%;
    max-width: 500px;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mobile-nav-menu li {
    margin: 0;
    padding: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-nav-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 26px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    direction: rtl;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-menu a span {
    flex: 1;
    text-align: right;
}

.mobile-nav-menu a i {
    font-size: 30px;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 18px;
    transition: all 0.3s ease;
}

.mobile-nav-menu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
}

.mobile-nav-menu a:hover i {
    opacity: 1;
    color: #ffffff;
    transform: scale(1.1);
}

/* Mobile Social */
.mobile-social {
    width: 100%;
    max-width: 500px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-social-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 28px 0;
    text-align: center;
    letter-spacing: 0.15em;
    font-family: var(--font-primary);
    text-transform: uppercase;
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.mobile-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-social-icon:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.15);
}

/* ==========================================
   HEADER RESPONSIVE - رسپانسیو هدر
   ========================================== */

/* Tablets & Below (991px and down) */
@media (max-width: 991px) {
    .premium-header {
        top: 16px;
        left: 16px;
        right: 16px;
        border-radius: 26px;
    }
    
    .header-container {
        padding: 12px 24px;
        height: 60px;
    }
    
    /* Hide Desktop Nav & Social */
    .header-nav,
    .header-social {
        display: none;
    }
    
    /* Show Mobile Toggle */
    .menu-toggle {
        display: flex;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    /* Mobile Menu Adjustments */
    .mobile-menu-content {
        padding: 90px 25px 50px;
    }
    
    .menu-close {
        top: 25px;
        right: 25px;
        width: 48px;
        height: 48px;
        font-size: 26px;
    }
    
    .mobile-nav-menu a {
        font-size: 24px;
        padding: 20px 24px;
    }
    
    .mobile-nav-menu a i {
        font-size: 28px;
    }
    
    .mobile-social-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
}

/* Mobile & Small Tablets (768px and down) */
@media (max-width: 768px) {
    .premium-header {
        top: 14px;
        left: 14px;
        right: 14px;
        border-radius: 22px;
    }
    
    .header-container {
        padding: 10px 20px;
        height: 56px;
    }
    
    .menu-toggle {
        width: 40px;
        height: 40px;
    }
    
    .bar {
        width: 20px;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .logo-text {
        font-size: 17px;
    }
    
    .mobile-menu-content {
        padding: 80px 22px 45px;
    }
    
    .menu-close {
        top: 22px;
        right: 22px;
        width: 46px;
        height: 46px;
        font-size: 24px;
    }
    
    .mobile-nav {
        margin-bottom: 50px;
    }
    
    .mobile-nav-menu {
        gap: 12px;
    }
    
    .mobile-nav-menu a {
        font-size: 22px;
        padding: 18px 22px;
    }
    
    .mobile-nav-menu a i {
        font-size: 26px;
        margin-right: 16px;
    }
    
    .mobile-social {
        padding-top: 35px;
    }
    
    .mobile-social-title {
        margin-bottom: 24px;
    }
    
    .mobile-social-links {
        gap: 18px;
    }
    
    .mobile-social-icon {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }
}

/* Small Mobile (576px and down) */
@media (max-width: 576px) {
    .premium-header {
        top: 12px;
        left: 12px;
        right: 12px;
        border-radius: 20px;
    }
    
    .header-container {
        padding: 9px 18px;
        height: 52px;
    }
    
    .menu-toggle {
        width: 38px;
        height: 38px;
        gap: 4px;
    }
    
    .bar {
        width: 19px;
        height: 2px;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .mobile-menu-content {
        padding: 75px 20px 40px;
    }
    
    .menu-close {
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
    
    .mobile-nav {
        margin-bottom: 45px;
    }
    
    .mobile-nav-menu {
        gap: 10px;
    }
    
    .mobile-nav-menu a {
        font-size: 20px;
        padding: 16px 20px;
        border-radius: 16px;
    }
    
    .mobile-nav-menu a i {
        font-size: 24px;
        margin-right: 14px;
    }
    
    .mobile-social {
        padding-top: 32px;
    }
    
    .mobile-social-title {
        font-size: 13px;
        margin-bottom: 22px;
    }
    
    .mobile-social-links {
        gap: 16px;
    }
    
    .mobile-social-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
}

/* Extra Small Mobile (400px and down) */
@media (max-width: 400px) {
    .premium-header {
        top: 10px;
        left: 10px;
        right: 10px;
        border-radius: 18px;
    }
    
    .header-container {
        padding: 8px 16px;
        height: 50px;
    }
    
    .menu-toggle {
        width: 36px;
        height: 36px;
        gap: 4px;
    }
    
    .bar {
        width: 18px;
        height: 2px;
    }
    
    .logo-img {
        height: 26px;
    }
    
    .logo-text {
        font-size: 15px;
    }
    
    .mobile-menu-content {
        padding: 70px 18px 38px;
    }
    
    .menu-close {
        top: 18px;
        right: 18px;
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
    
    .mobile-nav {
        margin-bottom: 40px;
    }
    
    .mobile-nav-menu {
        gap: 9px;
    }
    
    .mobile-nav-menu a {
        font-size: 18px;
        padding: 15px 18px;
        border-radius: 14px;
    }
    
    .mobile-nav-menu a i {
        font-size: 22px;
        margin-right: 12px;
    }
    
    .mobile-social {
        padding-top: 30px;
    }
    
    .mobile-social-title {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .mobile-social-links {
        gap: 14px;
    }
    
    .mobile-social-icon {
        width: 54px;
        height: 54px;
        font-size: 20px;
    }
}

/* Mobile Header Responsive */
/* ==========================================
   RTL SUPPORT - پشتیبانی راست به چپ
   ========================================== */
.rtl .header-logo {
    order: 3; /* سمت راست در RTL */
}
.rtl .main-navigation {
    order: 2; /* وسط */
}
.rtl .header-social {
    order: 1; /* سمت چپ در RTL */
}
/* ==========================================
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.glass-header.scrolled::before {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.8) 0%, 
        rgba(10, 10, 10, 0.9) 100%
    );
}
/* Header Hide/Show Animation */
.glass-header.header-hidden {
    opacity: 0;
}
/* Loading States */
.glass-header {
    opacity: 0;
}
.glass-header.header-loaded {
    opacity: 1;
}
/* Enhanced Social Icons */
.social-icon.hovered {
    background: rgba(108, 99, 255, 0.3);
    border-color: rgba(108, 99, 255, 0.5);
    box-shadow: 
        0 12px 32px rgba(108, 99, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
/* Menu Item Active States */
.glass-menu a.active {
    background: rgba(108, 99, 255, 0.2);
    border: 1px solid rgba(108, 99, 255, 0.4);
    color: #ffffff;
    box-shadow: 
        0 4px 16px rgba(108, 99, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
/* Body Classes for Menu States */
body.menu-open {
    overflow: hidden;
}
body.menu-open .glass-header {
    z-index: 1002;
}
/* Enhanced Mobile Menu Animation */
/* Accessibility Improvements */
/* High Contrast Mode */
/* Focus Visible Support */
.social-icon:focus-visible,
.glass-menu a:focus-visible,
.mobile-menu-toggle:focus-visible {
    outline: 2px solid #6c63ff;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.3);
}


/* ==========================================
   HERO SECTION - هیروسکشن مینیمال و جذاب
   ========================================== */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 110px;
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.75) 50%,
        rgba(0, 0, 0, 0.88) 100%
    );
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 1) 100%
    );
    z-index: 2;
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 180px);
}

/* ==========================================
   HERO CONTENT - محتوای سمت چپ
   ========================================== */

.hero-content {
    position: relative;
    padding: 40px 0;
}

.hero-title {
    font-size: 56px;
    font-weight: 400;
    line-height: 1.3;
    color: #ffffff;
    margin: 0 0 30px 0;
    text-align: center;
    direction: rtl;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: heroFadeInUp 1s ease-out 0.3s forwards;
}

.hero-title .highlight-word {
    color: #ff3333;
    font-weight: 700;
    font-size: 1.15em;
    letter-spacing: 0.02em;
}

.hero-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 45px 0;
    text-align: center;
    direction: rtl;
    opacity: 0;
    animation: heroFadeInUp 1s ease-out 0.5s forwards;
}

/* Hero Buttons Grid */
.hero-buttons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    opacity: 0;
    animation: heroFadeInUp 1s ease-out 0.7s forwards;
}

.hero-action-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    direction: rtl;
}

.hero-action-btn:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(-4px);
}

.hero-action-btn .btn-text {
    flex: 1;
    text-align: right;
}

.hero-action-btn i {
    font-size: 18px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.hero-action-btn:hover i {
    opacity: 1;
    transform: translateX(-2px);
}

/* ==========================================
   HERO SLIDER - اسلایدر سمت راست
   ========================================== */

.hero-slider-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
    animation: heroFadeIn 1.2s ease-out 0.5s forwards;
}

.hero-slider {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slide Placeholder */
.slide-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border: 2px dashed rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.3);
}

.slide-placeholder i {
    font-size: 60px;
    margin-bottom: 12px;
    opacity: 0.4;
}

.slide-placeholder span {
    font-size: 15px;
    font-weight: 500;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ffffff;
    width: 24px;
    border-radius: 4px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   SCROLL INDICATOR - نشانگر اسکرول
   ========================================== */

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    opacity: 0;
    animation: heroFadeIn 1s ease-out 1.5s forwards;
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 2px;
    height: 7px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scrollAnimation 2s ease-in-out infinite;
}

@keyframes scrollAnimation {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(12px);
        opacity: 0.3;
    }
}

.scroll-text {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}

/* ==========================================
   HERO ANIMATIONS - انیمیشن‌های هیرو
   ========================================== */

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

@keyframes heroFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes heroImageZoom {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================
   HERO SECTION RESPONSIVE - رسپانسیو هیروسکشن
   ========================================== */

/* Large Desktop (1400px and up) */
@media (min-width: 1400px) {
    .hero-grid {
        gap: 80px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-slider {
        max-width: 550px;
        height: 450px;
    }
}

/* Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-container {
        max-width: 1200px;
    }
    
    .hero-grid {
        gap: 50px;
    }
}

/* Tablet Landscape & Small Desktop (992px - 1199px) */
@media (max-width: 1199px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-container {
        padding: 0 30px;
    }
    
    .hero-grid {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-slider {
        max-width: 450px;
        height: 360px;
    }
    
    .hero-action-btn {
        padding: 16px 20px;
        font-size: 14px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 110px 0 70px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        min-height: auto;
    }
    
    /* اسلایدر اول نمایش داده شود */
    .hero-slider-wrapper {
        order: 1;
        width: 100%;
    }
    
    /* محتوا بعد از اسلایدر */
    .hero-content {
        order: 2;
        padding: 20px 0;
    }
    
    .hero-title {
        font-size: 42px;
        margin-bottom: 25px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 35px;
    }
    
    .hero-slider {
        max-width: 100%;
        height: 400px;
    }
    
    .hero-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .hero-action-btn {
        padding: 16px 20px;
    }
    
    /* Scroll Indicator */
    .scroll-indicator {
        bottom: -3px;
    }
}

/* Mobile Landscape & Large Mobile (576px - 767px) */
@media (max-width: 767px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-grid {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 30px;
    }
    
    .hero-slider {
        height: 350px;
        border-radius: 14px;
    }
    
    .hero-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .hero-action-btn {
        padding: 15px 18px;
        font-size: 14px;
    }
    
    .hero-action-btn i {
        font-size: 16px;
    }
    
    /* Slider Controls Adjustments */
    .slider-controls {
        gap: 12px;
    }
    
    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .slider-dots {
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 20px;
    }
    
    /* Scroll Indicator */
    .scroll-indicator {
        bottom: -3px;
    }
}

/* Mobile Portrait (400px - 575px) */
@media (max-width: 575px) {
    .hero-section {
        padding: 90px 0 50px;
    }
    
    .hero-container {
        padding: 0 16px;
    }
    
    .hero-grid {
        gap: 35px;
    }
    
    .hero-title {
        font-size: 30px;
        margin-bottom: 18px;
        line-height: 1.25;
    }
    
    .hero-title .highlight-word {
        font-size: 1.12em;
    }
    
    .hero-description {
        font-size: 13px;
        line-height: 1.65;
        margin-bottom: 28px;
    }
    
    .hero-slider {
        height: 300px;
        border-radius: 12px;
    }
    
    .hero-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .hero-action-btn {
        padding: 14px 16px;
        font-size: 13px;
        border-radius: 6px;
    }
    
    .hero-action-btn i {
        font-size: 15px;
    }
    
    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .dot {
        width: 7px;
        height: 7px;
    }
    
    .dot.active {
        width: 18px;
    }
    
    /* Scroll Indicator */
    .scroll-indicator {
        bottom: -3px;
    }
    
    .scroll-mouse {
        width: 24px;
        height: 36px;
    }
    
    .scroll-wheel {
        width: 3px;
        height: 8px;
    }
}

/* Extra Small Mobile (max 399px) */
@media (max-width: 399px) {
    .hero-section {
        padding: 80px 0 45px;
    }
    
    .hero-container {
        padding: 0 14px;
    }
    
    .hero-grid {
        gap: 30px;
    }
    
    .hero-title {
        font-size: 26px;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 12px;
        margin-bottom: 25px;
    }
    
    .hero-slider {
        height: 260px;
        border-radius: 10px;
    }
    
    .hero-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .hero-action-btn {
        padding: 12px 14px;
        font-size: 12px;
    }
    
    .hero-action-btn i {
        font-size: 14px;
    }
    
    .slider-btn {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    
    .slider-dots {
        gap: 6px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    .dot.active {
        width: 16px;
    }
    
    .scroll-indicator {
        bottom: -3px;
    }
    
    .scroll-text {
        font-size: 10px;
    }
}

/* Landscape Orientation - Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 70px 0 40px;
    }
    
    .hero-grid {
        gap: 30px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .hero-slider {
        height: 280px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Performance Optimizations for Mobile */
@media (max-width: 991px) {
    /* Reduce animations on mobile for better performance */
    .hero-section,
    .hero-slider,
    .hero-action-btn {
        will-change: auto;
    }
    
    /* Optimize backdrop filters */
    .hero-action-btn {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    
    /* Disable hover effects on touch devices */
    @media (hover: none) {
        .hero-action-btn:hover {
            transform: none;
            background: rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 255, 255, 0.15);
        }
        
        .hero-action-btn:active {
            transform: scale(0.98);
            background: rgba(0, 0, 0, 0.6);
        }
    }
    
    /* Faster animations on mobile */
    .hero-title,
    .hero-description,
    .hero-buttons-grid,
    .hero-slider-wrapper {
        animation-duration: 0.8s;
    }
}

/* ==========================================
   PERFORMANCE OPTIMIZATIONS - بهینه‌سازی عملکرد
   ========================================== */
/* GPU Acceleration for better performance */
.hero-section,
.hero-slider,
.hero-btn,
.scroll-indicator,
.premium-header,
.mobile-menu {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
/* Contain paint for better performance */
.hero-section,
.artist-support-section {
    contain: paint;
}
/* Optimize images */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}
/* Smooth font rendering */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* Reduce motion for users who prefer it */
/* High contrast mode support */
/* Dark mode support (if system preference) */
/* Print styles */
/* Landscape orientation optimizations */

/* ========================================== 
        rgba(255, 255, 255, 0.04) 0%, 
        transparent 40%, 
        rgba(220, 38, 38, 0.02) 100%
    );
    opacity: 0;
    pointer-events: none;
    border-radius: 24px;
}
.album-details-card:hover::before {
    opacity: 1;
}
.album-details-card:hover {
    box-shadow: 
        25px 25px 80px rgba(0, 0, 0, 0.25),
        -20px -20px 50px rgba(255, 255, 255, 0.015),
        inset 4px 4px 10px rgba(255, 255, 255, 0.04),
        inset -4px -4px 10px rgba(0, 0, 0, 0.08);
}
/* Album Overview */
.album-overview {
    margin-bottom: 50px;
    text-align: center;
}
.overview-title {
    font-size: 28px;
    font-weight: 600;
    color: oklch(0.871 0.006 286.286);
    margin-bottom: 20px;
    letter-spacing: -0.4px;
}
.overview-description {
    font-size: 18px;
    line-height: 1.8;
    color: oklch(0.705 0.015 286.067);
    margin: 0;
    opacity: 0.9;
    max-width: 85%;
    margin: 0 auto;
}
/* Album Versions */
.album-versions {
    text-align: center;
}
.versions-title {
    font-size: 24px;
    font-weight: 600;
    color: oklch(0.871 0.006 286.286);
    margin-bottom: 40px;
    letter-spacing: -0.3px;
    position: relative;
}
.versions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}
/* Version Items */
.version-item {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.02) 0%, 
        rgba(255, 255, 255, 0.008) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    text-align: right;
    direction: rtl;
}
.version-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.03) 50%, 
        transparent 100%
    );
}
.version-item:hover::before {
    left: 100%;
}
.version-item:hover {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.035) 0%, 
        rgba(255, 255, 255, 0.015) 100%
    );
    border-color: rgba(220, 38, 38, 0.2);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 0 25px rgba(220, 38, 38, 0.08);
}
/* Version Header */
.version-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-direction: row;
    text-align: right;
    justify-content: space-between;
}
.version-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.6) 100%
    );
    border: 2px solid #dc2626;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.version-icon svg {
    width: 28px;
    height: 28px;
    color: #dc2626;
}
.version-item.digital .version-icon {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.15);
}
.version-item.physical .version-icon {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.15);
}
.version-item.vip .version-icon {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-color: #dc2626;
    box-shadow: 0 0 25px rgba(220, 38, 38, 0.25);
}
.version-item:hover .version-icon {
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.3);
}
.version-item:hover .version-icon svg {
    filter: drop-shadow(0 0 5px rgba(220, 38, 38, 0.4));
}
/* Version Info */
.version-info {
    flex: 1;
    text-align: right;
    direction: rtl;
}
.version-name {
    font-size: 20px;
    font-weight: 600;
    color: oklch(0.871 0.006 286.286);
    margin: 0 0 8px 0;
    letter-spacing: -0.2px;
    text-align: right;
}
.version-price {
    font-size: 16px;
    font-weight: 700;
    color: #dc2626;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    position: relative;
    overflow: hidden;
    text-align: center;
    direction: ltr;
}
.version-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.15) 50%, 
        transparent 100%
    );
}
.version-item:hover .version-price::before {
    left: 100%;
}
/* Version Description */
.version-description {
    font-size: 16px;
    line-height: 1.7;
    color: oklch(0.705 0.015 286.067);
    margin: 0 0 25px 0;
    opacity: 0.85;
    text-align: right;
    direction: rtl;
}
/* Version Button */
.version-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border: 2px solid #dc2626;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.1px;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.25);
    flex-direction: row-reverse;
    text-align: right;
    direction: rtl;
    align-self: flex-start;
}
.version-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.25) 50%, 
        transparent 100%
    );
}
.version-btn:hover::before {
    left: 100%;
}
.version-btn:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    border-color: #b91c1c;
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}
/* FAQ Card */
.faq-card {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.025) 0%, 
        rgba(255, 255, 255, 0.01) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 
        20px 20px 60px rgba(0, 0, 0, 0.2),
        -15px -15px 40px rgba(255, 255, 255, 0.01),
        inset 3px 3px 8px rgba(255, 255, 255, 0.03),
        inset -3px -3px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    height: fit-content;
    width: 100%;
    max-width: 580px;
}
.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.03) 0%, 
        transparent 50%, 
        rgba(220, 38, 38, 0.015) 100%
    );
    opacity: 0;
    pointer-events: none;
    border-radius: 24px;
}
.faq-card:hover::before {
    opacity: 1;
}
.faq-card:hover {
    box-shadow: 
        20px 20px 60px rgba(0, 0, 0, 0.22),
        -15px -15px 45px rgba(255, 255, 255, 0.01),
        inset 3px 3px 8px rgba(255, 255, 255, 0.03),
        inset -3px -3px 8px rgba(0, 0, 0, 0.07);
}
/* FAQ Header */
.faq-header {
    text-align: center;
    margin-bottom: 35px;
}
.faq-title {
    font-size: 26px;
    font-weight: 600;
    color: oklch(0.871 0.006 286.286);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.faq-subtitle {
    font-size: 14px;
    color: oklch(0.705 0.015 286.067);
    margin: 0;
    opacity: 0.7;
}
/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
/* FAQ Items */
.faq-item {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.015) 0%, 
        rgba(255, 255, 255, 0.005) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.02) 50%, 
        transparent 100%
    );
}
.faq-item:hover::before {
    left: 100%;
}
.faq-item:hover {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.025) 0%, 
        rgba(255, 255, 255, 0.01) 100%
    );
    border-color: rgba(220, 38, 38, 0.15);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.12),
        0 0 20px rgba(220, 38, 38, 0.05);
}
/* FAQ Question */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 25px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.015) 50%, 
        transparent 100%
    );
}
.faq-question:hover::before {
    left: 100%;
}
.question-text {
    font-size: 16px;
    font-weight: 500;
    color: oklch(0.871 0.006 286.286);
    margin: 0;
    flex: 1;
    text-align: right;
    letter-spacing: -0.1px;
    line-height: 1.5;
}
/* Question Toggle */
.question-toggle {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.question-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(220, 38, 38, 0.1);
    opacity: 0;
    border-radius: 10px;
}
.question-toggle svg {
    color: #dc2626;
    position: relative;
    z-index: 2;
}
.faq-question:hover .question-toggle {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 5px 18px rgba(220, 38, 38, 0.2);
}
.faq-question:hover .question-toggle::before {
    opacity: 1;
}
/* Active/Expanded States */
.faq-item.active .question-toggle {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-color: #dc2626;
    box-shadow: 
        0 8px 25px rgba(220, 38, 38, 0.25),
        inset 0 2px 6px rgba(220, 38, 38, 0.15);
}
.faq-item.active .question-toggle svg {
    filter: drop-shadow(0 0 4px rgba(220, 38, 38, 0.4));
}
/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(255, 255, 255, 0.008);
}
.faq-item.active .faq-answer {
    max-height: 300px;
}
.answer-content {
    padding: 25px;
    position: relative;
}
.answer-content::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, 
        #dc2626 0%, 
        rgba(220, 38, 38, 0.4) 70%,
        transparent 100%
    );
    opacity: 0.4;
    border-radius: 2px;
}
.answer-content p {
    font-size: 15px;
    line-height: 1.8;
    color: oklch(0.705 0.015 286.067);
    margin: 0;
    padding-left: 25px;
    opacity: 0.9;
}
/* ==========================================
   RESPONSIVE DESIGN - طراحی ریسپانسیو
   ========================================== */
/* Extra Large Screens (1400px+) */
/* Large Screens (1200px - 1399px) */
/* Medium Large Screens (992px - 1199px) */
/* Medium Screens (768px - 991px) */
/* Small Screens (576px - 767px) */
/* Extra Small Screens (< 576px) */
/* Landscape Mobile Optimization */
/* High DPI Displays */
/* Print Styles */
    .versions-title {
        font-size: 28px;
    }
    .version-item {
        padding: 30px;
        border-radius: 20px;
    }
    .version-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    .version-name {
        font-size: 22px;
    }
    .version-price {
        font-size: 18px;
    }
    .version-description {
        font-size: 16px;
    }
    .version-btn {
        padding: 14px 28px;
        font-size: 16px;
    }
    .question-text {
        font-size: 18px;
    }
    .answer-content p {
        font-size: 16px;
    }
    .neumorphism-card {
        padding: 30px;
        border-radius: 20px;
        margin-bottom: 30px;
    }
    .section-header {
        margin-bottom: 25px;
    }
    .section-title {
        font-size: 26px;
    }
    .album-general-description {
        margin-bottom: 30px;
    }
    .versions-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    .version-item {
        padding: 20px;
        margin-bottom: 15px;
    }
    .version-header {
        gap: 12px;
    }
    .version-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
    .version-name {
        font-size: 17px;
    }
    .version-price {
        font-size: 14px;
        padding: 3px 10px;
    }
    .version-description {
        font-size: 12px;
        margin: 12px 0 15px 0;
    }
    .version-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    .faq-accordion {
        margin-top: 5px;
    }
    .faq-item {
        margin-bottom: 12px;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .question-text {
        font-size: 14px;
    }
    .question-icon {
        width: 28px;
        height: 28px;
    }
    .question-icon i {
        font-size: 12px;
    }
    .answer-content {
        padding: 15px 20px;
    }
    .answer-content p {
        font-size: 12px;
}

/* Medium Screens - تبلت */
/* Small Mobile - موبایل کوچک */
/* Extra Small Mobile - موبایل بسیار کوچک */
/* Landscape Mobile Optimization - بهینه‌سازی موبایل افقی */
/* High DPI Displays - صفحه‌های با کیفیت بالا */
/* Print Styles - استایل‌های چاپ */
/* Parallax Effect */
/* Mobile Optimizations */
/* High Resolution Displays */
/* Landscape Mobile */
/* Dark Mode Enhancements */
/* Performance Optimizations */
.hero-background {
    backface-visibility: hidden;
    perspective: 1000px;
}
/* Loading State */
.hero-section.loading .hero-background {
    opacity: 0;
}
.hero-section.loaded .hero-background {
    opacity: 1;
}
/* Accessibility */
/* Print Styles */

/* ==========================================
   PRESALE & LEADERBOARD WRAPPER - پیش‌فروش و لیدربورد
   ========================================== */

.presale-leaderboard-wrapper {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
   
}

.presale-leaderboard-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
 
    pointer-events: none;
}

/* هدر مشترک بالای هر دو سکشن */
.presale-leaderboard-wrapper .main-section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.presale-leaderboard-wrapper .main-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 30px;
    background: linear-gradient(135deg,
        rgba(108, 99, 255, 0.15) 0%,
        rgba(108, 99, 255, 0.08) 100%
    );
    border: 1px solid rgba(108, 99, 255, 0.3);
    margin-bottom: 25px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-accent);
}

.presale-leaderboard-wrapper .main-section-badge i {
    font-size: 16px;
}

.presale-leaderboard-wrapper .main-section-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.presale-leaderboard-wrapper .main-section-title .title-word {
    color: var(--color-text);
}

.presale-leaderboard-wrapper .main-section-title .gradient {
    background: linear-gradient(135deg,
        var(--color-accent) 0%,
        rgba(108, 99, 255, 0.7) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.presale-leaderboard-wrapper .main-section-subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
    opacity: 0.7;
    font-weight: 400;
}

.presale-leaderboard-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
    position: relative;
    z-index: 1;
}

.presale-column {
    min-width: 0;
}

.leaderboard-column {
    position: sticky;
    top: 100px;
    min-width: 0;
}

/* ==========================================
   ALBUM PRESALE SECTION - سکشن پیش‌فروش آلبوم
   ========================================== */

/* Override استایل‌های پلاگین برای هماهنگی با تم */
.presale-leaderboard-wrapper .psa-form-container {
    max-width: 100%;
    padding: 0;
    direction: rtl;
}

/* مخفی کردن هدر داخل فرم */
.presale-leaderboard-wrapper .psa-form-header {
    display: none;
}

/* بخش‌ها */
.presale-leaderboard-wrapper .psa-section {
    position: relative;
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.07) 0%,
        rgba(255, 255, 255, 0.03) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 40px;
    margin-bottom: 20px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(108, 99, 255, 0.05),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.presale-leaderboard-wrapper .psa-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
        rgba(108, 99, 255, 0.08) 0%,
        transparent 60%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.presale-leaderboard-wrapper .psa-section:hover::before {
    opacity: 1;
}

.presale-leaderboard-wrapper .psa-section:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(108, 99, 255, 0.12),
        inset 0 1px 3px rgba(255, 255, 255, 0.15);
    border-color: rgba(108, 99, 255, 0.2);
}

.presale-leaderboard-wrapper .psa-section-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg,
        rgba(108, 99, 255, 0.2) 0%,
        rgba(108, 99, 255, 0.1) 100%
    );
    border: 2px solid rgba(108, 99, 255, 0.3);
    margin-bottom: 18px;
}

.presale-leaderboard-wrapper .psa-section-icon i {
    font-size: 24px;
    color: var(--color-accent);
}

.presale-leaderboard-wrapper .psa-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.presale-leaderboard-wrapper .psa-section-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

.presale-leaderboard-wrapper .psa-icon {
    font-size: 24px;
    filter: drop-shadow(0 2px 6px rgba(108, 99, 255, 0.3));
}

/* کارت‌های نسخه آلبوم */
.presale-leaderboard-wrapper .psa-versions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.presale-leaderboard-wrapper .psa-version-card {
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.015) 100%
    );
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px 22px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.presale-leaderboard-wrapper .psa-version-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.presale-leaderboard-wrapper .psa-version-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(108, 99, 255, 0.05) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
}

.presale-leaderboard-wrapper .psa-version-card:hover::before {
    left: 100%;
}

.presale-leaderboard-wrapper .psa-version-card:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 99, 255, 0.35);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.18),
        0 0 25px rgba(108, 99, 255, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.presale-leaderboard-wrapper .psa-version-card:has(input[type="radio"]:checked) {
    border-color: rgba(108, 99, 255, 0.5);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(108, 99, 255, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.12);
    background: linear-gradient(145deg,
        rgba(108, 99, 255, 0.08) 0%,
        rgba(108, 99, 255, 0.03) 100%
    );
}

.presale-leaderboard-wrapper .psa-version-card input[type="radio"]:checked + .psa-version-content {
    position: relative;
}

.presale-leaderboard-wrapper .psa-version-card input[type="radio"]:checked + .psa-version-content::after {
    content: '✓';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-accent) 0%, rgba(108, 99, 255, 0.9) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 
        0 4px 12px rgba(108, 99, 255, 0.5),
        0 0 20px rgba(108, 99, 255, 0.3);
    animation: checkBounce 0.4s ease;
}

.presale-leaderboard-wrapper .psa-version-card input[type="radio"]:checked ~ .psa-version-badge {
    animation: badgePulse 0.5s ease;
}

@keyframes checkBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.presale-leaderboard-wrapper .psa-version-content {
    position: relative;
    text-align: center;
}

.presale-leaderboard-wrapper .psa-version-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg,
        rgba(108, 99, 255, 0.25) 0%,
        rgba(108, 99, 255, 0.15) 100%
    );
    border: 1px solid rgba(108, 99, 255, 0.4);
    color: var(--color-accent);
    padding: 6px 14px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(108, 99, 255, 0.3);
    z-index: 10;
}

.presale-leaderboard-wrapper .psa-version-card.psa-vip .psa-version-badge {
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.25) 0%,
        rgba(255, 215, 0, 0.15) 100%
    );
    border-color: rgba(255, 215, 0, 0.4);
    color: #FFD700;
}

.presale-leaderboard-wrapper .psa-version-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg,
        rgba(108, 99, 255, 0.2) 0%,
        rgba(108, 99, 255, 0.1) 100%
    );
    border: 2px solid rgba(108, 99, 255, 0.3);
    box-shadow: 
        0 10px 30px rgba(108, 99, 255, 0.25),
        0 0 20px rgba(108, 99, 255, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.presale-leaderboard-wrapper .psa-version-icon i {
    font-size: 28px;
    color: var(--color-accent);
}

.presale-leaderboard-wrapper .psa-version-card:hover .psa-version-icon {
    transform: scale(1.1);
    box-shadow: 
        0 15px 40px rgba(108, 99, 255, 0.35),
        0 0 30px rgba(108, 99, 255, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.15);
}

.presale-leaderboard-wrapper .psa-version-card.psa-vip .psa-version-icon {
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.2) 0%,
        rgba(255, 215, 0, 0.1) 100%
    );
    border-color: rgba(255, 215, 0, 0.35);
    box-shadow: 
        0 10px 30px rgba(255, 215, 0, 0.25),
        0 0 20px rgba(255, 215, 0, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.presale-leaderboard-wrapper .psa-version-card.psa-vip .psa-version-icon i {
    color: #FFD700;
}

.presale-leaderboard-wrapper .psa-version-card.psa-vip:hover .psa-version-icon {
    box-shadow: 
        0 15px 40px rgba(255, 215, 0, 0.35),
        0 0 30px rgba(255, 215, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.15);
}

.presale-leaderboard-wrapper .psa-version-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 10px 0;
    letter-spacing: -0.3px;
}

.presale-leaderboard-wrapper .psa-version-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    opacity: 0.8;
}

.presale-leaderboard-wrapper .psa-version-price {
    background: linear-gradient(135deg,
        rgba(108, 99, 255, 0.18) 0%,
        rgba(108, 99, 255, 0.1) 100%
    );
    border: 1px solid rgba(108, 99, 255, 0.3);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 
        0 4px 12px rgba(108, 99, 255, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.presale-leaderboard-wrapper .psa-price-value {
    color: var(--color-accent);
    font-weight: 800;
    font-size: 22px;
}

/* روش‌های پرداخت - Payment Methods */
.presale-leaderboard-wrapper .psa-payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.presale-leaderboard-wrapper .psa-payment-method-card {
    position: relative;
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.015) 100%
    );
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px 24px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.presale-leaderboard-wrapper .psa-payment-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center,
        rgba(108, 99, 255, 0.08) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.presale-leaderboard-wrapper .psa-payment-method-card:hover::before {
    opacity: 1;
}

.presale-leaderboard-wrapper .psa-payment-method-card:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 99, 255, 0.3);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.18),
        0 0 25px rgba(108, 99, 255, 0.12),
        inset 0 1px 2px rgba(255, 255, 255, 0.08);
}

.presale-leaderboard-wrapper .psa-payment-method-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.presale-leaderboard-wrapper .psa-payment-method-card:has(input[type="radio"]:checked) {
    border-color: rgba(108, 99, 255, 0.5);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(108, 99, 255, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.12);
    background: linear-gradient(145deg,
        rgba(108, 99, 255, 0.08) 0%,
        rgba(108, 99, 255, 0.03) 100%
    );
}

.presale-leaderboard-wrapper .psa-payment-method-card input[type="radio"]:checked ~ .psa-payment-method-content::after {
    content: '✓';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-accent) 0%, rgba(108, 99, 255, 0.9) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 
        0 4px 12px rgba(108, 99, 255, 0.5),
        0 0 20px rgba(108, 99, 255, 0.3);
    animation: checkBounce 0.4s ease;
}

.presale-leaderboard-wrapper .psa-payment-method-content {
    position: relative;
    text-align: center;
}

.presale-leaderboard-wrapper .psa-payment-method-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg,
        rgba(108, 99, 255, 0.18) 0%,
        rgba(108, 99, 255, 0.08) 100%
    );
    border: 2px solid rgba(108, 99, 255, 0.25);
    box-shadow: 
        0 10px 30px rgba(108, 99, 255, 0.2),
        0 0 20px rgba(108, 99, 255, 0.08),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.presale-leaderboard-wrapper .psa-payment-method-icon i {
    font-size: 32px;
    color: var(--color-accent);
}

.presale-leaderboard-wrapper .psa-payment-method-card:hover .psa-payment-method-icon {
    transform: scale(1.08);
    box-shadow: 
        0 15px 40px rgba(108, 99, 255, 0.3),
        0 0 30px rgba(108, 99, 255, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.12);
}

.presale-leaderboard-wrapper .psa-payment-method-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
}

.presale-leaderboard-wrapper .psa-payment-method-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    opacity: 0.75;
    margin-bottom: 12px;
}

.presale-leaderboard-wrapper .psa-payment-method-badge {
    display: inline-block;
    background: linear-gradient(135deg,
        rgba(108, 99, 255, 0.2) 0%,
        rgba(108, 99, 255, 0.12) 100%
    );
    border: 1px solid rgba(108, 99, 255, 0.35);
    color: var(--color-accent);
    padding: 5px 14px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 8px rgba(108, 99, 255, 0.2);
}

/* کارت تبدیل ارز - Conversion Card */
.presale-leaderboard-wrapper .psa-price-conversion-info {
    margin-top: 25px;
    animation: fadeInUp 0.5s ease;
}

.presale-leaderboard-wrapper .psa-conversion-card {
    background: linear-gradient(135deg,
        rgba(108, 99, 255, 0.12) 0%,
        rgba(108, 99, 255, 0.05) 100%
    );
    border: 2px solid rgba(108, 99, 255, 0.25);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 
        0 8px 24px rgba(108, 99, 255, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.presale-leaderboard-wrapper .psa-conversion-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: linear-gradient(135deg,
        rgba(108, 99, 255, 0.25) 0%,
        rgba(108, 99, 255, 0.15) 100%
    );
    border: 2px solid rgba(108, 99, 255, 0.35);
    border-radius: 14px;
    box-shadow: 
        0 6px 18px rgba(108, 99, 255, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.presale-leaderboard-wrapper .psa-conversion-content {
    flex: 1;
}

.presale-leaderboard-wrapper .psa-conversion-title {
    font-size: 13px;
    color: var(--color-text-muted);
    margin: 0 0 6px 0;
    opacity: 0.8;
}

.presale-leaderboard-wrapper .psa-conversion-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-accent);
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.presale-leaderboard-wrapper .psa-conversion-amount .psa-usd-amount {
    background: linear-gradient(135deg, #6c63ff 0%, #a29bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.presale-leaderboard-wrapper .psa-conversion-rate {
    font-size: 12px;
    color: var(--color-text-muted);
    opacity: 0.7;
    margin: 0;
}

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

/* فرم‌ها */
.presale-leaderboard-wrapper .psa-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 25px;
}

.presale-leaderboard-wrapper .psa-form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.presale-leaderboard-wrapper .psa-form-group.psa-full-width {
    grid-column: 1 / -1;
}

.presale-leaderboard-wrapper .psa-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.presale-leaderboard-wrapper .psa-form-group input,
.presale-leaderboard-wrapper .psa-form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    font-size: 15px;
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    color: var(--color-text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.08);
}

.presale-leaderboard-wrapper .psa-form-group input::placeholder,
.presale-leaderboard-wrapper .psa-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.presale-leaderboard-wrapper .psa-form-group input:focus,
.presale-leaderboard-wrapper .psa-form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 
        0 0 0 4px rgba(108, 99, 255, 0.12),
        inset 0 2px 4px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.presale-leaderboard-wrapper .psa-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.presale-leaderboard-wrapper .psa-field-help {
    font-size: 12px;
    color: var(--color-text-muted);
    opacity: 0.6;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.presale-leaderboard-wrapper .psa-field-help::before {
    content: 'ℹ️';
    font-size: 11px;
}

/* دکمه ارسال - Submit Button */
.presale-leaderboard-wrapper .psa-form-actions {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    padding-top: 15px;
}

.presale-leaderboard-wrapper .psa-submit-btn {
    position: relative;
    background: linear-gradient(135deg, var(--color-accent) 0%, rgba(108, 99, 255, 0.9) 100%);
    border: none;
    color: #ffffff;
    padding: 18px 55px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 16px;
    box-shadow: 
        0 8px 25px rgba(108, 99, 255, 0.4),
        0 0 20px rgba(108, 99, 255, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    cursor: pointer;
    overflow: hidden;
    min-width: 220px;
}

.presale-leaderboard-wrapper .psa-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
}

.presale-leaderboard-wrapper .psa-submit-btn:hover::before {
    left: 100%;
}

.presale-leaderboard-wrapper .psa-submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(108, 99, 255, 0.5),
        0 0 30px rgba(108, 99, 255, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.25);
    background: linear-gradient(135deg,
        rgba(108, 99, 255, 0.95) 0%,
        rgba(108, 99, 255, 0.85) 100%
    );
}

.presale-leaderboard-wrapper .psa-submit-btn:active:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 
        0 6px 20px rgba(108, 99, 255, 0.4),
        0 0 15px rgba(108, 99, 255, 0.2);
}

.presale-leaderboard-wrapper .psa-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.presale-leaderboard-wrapper .psa-btn-text {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.presale-leaderboard-wrapper .psa-btn-loader {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.presale-leaderboard-wrapper .psa-spinner {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* پیام‌ها - Messages */
.presale-leaderboard-wrapper #psaFormMessages {
    margin: 25px 0;
}

.presale-leaderboard-wrapper .psa-message {
    padding: 20px 26px;
    border-radius: 16px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    font-weight: 500;
    animation: messageSlideIn 0.4s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.presale-leaderboard-wrapper .psa-message::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
}

.presale-leaderboard-wrapper .psa-message::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%
    );
    animation: messageShine 2s ease-in-out infinite;
}

.presale-leaderboard-wrapper .psa-message-success {
    background: linear-gradient(135deg,
        rgba(70, 180, 80, 0.18) 0%,
        rgba(70, 180, 80, 0.12) 100%
    );
    border: 2px solid rgba(70, 180, 80, 0.4);
    color: #46b450;
}

.presale-leaderboard-wrapper .psa-message-success::before {
    background: linear-gradient(180deg, #46b450 0%, #3a9340 100%);
}

.presale-leaderboard-wrapper .psa-message-error {
    background: linear-gradient(135deg,
        rgba(220, 50, 50, 0.18) 0%,
        rgba(220, 50, 50, 0.12) 100%
    );
    border: 2px solid rgba(220, 50, 50, 0.4);
    color: #dc3232;
}

.presale-leaderboard-wrapper .psa-message-error::before {
    background: linear-gradient(180deg, #dc3232 0%, #b92828 100%);
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes messageShine {
    to {
        left: 100%;
    }
}

/* بخش اطلاعات ارسال - Shipping Info */
.presale-leaderboard-wrapper .psa-shipping-info {
    transition: all 0.4s ease;
    opacity: 1;
    max-height: 1000px;
    overflow: hidden;
}

.presale-leaderboard-wrapper .psa-shipping-info[style*="display: none"] {
    opacity: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
}

/* Responsive - Album Presale در Tablet و Mobile */
@media (max-width: 1024px) {
    .presale-leaderboard-wrapper .psa-versions-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .presale-leaderboard-wrapper .psa-payment-methods-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .presale-leaderboard-wrapper .psa-section {
        padding: 30px;
    }
    
    .presale-leaderboard-wrapper .psa-form-grid {
        gap: 20px;
    }
    
    .presale-leaderboard-wrapper .psa-payment-method-card {
        padding: 24px 20px;
    }
    
    .presale-leaderboard-wrapper .psa-payment-method-icon {
        width: 58px;
        height: 58px;
    }
    
    .presale-leaderboard-wrapper .psa-payment-method-icon i {
        font-size: 28px;
    }
    
    .presale-leaderboard-wrapper .psa-conversion-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .presale-leaderboard-wrapper .psa-conversion-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .presale-leaderboard-wrapper .psa-form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .presale-leaderboard-wrapper .psa-section {
        padding: 25px 20px;
        border-radius: 20px;
        margin-bottom: 16px;
    }
    
    .presale-leaderboard-wrapper .psa-section-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }
    
    .presale-leaderboard-wrapper .psa-section-icon i {
        font-size: 22px;
    }
    
    .presale-leaderboard-wrapper .psa-section-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .presale-leaderboard-wrapper .psa-section-desc {
        font-size: 12px;
        margin-bottom: 18px;
    }
    
    .presale-leaderboard-wrapper .psa-version-card {
        padding: 22px 18px;
    }
    
    .presale-leaderboard-wrapper .psa-version-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }
    
    .presale-leaderboard-wrapper .psa-version-icon i {
        font-size: 26px;
    }
    
    .presale-leaderboard-wrapper .psa-version-name {
        font-size: 18px;
    }
    
    .presale-leaderboard-wrapper .psa-version-desc {
        font-size: 13px;
    }
    
    .presale-leaderboard-wrapper .psa-payment-method-card {
        padding: 22px 18px;
    }
    
    .presale-leaderboard-wrapper .psa-payment-method-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }
    
    .presale-leaderboard-wrapper .psa-payment-method-icon i {
        font-size: 26px;
    }
    
    .presale-leaderboard-wrapper .psa-payment-method-name {
        font-size: 16px;
    }
    
    .presale-leaderboard-wrapper .psa-payment-method-desc {
        font-size: 12px;
    }
    
    .presale-leaderboard-wrapper .psa-payment-method-badge {
        font-size: 10px;
        padding: 4px 12px;
    }
    
    .presale-leaderboard-wrapper .psa-conversion-card {
        padding: 20px;
        gap: 12px;
    }
    
    .presale-leaderboard-wrapper .psa-conversion-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .presale-leaderboard-wrapper .psa-conversion-amount {
        font-size: 20px;
    }
    
    .presale-leaderboard-wrapper .psa-conversion-title,
    .presale-leaderboard-wrapper .psa-conversion-rate {
        font-size: 11px;
    }
    
    .presale-leaderboard-wrapper .psa-form-group input,
    .presale-leaderboard-wrapper .psa-form-group textarea {
        padding: 14px 16px;
        font-size: 14px;
        border-radius: 12px;
    }
    
    .presale-leaderboard-wrapper .psa-form-group label {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .presale-leaderboard-wrapper .psa-field-help {
        font-size: 11px;
        margin-top: 6px;
    }
    
    .presale-leaderboard-wrapper .psa-form-actions {
        margin-top: 25px;
    }
    
    .presale-leaderboard-wrapper .psa-submit-btn {
        width: 100%;
        padding: 16px 40px;
        font-size: 15px;
        min-width: auto;
    }
}

/* ==========================================
   LEADERBOARD - لیدربورد خریداران برتر
   ========================================== */

.psa-leaderboard-container {
    width: 100%;
    padding: 40px;
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.07) 0%,
        rgba(255, 255, 255, 0.03) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(255, 215, 0, 0.05),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.psa-leaderboard-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
        rgba(255, 215, 0, 0.08) 0%,
        transparent 60%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.psa-leaderboard-container:hover::before {
    opacity: 1;
}

.psa-leaderboard-container:hover {
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(255, 215, 0, 0.1),
        inset 0 1px 3px rgba(255, 255, 255, 0.15);
}

.psa-leaderboard-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.psa-lb-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.2) 0%,
        rgba(255, 215, 0, 0.1) 100%
    );
    border: 2px solid rgba(255, 215, 0, 0.35);
    box-shadow: 
        0 10px 30px rgba(255, 215, 0, 0.25),
        0 0 20px rgba(255, 215, 0, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.psa-lb-icon {
    font-size: 30px;
    color: #FFD700;
    animation: trophy-bounce 2.5s ease-in-out infinite;
}

@keyframes trophy-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.psa-lb-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.psa-lb-subtitle {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-muted);
    opacity: 0.85;
}

.psa-leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.psa-lb-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-20px);
}

.psa-lb-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.psa-lb-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 215, 0, 0.05) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
}

.psa-lb-item:hover::before {
    left: 100%;
}

.psa-lb-item:hover {
    transform: translateX(5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(255, 215, 0, 0.12),
        inset 0 1px 2px rgba(255, 255, 255, 0.08);
}

/* رتبه‌های مدال‌دار */
.psa-lb-item.gold {
    border-color: rgba(255, 215, 0, 0.3);
    background: linear-gradient(145deg,
        rgba(255, 215, 0, 0.08) 0%,
        rgba(255, 215, 0, 0.02) 100%
    );
}

.psa-lb-item.silver {
    border-color: rgba(192, 192, 192, 0.3);
    background: linear-gradient(145deg,
        rgba(192, 192, 192, 0.08) 0%,
        rgba(192, 192, 192, 0.02) 100%
    );
}

.psa-lb-item.bronze {
    border-color: rgba(205, 127, 50, 0.3);
    background: linear-gradient(145deg,
        rgba(205, 127, 50, 0.08) 0%,
        rgba(205, 127, 50, 0.02) 100%
    );
}

/* رتبه */
.psa-lb-rank {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(108, 99, 255, 0.12) 0%,
        rgba(108, 99, 255, 0.06) 100%
    );
    border: 1.5px solid rgba(108, 99, 255, 0.2);
    border-radius: 12px;
}

.psa-rank-badge {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-text);
}

.psa-lb-item.gold .psa-lb-rank {
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.25) 0%,
        rgba(255, 215, 0, 0.12) 100%
    );
    border-color: rgba(255, 215, 0, 0.4);
}

.psa-lb-item.silver .psa-lb-rank {
    background: linear-gradient(135deg,
        rgba(192, 192, 192, 0.25) 0%,
        rgba(192, 192, 192, 0.12) 100%
    );
    border-color: rgba(192, 192, 192, 0.4);
}

.psa-lb-item.bronze .psa-lb-rank {
    background: linear-gradient(135deg,
        rgba(205, 127, 50, 0.25) 0%,
        rgba(205, 127, 50, 0.12) 100%
    );
    border-color: rgba(205, 127, 50, 0.4);
}

/* اطلاعات خریدار */
.psa-lb-info {
    flex: 1;
    min-width: 0;
}

.psa-lb-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.psa-lb-email {
    font-size: 11px;
    color: var(--color-text-muted);
    opacity: 0.55;
    font-family: 'Courier New', monospace;
}

/* آمار */
.psa-lb-stats {
    flex-shrink: 0;
    text-align: left;
}

.psa-lb-amount {
    font-size: 15px;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 3px;
    direction: ltr;
}

.amount-currency {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.75;
    margin-right: 3px;
}

.psa-lb-orders {
    font-size: 11px;
    color: var(--color-text-muted);
    opacity: 0.6;
    text-align: right;
}

/* افکت درخشش */
.psa-lb-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 50%,
        transparent 100%
    );
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

.psa-lb-item:hover .psa-lb-shine {
    left: 150%;
}

/* حالت خالی */
.psa-lb-empty {
    text-align: center;
    padding: 60px 20px;
    opacity: 0.5;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 15px;
}

.psa-lb-empty p {
    font-size: 16px;
    color: var(--color-text-muted);
}

/* نشانگر بروزرسانی */
.psa-lb-update-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
    font-size: 12px;
    color: var(--color-text-muted);
    opacity: 0.5;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse-animation 1.5s ease-in-out infinite;
}

@keyframes pulse-animation {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

/* Responsive - Tablet */
@media (max-width: 1200px) {
    .presale-leaderboard-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .leaderboard-column {
        position: static;
    }
    
    .psa-leaderboard-container {
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .presale-leaderboard-wrapper {
        padding: 80px 0;
    }
    
    .presale-leaderboard-wrapper .main-section-title {
        font-size: 42px;
    }
    
    .presale-leaderboard-wrapper .psa-section {
        padding: 35px;
    }
    
    .presale-leaderboard-wrapper .psa-section-icon {
        width: 45px;
        height: 45px;
    }
    
    .presale-leaderboard-wrapper .psa-section-icon i {
        font-size: 22px;
    }
    
    .presale-leaderboard-wrapper .psa-version-icon {
        width: 55px;
        height: 55px;
    }
    
    .presale-leaderboard-wrapper .psa-version-icon i {
        font-size: 26px;
    }
    
    .psa-lb-icon-wrapper {
        width: 55px;
        height: 55px;
    }
    
    .psa-lb-icon {
        font-size: 26px;
    }
    
    .psa-lb-title {
        font-size: 20px;
    }
    
    .psa-lb-item {
        padding: 16px 18px;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .presale-leaderboard-wrapper {
        padding: 60px 0;
    }
    
    .presale-leaderboard-grid {
        gap: 40px;
    }
    
    .presale-leaderboard-wrapper .main-section-title {
        font-size: 36px;
    }
    
    .presale-leaderboard-wrapper .main-section-badge {
        font-size: 10px;
        padding: 6px 16px;
    }
    
    .presale-leaderboard-wrapper .psa-section {
        padding: 30px 25px;
        border-radius: 24px;
    }
    
    .presale-leaderboard-wrapper .psa-section-icon {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }
    
    .presale-leaderboard-wrapper .psa-section-icon i {
        font-size: 20px;
    }
    
    .presale-leaderboard-wrapper .psa-section-title {
        font-size: 18px;
    }
    
    .presale-leaderboard-wrapper .psa-section-desc {
        font-size: 12px;
    }
    
    .presale-leaderboard-wrapper .psa-version-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }
    
    .presale-leaderboard-wrapper .psa-version-icon i {
        font-size: 24px;
    }
    
    .psa-leaderboard-container {
        padding: 30px 25px;
        border-radius: 24px;
    }
    
    .psa-lb-icon-wrapper {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }
    
    .psa-lb-icon {
        font-size: 24px;
    }
    
    .psa-lb-title {
        font-size: 24px;
    }
    
    .psa-lb-subtitle {
        font-size: 12px;
    }
    
    .psa-lb-item {
        padding: 14px 16px;
        gap: 12px;
    }
    
    .psa-lb-rank {
        width: 42px;
        height: 42px;
    }
    
    .psa-rank-badge {
        font-size: 18px;
    }
    
    .psa-lb-name {
        font-size: 14px;
    }
    
    .psa-lb-email {
        font-size: 10px;
    }
    
    .psa-lb-amount {
        font-size: 14px;
    }
    
    .psa-lb-orders {
        font-size: 10px;
    }
    
    .presale-leaderboard-wrapper .main-section-title {
        font-size: 32px;
    }
    
    .presale-leaderboard-wrapper .main-section-subtitle {
        font-size: 13px;
    }
}

/* ==========================================
   CRYPTO PAYMENT SECTION - سکشن پرداخت با کریپتو
   ========================================== */

.crypto-payment-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(108, 99, 255, 0.02) 50%,
        rgba(0, 0, 0, 0) 100%
    );
}

/* Section Header */
.crypto-section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.crypto-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 30px;
    background: linear-gradient(135deg,
        rgba(255, 165, 0, 0.15) 0%,
        rgba(255, 165, 0, 0.08) 100%
    );
    border: 1px solid rgba(255, 165, 0, 0.3);
    margin-bottom: 25px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #FFA500;
}

.crypto-badge i {
    font-size: 16px;
}

.crypto-section-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.crypto-section-title .title-word {
    color: var(--color-text);
}

.crypto-section-title .gradient {
    background: linear-gradient(135deg,
        #FFA500 0%,
        rgba(255, 165, 0, 0.7) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.crypto-section-subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
    opacity: 0.7;
    font-weight: 400;
}

/* Payment Grid */
.crypto-payment-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

/* QR Code Card */
.crypto-qr-card {
    position: relative;
    padding: 40px;
    border-radius: 28px;
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.07) 0%,
        rgba(255, 255, 255, 0.03) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(255, 165, 0, 0.05),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.qr-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
        rgba(255, 165, 0, 0.08) 0%,
        transparent 60%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.crypto-qr-card:hover .qr-glow-effect {
    opacity: 1;
}

.crypto-qr-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(255, 165, 0, 0.12),
        inset 0 1px 3px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 165, 0, 0.2);
}

.qr-card-inner {
    position: relative;
    z-index: 1;
}

.qr-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg,
        rgba(255, 165, 0, 0.2) 0%,
        rgba(255, 165, 0, 0.1) 100%
    );
    border: 2px solid rgba(255, 165, 0, 0.35);
    box-shadow: 
        0 10px 30px rgba(255, 165, 0, 0.25),
        0 0 20px rgba(255, 165, 0, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.qr-icon-wrapper i {
    font-size: 30px;
    color: #FFA500;
}

.qr-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.qr-card-subtitle {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    opacity: 0.85;
}

/* QR Code Wrapper */
.qr-code-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 25px;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.9) 100%
    );
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.qr-code-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}

.qr-code-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: rgba(0, 0, 0, 0.3);
}

.qr-code-placeholder i {
    font-size: 80px;
}

.qr-code-placeholder span {
    font-size: 14px;
    font-weight: 600;
}

/* QR Scan Line Animation */
.qr-scan-line {
    position: absolute;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        #FFA500 50%,
        transparent 100%
    );
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.8);
    animation: qr-scan 3s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes qr-scan {
    0%, 100% {
        top: 20px;
    }
    50% {
        top: calc(100% - 20px);
    }
}

/* Info Badges */
.qr-info-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.03) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-muted);
}

.info-badge i {
    font-size: 16px;
    color: #FFA500;
}

/* Wallet Card */
.crypto-wallet-card {
    position: relative;
    padding: 40px;
    border-radius: 28px;
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.03) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(255, 165, 0, 0.05),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.crypto-wallet-card:hover {
    border-color: rgba(255, 165, 0, 0.2);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(255, 165, 0, 0.1),
        inset 0 1px 3px rgba(255, 255, 255, 0.15);
}

.wallet-card-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Wallet Address Section */
.wallet-address-section {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg,
        rgba(255, 165, 0, 0.2) 0%,
        rgba(255, 165, 0, 0.1) 100%
    );
    border: 2px solid rgba(255, 165, 0, 0.3);
    margin-bottom: 18px;
}

.section-icon i {
    font-size: 24px;
    color: #FFA500;
}

.wallet-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.wallet-section-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    opacity: 0.85;
}

/* Address Box */
.wallet-address-box {
    display: flex;
    gap: 12px;
    align-items: stretch;
    margin-bottom: 18px;
}

.address-display {
    flex: 1;
    padding: 14px 18px;
    border-radius: 16px;
    background: linear-gradient(145deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.address-text {
    font-size: 13px;
    font-family: 'Courier New', monospace;
    color: var(--color-text);
    word-break: break-all;
    direction: ltr;
    display: block;
    letter-spacing: 0.5px;
}

.copy-address-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 20px;
    border-radius: 16px;
    background: linear-gradient(135deg,
        rgba(255, 165, 0, 0.2) 0%,
        rgba(255, 165, 0, 0.12) 100%
    );
    border: 1px solid rgba(255, 165, 0, 0.35);
    color: #FFA500;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.15);
}

.copy-address-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 165, 0, 0.25);
    background: linear-gradient(135deg,
        rgba(255, 165, 0, 0.3) 0%,
        rgba(255, 165, 0, 0.18) 100%
    );
}

.copy-address-btn i {
    font-size: 16px;
}

/* Network Info */
.network-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 18px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.03) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 600;
}

.network-info i {
    font-size: 16px;
    color: #FFA500;
}

/* Payment Instructions */
.payment-instructions {
    padding: 25px;
    border-radius: 20px;
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.instructions-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.instructions-header i {
    font-size: 20px;
    color: #FFA500;
}

.instructions-header span {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
}

.instructions-content {
    font-size: 13px;
    line-height: 1.7;
    color: var(--color-text-muted);
    opacity: 0.9;
}

/* Submit Receipt Button */
.submit-receipt-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 18px;
    background: linear-gradient(135deg,
        #0088cc 0%,
        rgba(0, 136, 204, 0.85) 100%
    );
    border: 1px solid rgba(0, 136, 204, 0.4);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.submit-receipt-btn:hover .btn-glow {
    transform: translateX(100%);
}

.submit-receipt-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 136, 204, 0.4);
}

.submit-receipt-btn i {
    font-size: 20px;
}

/* Payment Warning */
.payment-warning {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 16px;
    background: linear-gradient(135deg,
        rgba(255, 165, 0, 0.1) 0%,
        rgba(255, 165, 0, 0.05) 100%
    );
    border: 1px solid rgba(255, 165, 0, 0.2);
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.payment-warning i {
    font-size: 20px;
    color: #FFA500;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .crypto-payment-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .crypto-section-title {
        font-size: 44px;
    }
}

/* Tablet Medium */
@media (max-width: 991px) {
    .crypto-section-title {
        font-size: 40px;
    }
    
    .submit-receipt-btn {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .submit-receipt-btn i {
        font-size: 19px;
    }
}

/* Tablet Small */
@media (max-width: 768px) {
    .submit-receipt-btn {
        width: 100%;
        padding: 16px 32px;
        font-size: 14px;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .crypto-payment-section {
        padding: 70px 0;
    }
    
    .crypto-section-header {
        margin-bottom: 50px;
    }
    
    .crypto-section-title {
        font-size: 36px;
    }
    
    .crypto-qr-card,
    .crypto-wallet-card {
        padding: 30px 25px;
    }
    
    .qr-code-wrapper {
        width: 240px;
        height: 240px;
    }
    
    .wallet-address-box {
        flex-direction: column;
    }
    
    .copy-address-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    /* Submit Receipt Button Responsive */
    .submit-receipt-btn {
        width: 100%;
        padding: 15px 28px;
        font-size: 14px;
    }
    
    .submit-receipt-btn i {
        font-size: 18px;
    }
    
    .payment-warning {
        padding: 12px 16px;
        font-size: 11px;
    }
    
    .payment-warning i {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .crypto-section-title {
        font-size: 32px;
    }
    
    .qr-code-wrapper {
        width: 220px;
        height: 220px;
    }
    
    .crypto-qr-card,
    .crypto-wallet-card {
        padding: 25px 20px;
    }
    
    /* Submit Receipt Button - Mobile Small */
    .submit-receipt-btn {
        padding: 14px 24px;
        font-size: 13px;
        gap: 8px;
    }
    
    .submit-receipt-btn i {
        font-size: 16px;
    }
    
    .payment-warning {
        padding: 10px 14px;
        font-size: 10px;
        gap: 8px;
    }
    
    .payment-warning i {
        font-size: 16px;
    }
}

/* Mobile Extra Small */
@media (max-width: 375px) {
    .crypto-section-title {
        font-size: 28px;
    }
    
    .qr-code-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .crypto-qr-card,
    .crypto-wallet-card {
        padding: 20px 16px;
    }
    
    /* Submit Receipt Button - Extra Small */
    .submit-receipt-btn {
        padding: 13px 20px;
        font-size: 12px;
        gap: 6px;
        border-radius: 14px;
    }
    
    .submit-receipt-btn i {
        font-size: 15px;
    }
    
    .payment-warning {
        padding: 10px 12px;
        font-size: 9.5px;
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
    
    .payment-warning i {
        font-size: 18px;
    }
}

/* Landscape Mode */
@media (max-height: 600px) and (orientation: landscape) {
    .submit-receipt-btn {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .submit-receipt-btn i {
        font-size: 16px;
    }
}

/* ==========================================
   ALBUM INFO SECTION - سکشن اطلاعات آلبوم
   ========================================== */

.album-info-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.album-info-header {
    text-align: center;
    margin-bottom: 60px;
}

.album-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg,
        rgba(108, 99, 255, 0.15) 0%,
        rgba(108, 99, 255, 0.08) 100%
    );
    border: 1px solid rgba(108, 99, 255, 0.3);
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    text-transform: uppercase;
}

.album-info-badge i {
    font-size: 16px;
}

.album-info-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.album-info-title .title-word {
    color: var(--color-text);
}

.album-info-title .gradient {
    background: linear-gradient(135deg,
        #6c63ff 0%,
        rgba(108, 99, 255, 0.7) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.album-info-subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
    opacity: 0.7;
}

/* Album Overview Grid */
.album-overview {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Album Cover Section */
.album-cover-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.album-cover-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(108, 99, 255, 0.05);
    transition: all 0.4s ease;
}

.album-cover-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(108, 99, 255, 0.1);
    border-color: rgba(108, 99, 255, 0.2);
}

.album-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.album-cover-wrapper:hover .album-cover-img {
    transform: scale(1.05);
}

.album-cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(108, 99, 255, 0.1) 0%,
        rgba(108, 99, 255, 0.05) 100%
    );
    color: rgba(108, 99, 255, 0.4);
}

.album-cover-placeholder i {
    font-size: 80px;
}

.album-cover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-cover-wrapper:hover .album-cover-overlay {
    opacity: 1;
}

.album-play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg,
        var(--color-accent) 0%,
        rgba(108, 99, 255, 0.9) 100%
    );
    color: white;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
    transition: all 0.3s ease;
}

.album-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(108, 99, 255, 0.6);
}

.album-play-btn i {
    margin-left: 3px;
}

/* Album Versions List */
.album-versions-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Album Version Card */
.album-version-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    cursor: pointer;
}

.album-version-card:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(108, 99, 255, 0.3);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(108, 99, 255, 0.15);
}

/* Digital Version */
.album-version-card.digital:hover {
    background: linear-gradient(145deg,
        rgba(108, 99, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 100%
    );
}

/* Physical Version */
.album-version-card.physical {
    background: linear-gradient(145deg,
        rgba(108, 99, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.03) 100%
    );
    border-color: rgba(108, 99, 255, 0.2);
}

.album-version-card.physical:hover {
    background: linear-gradient(145deg,
        rgba(108, 99, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.04) 100%
    );
    border-color: rgba(108, 99, 255, 0.4);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.25),
        0 0 40px rgba(108, 99, 255, 0.25);
}

/* VIP Version */
.album-version-card.vip {
    background: linear-gradient(145deg,
        rgba(255, 215, 0, 0.04) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border-color: rgba(255, 215, 0, 0.25);
}

.album-version-card.vip:hover {
    background: linear-gradient(145deg,
        rgba(255, 215, 0, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 100%
    );
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.25),
        0 0 40px rgba(255, 215, 0, 0.15);
}

/* Version Icon Wrapper */
.version-icon-wrapper {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg,
        rgba(108, 99, 255, 0.15) 0%,
        rgba(108, 99, 255, 0.08) 100%
    );
    border: 2px solid rgba(108, 99, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.album-version-card:hover .version-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
}

.version-icon-wrapper i {
    font-size: 24px;
    color: var(--color-accent);
}

/* VIP Icon */
.album-version-card.vip .version-icon-wrapper {
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.2) 0%,
        rgba(255, 215, 0, 0.1) 100%
    );
    border-color: rgba(255, 215, 0, 0.4);
}

.album-version-card.vip .version-icon-wrapper i {
    color: #FFD700;
}

.album-version-card.vip:hover .version-icon-wrapper {
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* Version Info */
.version-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 2;
}

.version-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    letter-spacing: -0.3px;
}

.version-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    opacity: 0.8;
    margin: 0;
    line-height: 1.4;
}

/* Version Badge */
.version-badge {
    padding: 5px 12px;
    border-radius: 12px;
    background: rgba(108, 99, 255, 0.15);
    border: 1px solid rgba(108, 99, 255, 0.3);
    color: var(--color-accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.album-version-card:hover .version-badge {
    background: rgba(108, 99, 255, 0.25);
    border-color: rgba(108, 99, 255, 0.4);
}

.album-version-card.vip .version-badge {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

.album-version-card.vip:hover .version-badge {
    background: rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.5);
}

/* Popular Tag */
.version-popular-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 5px 12px;
    border-radius: 12px;
    background: linear-gradient(135deg,
        var(--color-accent) 0%,
        rgba(108, 99, 255, 0.95) 100%
    );
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    box-shadow: 
        0 4px 12px rgba(108, 99, 255, 0.35),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    z-index: 5;
    animation: pulseTag 2.5s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes pulseTag {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 4px 12px rgba(108, 99, 255, 0.35),
            inset 0 1px 2px rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 
            0 6px 16px rgba(108, 99, 255, 0.45),
            inset 0 1px 2px rgba(255, 255, 255, 0.3);
    }
}

/* VIP Tag */
.version-vip-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 5px 12px;
    border-radius: 12px;
    background: linear-gradient(135deg,
        #FFD700 0%,
        #FFC700 100%
    );
    color: #000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    box-shadow: 
        0 4px 12px rgba(255, 215, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 5;
    white-space: nowrap;
}

.version-vip-tag i {
    font-size: 12px;
    font-weight: 900;
}

/* Album Info Content */
.album-info-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Description Box */
.album-description-box {
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.description-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.description-header i {
    font-size: 24px;
    color: var(--color-accent);
}

.description-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.description-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.description-text p {
    margin: 0 0 15px 0;
}

.description-text p:last-child {
    margin-bottom: 0;
}

/* FAQ Box */
.album-faq-box {
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.faq-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-box-header i {
    font-size: 24px;
    color: var(--color-accent);
}

.faq-box-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* FAQ Item */
.faq-item {
    border-radius: 18px;
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: linear-gradient(145deg,
        rgba(108, 99, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border-color: rgba(108, 99, 255, 0.25);
}

.faq-item.active {
    background: linear-gradient(145deg,
        rgba(108, 99, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 100%
    );
    border-color: rgba(108, 99, 255, 0.3);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 22px;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 15px;
    font-weight: 600;
    text-align: right;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-question span {
    flex: 1;
    line-height: 1.5;
}

.faq-question i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--color-accent);
}

/* FAQ Answer */
.faq-answer {
    display: none;
    padding: 0 22px 20px 22px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    animation: slideDown 0.3s ease;
    text-align: right;
    direction: rtl;
}

.faq-item.active .faq-answer {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .album-overview {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .album-cover-section {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .album-info-section {
        padding: 60px 0;
    }
    
    .album-info-header {
        margin-bottom: 40px;
    }
    
    .album-info-badge {
        font-size: 10px;
        padding: 6px 16px;
    }
    
    .album-info-badge i {
        font-size: 14px;
    }
    
    .album-info-title {
        font-size: 32px;
        gap: 10px;
    }
    
    .album-info-subtitle {
        font-size: 14px;
    }
    
    .album-overview {
        gap: 25px;
    }
    
    .album-cover-wrapper {
        border-radius: 20px;
    }
    
    .album-play-btn {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .album-versions-list {
        gap: 12px;
    }
    
    .album-version-card {
        padding: 16px 18px;
        border-radius: 18px;
    }
    
    .version-icon-wrapper {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .version-icon-wrapper i {
        font-size: 22px;
    }
    
    .version-name {
        font-size: 15px;
    }
    
    .version-desc {
        font-size: 12px;
    }
    
    .version-badge {
        font-size: 9px;
        padding: 4px 10px;
    }
    
    .version-popular-tag,
    .version-vip-tag {
        font-size: 9px;
        padding: 4px 10px;
        top: 6px;
        left: 6px;
    }
    
    .version-vip-tag i {
        font-size: 10px;
    }
    
    .album-description-box,
    .album-faq-box {
        padding: 24px 20px;
        border-radius: 20px;
    }
    
    .description-header,
    .faq-box-header {
        margin-bottom: 18px;
        padding-bottom: 12px;
    }
    
    .description-header i,
    .faq-box-header i {
        font-size: 22px;
    }
    
    .description-header h3,
    .faq-box-header h3 {
        font-size: 18px;
    }
    
    .description-text {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .faq-list {
        gap: 10px;
    }
    
    .faq-item {
        border-radius: 16px;
    }
    
    .faq-question {
        padding: 16px 18px;
        font-size: 14px;
    }
    
    .faq-question i {
        font-size: 18px;
    }
    
    .faq-answer {
        padding: 0 18px 18px 18px;
        font-size: 13px;
        line-height: 1.7;
    }
}

/* ==========================================
   ARTIST SUPPORT SECTION - سکشن پشتیبانی مینیمال و جذاب
   ========================================== */

.artist-support-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Support Content Wrapper - باریک و مینیمال */
.support-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 35px;
    
    /* Glass Neumorphism Ultra Minimal */
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.04) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    
    /* Elegant Shadow */
    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.12),
        0 -5px 25px rgba(255, 255, 255, 0.008),
        inset 0 1px 1px rgba(255, 255, 255, 0.08),
        inset 0 -1px 1px rgba(0, 0, 0, 0.05);
    
    position: relative;
    overflow: hidden;
}

/* Subtle Glow Effect */
.support-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(108, 99, 255, 0.03) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
}

.support-content-wrapper:hover::before {
    left: 100%;
}

.support-content-wrapper:hover {
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow:
        0 18px 55px rgba(0, 0, 0, 0.15),
        0 -5px 30px rgba(255, 255, 255, 0.01),
        inset 0 1px 2px rgba(255, 255, 255, 0.1),
        inset 0 -1px 2px rgba(0, 0, 0, 0.06);
}

/* ==========================================
   ARTIST LOGO - لوگوی آرتیست
   ========================================== */

.support-artist-logo {
    position: relative;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
}

.artist-logo-image,
.artist-logo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover;
    border: 2px solid rgba(108, 99, 255, 0.3);
    box-shadow:
        0 6px 20px rgba(108, 99, 255, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.artist-logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.artist-logo-placeholder svg {
    color: var(--color-accent);
    filter: drop-shadow(0 0 6px rgba(108, 99, 255, 0.3));
}

/* Verified Badge */
.verified-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        var(--color-accent) 0%,
        rgba(108, 99, 255, 0.85) 100%
    );
    border: 2px solid rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
}

.verified-badge i {
    font-size: 14px;
    color: #ffffff;
}

/* ==========================================
   SUPPORT MESSAGE - پیام پشتیبانی
   ========================================== */

.support-message-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 10px;
}

.message-icon-inline {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg,
        rgba(108, 99, 255, 0.12) 0%,
        rgba(108, 99, 255, 0.06) 100%
    );
    border: 1px solid rgba(108, 99, 255, 0.2);
    flex-shrink: 0;
}

.message-icon-inline i {
    font-size: 24px;
    color: var(--color-accent);
}

.message-text-wrapper {
    flex: 1;
}

.support-message-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 4px 0;
    letter-spacing: -0.3px;
}

.support-message-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
    opacity: 0.8;
}

/* ==========================================
   TELEGRAM INFO - اطلاعات تلگرام
   ========================================== */

.telegram-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 16px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.telegram-icon-wrapper {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg,
        rgba(42, 171, 238, 0.15) 0%,
        rgba(42, 171, 238, 0.08) 100%
    );
    border: 1px solid rgba(42, 171, 238, 0.25);
}

.telegram-icon-wrapper i {
    font-size: 20px;
    color: #2AABEE;
}

.telegram-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.telegram-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--color-text-muted);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.telegram-id {
    font-size: 13px;
    font-weight: 700;
    color: #2AABEE;
    direction: ltr;
    text-align: left;
}

/* ==========================================
   SUPPORT BUTTON - دکمه پشتیبانی
   ========================================== */

.support-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 16px;
    background: linear-gradient(135deg,
        var(--color-accent) 0%,
        rgba(108, 99, 255, 0.88) 100%
    );
    border: 1px solid rgba(108, 99, 255, 0.4);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.2px;
    box-shadow:
        0 6px 20px rgba(108, 99, 255, 0.22),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.support-action-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.support-action-btn:hover::before {
    opacity: 1;
}

.support-action-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 28px rgba(108, 99, 255, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.25);
    border-color: rgba(108, 99, 255, 0.5);
}

.btn-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.btn-label {
    white-space: nowrap;
}

/* ==========================================
   ARTIST SUPPORT RESPONSIVE - ریسپانسیو کامل
   ========================================== */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .artist-support-section {
        padding: 50px 0;
    }
    
    .support-content-wrapper {
        flex-direction: column;
        align-items: stretch;
        padding: 25px 30px;
        gap: 20px;
    }
    
    .support-artist-logo {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .support-message-content {
        flex-direction: column;
        text-align: center;
        padding: 0;
    }
    
    .message-icon-inline {
        margin: 0 auto;
    }
    
    .telegram-info {
        justify-content: center;
        width: 100%;
    }
    
    .support-action-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    .artist-support-section {
        padding: 40px 0;
    }
    
    .support-content-wrapper {
        padding: 20px 20px;
        gap: 16px;
        border-radius: 20px;
        margin: 0 10px;
    }
    
    .support-artist-logo {
        width: 55px;
        height: 55px;
    }
    
    .message-icon-inline {
        width: 42px;
        height: 42px;
    }
    
    .message-icon-inline i {
        font-size: 20px;
    }
    
    .support-message-title {
        font-size: 14px;
    }
    
    .support-message-text {
        font-size: 12px;
    }
    
    .telegram-info {
        padding: 8px 12px;
    }
    
    .telegram-icon-wrapper {
        width: 32px;
        height: 32px;
    }
    
    .telegram-icon-wrapper i {
        font-size: 18px;
    }
    
    .telegram-label {
        font-size: 9px;
    }
    
    .telegram-id {
        font-size: 12px;
    }
    
    .support-action-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .btn-icon i {
        font-size: 16px;
    }
}

/* Extra Small Mobile (Below 375px) */
@media (max-width: 374px) {
    .support-content-wrapper {
        padding: 18px 16px;
        margin: 0 8px;
    }
    
    .support-artist-logo {
        width: 50px;
        height: 50px;
    }
    
    .message-icon-inline {
        width: 38px;
        height: 38px;
    }
    
    .telegram-info {
        padding: 7px 10px;
    }
    
    .support-action-btn {
        padding: 11px 18px;
    }
}
/* ==========================================
   PLATFORMS SECTION - سکشن پلتفرم‌ها
   ========================================== */
.platforms-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    margin: 60px 0;
}
/* Platforms Content Container */
.platforms-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}
/* Background Image */
.platforms-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    border-radius: 20px;
}
.platforms-background .bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.3;
    filter: blur(2px);
}
.platforms-content:hover .platforms-background .bg-image {
    opacity: 0.4;
    filter: blur(1px);
}
/* Platforms Box */
.platforms-box {
    position: relative;
    z-index: 2;
    width: 800px;
    max-width: 90%;
    padding: 40px 30px;
    /* Neumorphism Background */
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.03) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 25px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    /* Neumorphism Shadow */
    box-shadow: 
        20px 20px 50px rgba(0, 0, 0, 0.15),
        -15px -15px 35px rgba(255, 255, 255, 0.02),
        inset 3px 3px 10px rgba(255, 255, 255, 0.1),
        inset -3px -3px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}
.platforms-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.06) 50%, 
        transparent 100%
    );
    border-radius: 25px;
}
.platforms-box:hover::before {
    left: 100%;
}
.platforms-box:hover {
    box-shadow: 
        25px 25px 70px rgba(0, 0, 0, 0.18),
        -20px -20px 45px rgba(255, 255, 255, 0.025),
        inset 4px 4px 12px rgba(255, 255, 255, 0.12),
        inset -4px -4px 12px rgba(0, 0, 0, 0.06);
}
/* CNJIM Title */
.platforms-title {
    margin-bottom: 30px;
}
.title-text {
    font-size: 32px;
    font-weight: 800;
    color: oklch(0.871 0.006 286.286);
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}
.title-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #dc2626 50%, 
        transparent 100%
    );
    opacity: 0.8;
}
/* Social Icons Grid */
.social-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    justify-items: center;
}
/* Social Icon */
.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.01) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-decoration: none;
    color: oklch(0.871 0.006 286.286);
    position: relative;
    overflow: hidden;
    /* Neumorphism Shadow */
    box-shadow: 
        8px 8px 20px rgba(0, 0, 0, 0.1),
        -6px -6px 15px rgba(255, 255, 255, 0.015),
        inset 1px 1px 3px rgba(255, 255, 255, 0.06),
        inset -1px -1px 3px rgba(0, 0, 0, 0.03);
}
.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(220, 38, 38, 0.05);
    opacity: 0;
    border-radius: 18px;
}
.social-icon:hover::before {
    opacity: 1;
}
.social-icon:hover {
    border-color: rgba(220, 38, 38, 0.2);
    box-shadow: 
        12px 12px 30px rgba(0, 0, 0, 0.15),
        -8px -8px 20px rgba(255, 255, 255, 0.02),
        inset 2px 2px 6px rgba(255, 255, 255, 0.08),
        inset -2px -2px 6px rgba(0, 0, 0, 0.04),
        0 0 20px rgba(220, 38, 38, 0.1);
}
.social-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.social-icon:hover svg {
    color: #dc2626;
    filter: drop-shadow(0 4px 8px rgba(220, 38, 38, 0.2));
}
.icon-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8;
}
.social-icon:hover .icon-label {
    opacity: 1;
    color: #dc2626;
    text-shadow: 0 0 5px rgba(220, 38, 38, 0.2);
}
/* Platform Specific Colors */
.social-icon.instagram:hover svg,
.social-icon.instagram:hover .icon-label {
    color: #E4405F;
}
.social-icon.telegram:hover svg,
.social-icon.telegram:hover .icon-label {
    color: #0088cc;
}
.social-icon.youtube:hover svg,
.social-icon.youtube:hover .icon-label {
    color: #FF0000;
}
.social-icon.spotify:hover svg,
.social-icon.spotify:hover .icon-label {
    color: #1DB954;
}
.social-icon.apple:hover svg,
.social-icon.apple:hover .icon-label {
    color: #000000;
}
.social-icon.soundcloud:hover svg,
.social-icon.soundcloud:hover .icon-label {
    color: #ff5500;
}
/* ==========================================
   PLATFORMS RESPONSIVE - طراحی ریسپانسیو
   ========================================== */
/* Large Screens (1200px - 1399px) */
/* Medium Large Screens (992px - 1199px) */
/* Medium Screens (768px - 991px) */
/* Small Screens (576px - 767px) */
/* Extra Small Screens (< 576px) */
/* Landscape Mobile Optimization */
/* High DPI Displays */
/* Print Styles */

/* ==========================================
   MODERN MINIMAL FOOTER - فوتر مدرن و مینیمال
   ========================================== */

.site-footer {
    padding: 80px 0 30px 0;
    margin-top: 120px;
    position: relative;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(15, 15, 15, 0.5) 100%
    );
}

/* Footer Main Content */
.footer-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

/* Flat Neumorphism Effect */
.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.05) 100%
    );
    border-radius: 30px;
    pointer-events: none;
}

/* Subtle Line Accent */
.footer-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    right: 50px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(108, 99, 255, 0.3) 50%,
        transparent 100%
    );
}

/* Footer Brand Section */
.footer-brand {
    flex: 1;
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-image {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-logo .logo-placeholder {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg,
        rgba(108, 99, 255, 0.1) 0%,
        rgba(108, 99, 255, 0.05) 100%
    );
    border: 1px solid rgba(108, 99, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.footer-logo .logo-placeholder svg {
    color: var(--color-accent);
    filter: drop-shadow(0 2px 8px rgba(108, 99, 255, 0.3));
    z-index: 1;
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.02em;
}

/* Footer Social Section */
.footer-social {
    flex-shrink: 0;
}

.footer-section-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 22px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glow Effect */
.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle,
        rgba(108, 99, 255, 0.3) 0%,
        transparent 70%
    );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    opacity: 0;
}

.social-link:hover::before {
    width: 120%;
    height: 120%;
    opacity: 1;
}

.social-link:hover {
    border-color: rgba(108, 99, 255, 0.5);
    background: linear-gradient(145deg,
        rgba(108, 99, 255, 0.12) 0%,
        rgba(108, 99, 255, 0.06) 100%
    );
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 10px 25px rgba(108, 99, 255, 0.25),
        0 0 20px rgba(108, 99, 255, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.social-link:active {
    transform: translateY(-1px) scale(1.02);
}

.social-link i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    font-size: 24px;
    line-height: 1;
}

.social-link:hover i {
    transform: scale(1.15) rotate(5deg);
}

/* Specific Social Network Colors */
.social-instagram:hover {
    background: linear-gradient(145deg,
        rgba(225, 48, 108, 0.15) 0%,
        rgba(193, 53, 132, 0.1) 100%
    );
    border-color: rgba(225, 48, 108, 0.5);
    box-shadow: 
        0 10px 25px rgba(225, 48, 108, 0.25),
        0 0 20px rgba(225, 48, 108, 0.15);
}

.social-instagram:hover::before {
    background: radial-gradient(circle,
        rgba(225, 48, 108, 0.3) 0%,
        transparent 70%
    );
}

.social-telegram:hover {
    background: linear-gradient(145deg,
        rgba(42, 171, 238, 0.15) 0%,
        rgba(42, 171, 238, 0.1) 100%
    );
    border-color: rgba(42, 171, 238, 0.5);
    box-shadow: 
        0 10px 25px rgba(42, 171, 238, 0.25),
        0 0 20px rgba(42, 171, 238, 0.15);
}

.social-telegram:hover::before {
    background: radial-gradient(circle,
        rgba(42, 171, 238, 0.3) 0%,
        transparent 70%
    );
}

.social-youtube:hover {
    background: linear-gradient(145deg,
        rgba(255, 0, 0, 0.15) 0%,
        rgba(255, 0, 0, 0.1) 100%
    );
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 
        0 10px 25px rgba(255, 0, 0, 0.25),
        0 0 20px rgba(255, 0, 0, 0.15);
}

.social-youtube:hover::before {
    background: radial-gradient(circle,
        rgba(255, 0, 0, 0.3) 0%,
        transparent 70%
    );
}

.social-spotify:hover {
    background: linear-gradient(145deg,
        rgba(30, 215, 96, 0.15) 0%,
        rgba(30, 215, 96, 0.1) 100%
    );
    border-color: rgba(30, 215, 96, 0.5);
    box-shadow: 
        0 10px 25px rgba(30, 215, 96, 0.25),
        0 0 20px rgba(30, 215, 96, 0.15);
}

.social-spotify:hover::before {
    background: radial-gradient(circle,
        rgba(30, 215, 96, 0.3) 0%,
        transparent 70%
    );
}

.social-soundcloud:hover {
    background: linear-gradient(145deg,
        rgba(255, 85, 0, 0.15) 0%,
        rgba(255, 85, 0, 0.1) 100%
    );
    border-color: rgba(255, 85, 0, 0.5);
    box-shadow: 
        0 10px 25px rgba(255, 85, 0, 0.25),
        0 0 20px rgba(255, 85, 0, 0.15);
}

.social-soundcloud:hover::before {
    background: radial-gradient(circle,
        rgba(255, 85, 0, 0.3) 0%,
        transparent 70%
    );
}

/* Phosphor Icons Size Adjustments */
.ph {
    font-size: 20px;
    line-height: 1;
}

.hero-btn .ph {
    font-size: 18px;
}

.scroll-arrow .ph {
    font-size: 24px;
}

.slide-placeholder .ph {
    font-size: 48px;
    opacity: 0.3;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding: 25px 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-weight: 400;
}

.footer-developer {
    display: flex;
    align-items: center;
}

.developer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.developer-link:hover {
    background: rgba(108, 99, 255, 0.1);
    border-color: var(--color-accent);
    color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(108, 99, 255, 0.15);
}

.developer-link svg {
    width: 16px;
    height: 16px;
}

/* ==========================================
   FOOTER RESPONSIVE DESIGN - ریسپانسیو فوتر
   ========================================== */

/* Large Desktop (1400px+) - بزرگترین صفحه‌ها */
@media (min-width: 1400px) {
    .footer-main {
        padding: 60px 80px;
        gap: 80px;
    }
    
    .footer-brand {
        max-width: 500px;
    }
    
    .footer-tagline {
        font-size: 16px;
    }
    
    .social-link {
        width: 52px;
        height: 52px;
    }
    
    .social-link i {
        font-size: 26px;
    }
    
    .footer-bottom {
        padding: 30px 80px;
    }
}

/* Desktop (1200px - 1399px) - دسکتاپ معمولی */
@media (max-width: 1399px) and (min-width: 1200px) {
    .footer-main {
        padding: 50px 60px;
        gap: 60px;
    }
    
    .footer-brand {
        max-width: 450px;
    }
    
    .footer-bottom {
        padding: 25px 60px;
    }
}

/* Laptop (992px - 1199px) - لپ‌تاپ */
@media (max-width: 1199px) and (min-width: 992px) {
    .site-footer {
        padding: 60px 0 30px 0;
        margin-top: 100px;
    }
    
    .footer-main {
        padding: 40px 50px;
        gap: 50px;
    }
    
    .footer-brand {
        max-width: 380px;
    }
    
    .footer-logo .logo-image,
    .footer-logo .logo-placeholder {
        width: 60px;
        height: 60px;
    }
    
    .footer-tagline {
        font-size: 14px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
    }
    
    .social-link i {
        font-size: 23px;
    }
    
    .footer-bottom {
        padding: 20px 50px;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-copyright p {
        font-size: 12px;
    }
    
    .developer-link {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* Tablet (768px - 991px) - تبلت */
@media (max-width: 991px) and (min-width: 768px) {
    .site-footer {
        padding: 50px 0 25px 0;
        margin-top: 80px;
    }
    
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 35px 40px;
        gap: 35px;
    }
    
    .footer-brand {
        max-width: 100%;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 15px auto;
        width: 100%;
    }
    
    .footer-logo .logo-image,
    .footer-logo .logo-placeholder {
        width: 65px;
        height: 65px;
    }
    
    .footer-tagline {
        font-size: 14px;
        text-align: center;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-social {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section-title {
        text-align: center;
        margin-bottom: 18px;
    }
    
    .social-links {
        justify-content: center;
        gap: 15px;
        max-width: 100%;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
    }
    
    .social-link i {
        font-size: 25px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px 40px;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .footer-copyright p {
        font-size: 12px;
    }
    
    .developer-link {
        font-size: 12px;
        padding: 9px 18px;
    }
}

/* Mobile (576px - 767px) - موبایل بزرگ */
@media (max-width: 767px) and (min-width: 576px) {
    .site-footer {
        padding: 40px 0 20px 0;
        margin-top: 60px;
    }
    
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 25px;
        gap: 30px;
        border-radius: 20px;
    }
    
    .footer-main::after {
        left: 25px;
        right: 25px;
    }
    
    .footer-brand {
        max-width: 100%;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 12px auto;
        width: 100%;
    }
    
    .footer-logo .logo-image,
    .footer-logo .logo-placeholder {
        width: 55px;
        height: 55px;
        border-radius: 16px;
    }
    
    .footer-logo .logo-placeholder svg {
        width: 32px;
        height: 32px;
    }
    
    .footer-tagline {
        font-size: 13px;
        line-height: 1.6;
        text-align: center;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .footer-social {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section-title {
        font-size: 13px;
        text-align: center;
        margin-bottom: 16px;
    }
    
    .social-links {
        justify-content: center;
        gap: 12px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 20px;
        border-radius: 11px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 18px 25px;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .footer-copyright p {
        font-size: 11px;
        line-height: 1.5;
    }
    
    .developer-link {
        font-size: 11px;
        padding: 8px 16px;
        gap: 6px;
        border-radius: 10px;
    }
    
    .developer-link svg {
        width: 14px;
        height: 14px;
    }
}

/* Small Mobile (320px - 575px) - موبایل کوچک */
@media (max-width: 575px) {
    .site-footer {
        padding: 35px 0 18px 0;
        margin-top: 50px;
    }
    
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 20px;
        gap: 25px;
        border-radius: 18px;
        margin: 0 10px;
    }
    
    .footer-main::before {
        border-radius: 18px;
    }
    
    .footer-main::after {
        left: 20px;
        right: 20px;
    }
    
    .footer-brand {
        max-width: 100%;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 10px auto;
        width: 100%;
    }
    
    .footer-logo .logo-image,
    .footer-logo .logo-placeholder {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }
    
    .footer-logo .logo-placeholder svg {
        width: 28px;
        height: 28px;
    }
    
    .footer-tagline {
        font-size: 12px;
        line-height: 1.6;
        text-align: center;
        max-width: 95%;
        margin: 0 auto;
        opacity: 0.7;
    }
    
    .footer-social {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section-title {
        font-size: 12px;
        text-align: center;
        margin-bottom: 14px;
        letter-spacing: 0.8px;
    }
    
    .social-links {
        justify-content: center;
        gap: 10px;
        max-width: 100%;
        padding: 0 5px;
        flex-wrap: wrap;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 19px;
        border-radius: 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 15px 20px;
        margin: 0 10px;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .footer-copyright p {
        font-size: 10px;
        line-height: 1.5;
        opacity: 0.6;
    }
    
    .developer-link {
        font-size: 10px;
        padding: 7px 14px;
        gap: 5px;
        border-radius: 9px;
    }
    
    .developer-link svg {
        width: 13px;
        height: 13px;
    }
}

/* Extra Small Mobile (Below 375px) - موبایل خیلی کوچک */
@media (max-width: 374px) {
    .footer-main {
        padding: 20px 15px;
        gap: 20px;
        margin: 0 8px;
    }
    
    .footer-main::after {
        left: 15px;
        right: 15px;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 10px auto;
        width: 100%;
    }
    
    .footer-logo .logo-image,
    .footer-logo .logo-placeholder {
        width: 45px;
        height: 45px;
        border-radius: 12px;
        margin: 0 auto;
    }
    
    .footer-tagline {
        font-size: 11px;
    }
    
    .footer-section-title {
        font-size: 11px;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }
    
    .footer-bottom {
        padding: 12px 15px;
        margin: 0 8px;
    }
    
    .footer-copyright p {
        font-size: 9px;
    }
    
    .developer-link {
        font-size: 9px;
        padding: 6px 12px;
    }
}

/* Landscape Orientation - حالت افقی */
@media (max-height: 500px) and (orientation: landscape) {
    .site-footer {
        margin-top: 40px;
        padding: 30px 0 15px 0;
    }
    
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 30px;
        gap: 30px;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 8px auto;
    }
    
    .footer-logo .logo-image,
    .footer-logo .logo-placeholder {
        width: 40px;
        height: 40px;
        margin: 0 auto;
    }
    
    .footer-tagline {
        font-size: 11px;
        max-width: 250px;
    }
    
    .footer-section-title {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .footer-bottom {
        padding: 12px 30px;
    }
}

/* High DPI Displays - صفحه‌های رتینا */
@media (-webkit-min-device-pixel-ratio: 2),
       (min-resolution: 192dpi) {
    .footer-main {
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
    }
    
    .footer-logo .logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Dark Mode Support - پشتیبانی حالت تاریک */
@media (prefers-color-scheme: dark) {
    .footer-main {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.1);
    }
}

/* Reduced Motion - حذف انیمیشن‌ها */
@media (prefers-reduced-motion: reduce) {
    .social-link,
    .developer-link {
        transition: none;
    }
    
    .footer-main::before {
        display: none;
    }
}

/* Mobile Logo Centering - لوگو وسط در موبایل */
@media (max-width: 991px) {
    .footer-logo {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto 10px auto !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .footer-logo .logo-image,
    .footer-logo .logo-placeholder {
        display: block;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .footer-brand {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
    }
}

/* ==========================================
   WORDPRESS ADMIN BAR SUPPORT - پشتیبانی از ادمین بار وردپرس
   ========================================== */

/* Admin Bar Compatibility - سازگاری با ادمین بار */
body.admin-bar {
    padding-top: 0 !important;
}

/* Header positioning when Admin Bar is present */
body.admin-bar .minimal-header,
body.admin-bar .glass-header {
    top: calc(32px + 15px) !important;
}

/* Mobile Admin Bar (under 783px) */
@media screen and (max-width: 782px) {
    body.admin-bar .minimal-header,
    body.admin-bar .glass-header {
        top: calc(46px + 15px) !important;
    }
}

/* Smaller mobile screens with Admin Bar */
@media screen and (max-width: 600px) {
    body.admin-bar .minimal-header,
    body.admin-bar .glass-header {
        top: calc(46px + 8px) !important;
    }
}

/* Fix z-index for Admin Bar */
#wpadminbar {
    z-index: 99999 !important;
}

/* Ensure header stays below Admin Bar */
body.admin-bar .minimal-header,
body.admin-bar .glass-header {
    z-index: 1000 !important;
}

/* Hero Section top spacing when logged in */
body.admin-bar .hero-section,
body.admin-bar .site-content {
    margin-top: 0;
}

/* Mobile menu positioning with Admin Bar */
body.admin-bar.menu-open .glass-menu {
    top: calc(46px + 70px);
    max-height: calc(100vh - 46px - 70px);
}

@media screen and (min-width: 783px) {
    body.admin-bar.menu-open .glass-menu {
        top: calc(32px + 85px);
        max-height: calc(100vh - 32px - 85px);
    }
}

/* Admin Bar color scheme compatibility */
#wpadminbar {
    background: #1d1d1d;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Admin Bar links styling for dark theme */
#wpadminbar .ab-item,
#wpadminbar a.ab-item,
#wpadminbar > #wp-toolbar span.ab-label,
#wpadminbar > #wp-toolbar span.noticon {
    color: rgba(255, 255, 255, 0.8);
}

#wpadminbar .ab-item:hover,
#wpadminbar a.ab-item:hover,
#wpadminbar > #wp-toolbar > #wp-admin-bar-root-default .ab-item:hover {
    color: #fff;
    background: rgba(108, 99, 255, 0.2);
}

/* Admin Bar sub-menus */
#wpadminbar .ab-submenu {
    background: #2d2d2d;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

#wpadminbar .ab-submenu .ab-item:hover {
    background: rgba(108, 99, 255, 0.15);
}

/* RTL Support for Admin Bar */
body.rtl.admin-bar .minimal-header,
body.rtl.admin-bar .glass-header {
    right: 15px;
    left: 15px;
}
/* ==========================================
   PREMIUM MINIMAL HEADER - هدر پریمیوم مینیمال
   ========================================== */

/* Base Header */
.premium-header {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.06) 100%
    );
    border-radius: 32px;
    pointer-events: none;
    opacity: 0.6;
}

.premium-header.scrolled {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

/* Header Container */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 28px;
    height: 64px;
    position: relative;
    z-index: 2;
}

/* Logo - Left Side */
.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 3;
}

.logo-img {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-primary);
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Desktop Navigation - Center */
.header-nav {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 36px;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    font-family: var(--font-primary);
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.5) 100%);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-menu a:hover::before {
    width: 100%;
}

/* Desktop Social - Right Side */
.header-social {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    z-index: 3;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    font-size: 19px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.05);
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    flex-shrink: 0;
    z-index: 3;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.bar {
    width: 22px;
    height: 2.5px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ==========================================
   FULLSCREEN MOBILE MENU - منوی موبایل
   ========================================== */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    overflow-y: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 100px 30px 60px;
    position: relative;
}

/* Close Button */
.menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.menu-close:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Mobile Navigation */
.mobile-nav {
    margin-bottom: 60px;
    width: 100%;
    max-width: 500px;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mobile-nav-menu li {
    margin: 0;
    padding: 0;
}

.mobile-nav-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 26px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    direction: rtl;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-menu a span {
    flex: 1;
    text-align: right;
}

.mobile-nav-menu a i {
    font-size: 30px;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 18px;
    transition: all 0.3s ease;
}

.mobile-nav-menu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
}

.mobile-nav-menu a:hover i {
    opacity: 1;
    color: #ffffff;
    transform: scale(1.1);
}

/* Mobile Social */
.mobile-social {
    width: 100%;
    max-width: 500px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-social-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 28px 0;
    text-align: center;
    letter-spacing: 0.15em;
    font-family: var(--font-primary);
    text-transform: uppercase;
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.mobile-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-social-icon:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.15);
}

/* ==========================================
   HEADER RESPONSIVE - رسپانسیو هدر
   ========================================== */

/* Tablets & Below (991px and down) */
@media (max-width: 991px) {
    .premium-header {
        top: 16px;
        left: 16px;
        right: 16px;
        border-radius: 26px;
    }
    
    .header-container {
        padding: 12px 24px;
        height: 60px;
    }
    
    /* Hide Desktop Nav & Social */
    .header-nav,
    .header-social {
        display: none;
    }
    
    /* Show Mobile Toggle */
    .menu-toggle {
        display: flex;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    /* Mobile Menu Adjustments */
    .mobile-menu-content {
        padding: 90px 25px 50px;
    }
    
    .menu-close {
        top: 25px;
        right: 25px;
        width: 48px;
        height: 48px;
        font-size: 26px;
    }
    
    .mobile-nav-menu a {
        font-size: 24px;
        padding: 20px 24px;
    }
    
    .mobile-nav-menu a i {
        font-size: 28px;
    }
    
    .mobile-social-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
}

/* Mobile & Small Tablets (768px and down) */
@media (max-width: 768px) {
    .premium-header {
        top: 14px;
        left: 14px;
        right: 14px;
        border-radius: 22px;
    }
    
    .header-container {
        padding: 10px 20px;
        height: 56px;
    }
    
    .menu-toggle {
        width: 40px;
        height: 40px;
    }
    
    .bar {
        width: 20px;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .logo-text {
        font-size: 17px;
    }
    
    .mobile-menu-content {
        padding: 80px 22px 45px;
    }
    
    .menu-close {
        top: 22px;
        right: 22px;
        width: 46px;
        height: 46px;
        font-size: 24px;
    }
    
    .mobile-nav {
        margin-bottom: 50px;
    }
    
    .mobile-nav-menu {
        gap: 12px;
    }
    
    .mobile-nav-menu a {
        font-size: 22px;
        padding: 18px 22px;
    }
    
    .mobile-nav-menu a i {
        font-size: 26px;
        margin-right: 16px;
    }
    
    .mobile-social {
        padding-top: 35px;
    }
    
    .mobile-social-title {
        margin-bottom: 24px;
    }
    
    .mobile-social-links {
        gap: 18px;
    }
    
    .mobile-social-icon {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }
}

/* Small Mobile (576px and down) */
@media (max-width: 576px) {
    .premium-header {
        top: 12px;
        left: 12px;
        right: 12px;
        border-radius: 20px;
    }
    
    .header-container {
        padding: 9px 18px;
        height: 52px;
    }
    
    .menu-toggle {
        width: 38px;
        height: 38px;
        gap: 4px;
    }
    
    .bar {
        width: 19px;
        height: 2px;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .mobile-menu-content {
        padding: 75px 20px 40px;
    }
    
    .menu-close {
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
    
    .mobile-nav {
        margin-bottom: 45px;
    }
    
    .mobile-nav-menu {
        gap: 10px;
    }
    
    .mobile-nav-menu a {
        font-size: 20px;
        padding: 16px 20px;
        border-radius: 16px;
    }
    
    .mobile-nav-menu a i {
        font-size: 24px;
        margin-right: 14px;
    }
    
    .mobile-social {
        padding-top: 32px;
    }
    
    .mobile-social-title {
        font-size: 13px;
        margin-bottom: 22px;
    }
    
    .mobile-social-links {
        gap: 16px;
    }
    
    .mobile-social-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
}

/* Extra Small Mobile (400px and down) */
@media (max-width: 400px) {
    .premium-header {
        top: 10px;
        left: 10px;
        right: 10px;
        border-radius: 18px;
    }
    
    .header-container {
        padding: 8px 16px;
        height: 50px;
    }
    
    .menu-toggle {
        width: 36px;
        height: 36px;
        gap: 4px;
    }
    
    .bar {
        width: 18px;
        height: 2px;
    }
    
    .logo-img {
        height: 26px;
    }
    
    .logo-text {
        font-size: 15px;
    }
    
    .mobile-menu-content {
        padding: 70px 18px 38px;
    }
    
    .menu-close {
        top: 18px;
        right: 18px;
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
    
    .mobile-nav {
        margin-bottom: 40px;
    }
    
    .mobile-nav-menu {
        gap: 9px;
    }
    
    .mobile-nav-menu a {
        font-size: 18px;
        padding: 15px 18px;
        border-radius: 14px;
    }
    
    .mobile-nav-menu a i {
        font-size: 22px;
        margin-right: 12px;
    }
    
    .mobile-social {
        padding-top: 30px;
    }
    
    .mobile-social-title {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .mobile-social-links {
        gap: 14px;
    }
    
    .mobile-social-icon {
        width: 54px;
        height: 54px;
        font-size: 20px;
    }
}
