﻿        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap');
        
        :root {
            --primary-black: #000000;
            --secondary-black: #0F0F0F;
            --primary-orange: #CC9933;
            --secondary-orange: #E6B84D;
            --text-primary: #ffffff;
            --text-secondary: #e5e5e5;
            --text-muted: #a1a1aa;
            --border-subtle: rgba(204, 153, 51, 0.1);
            --shadow-glow: rgba(204, 153, 51, 0.3);
        }
        
        * {
            font-family: 'Inter', sans-serif;
            box-sizing: border-box;
        }
        
        .rtl * {
            font-family: 'Vazirmatn', sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        
        body {
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .text-xs {
            font-size: 0.85rem !important;
            line-height: 1.55;
        }

        .text-sm {
            font-size: 0.95rem !important;
            line-height: 1.6;
        }

        .text-base {
            font-size: 1.05rem !important;
            line-height: 1.65;
        }

        
        .fade-in {
            opacity: 1;
        }
        
        .slide-up {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-left {
            opacity: 1;
            transform: translateX(0);
        }
        
        .slide-right {
            opacity: 1;
            transform: translateX(0);
        }
        
        .fade-in-up {
            opacity: 1;
            transform: translateY(0);
        }
        
        .fade-in-left {
            opacity: 1;
            transform: translateX(0);
        }
        
        .fade-in-right {
            opacity: 1;
            transform: translateX(0);
        }
        
        .scale-in {
            opacity: 1;
            transform: scale(1);
        }
        
        .float-gentle {
            animation: floatGentle 12s ease-in-out infinite;
        }
        
        .micro-bounce {
            animation: microBounce 0.3s ease-out;
        }
        
        .pulse-glow {
            animation: pulseGlow 3s ease-in-out infinite;
        }
        
        .shimmer-effect {
            position: relative;
            overflow: hidden;
        }
        
        .shimmer-effect::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
            animation: shimmerMove 3s infinite;
        }
        
        .rotate-gentle {
            animation: rotateGentle 30s linear infinite;
        }
        
        .breathe {
            animation: breathe 6s ease-in-out infinite;
        }
        
        .text-gradient {
            background: linear-gradient(135deg, #E6B84D 0%, #CC9933 50%, #B8860B 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
        }
        
        .text-gradient-hero {
            background: linear-gradient(135deg, #E6B84D 0%, #CC9933 50%, #B8860B 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 3s ease-in-out 1;
        }
        
        .text-shimmer {
            background: linear-gradient(90deg, transparent 0%, rgba(230, 184, 77, 0.4) 50%, transparent 100%);
            background-size: 200% 100%;
            animation: shimmer 3s ease-in-out infinite;
        }
        
        #navTitle {
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .bg-gradient-orange {
            background: linear-gradient(135deg, #CC9933, #E6B84D);
        }
        
        .hover-lift {
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            transform-origin: center;
        }
        
        .hover-lift:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 20px 40px rgba(204, 153, 51, 0.2);
        }
        
        .hover-lift-small {
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            transform-origin: center;
        }
        
        .hover-lift-small:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(204, 153, 51, 0.15);
        }
        
        .nav-link {
            font-size: 1rem;
            position: relative;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            overflow: hidden;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: linear-gradient(90deg, #E6B84D, #CC9933);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            transform: translateX(-50%);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #CC9933, #E6B84D);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            border: 1px solid transparent;
            background-clip: padding-box;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }
        
        .btn-primary:hover::before {
            left: 100%;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 35px rgba(204, 153, 51, 0.4);
            filter: brightness(1.1);
        }
        
        .btn-primary:active {
            transform: translateY(-1px) scale(1.01);
        }
        
        .section-padding {
            padding: 30px 0;
        }
        
        .rtl {
            direction: rtl;
        }
        
        .ltr {
            direction: ltr;
        }
        
        .glass-effect {
            backdrop-filter: blur(20px);
            background: rgba(15, 15, 15, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .contact-form {
            background: linear-gradient(145deg, #0F0F0F, #1a1a1a);
            border: 1px solid var(--border-subtle);
            backdrop-filter: blur(10px);
        }
        
        .form-input {
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(204, 153, 51, 0.2);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            backdrop-filter: blur(5px);
        }
        
        .form-input:focus {
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 3px rgba(204, 153, 51, 0.15);
            outline: none;
            transform: translateY(-2px);
        }
        
        .light-glow {
            position: absolute;
            top: 20%;
            left: 10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle at center, 
                rgba(204, 153, 51, 0.15) 0%,
                rgba(230, 184, 77, 0.1) 30%,
                rgba(204, 153, 51, 0.05) 60%,
                transparent 100%);
            border-radius: 50%;
            filter: blur(60px);
            animation: gentleGlow 12s ease-in-out infinite;
        }
        
        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--primary-orange);
            border-radius: 50%;
            opacity: 0.6;
            animation: particleFloat 8s ease-in-out infinite;
        }
        
        .star-sparkle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: linear-gradient(45deg, #00ffff, #40e0d0);
            animation: starSparkle 4s ease-in-out infinite, starTwinkle 2s ease-in-out infinite;
            pointer-events: none;
        }
        
        .star-sparkle::before {
            content: '';
            position: absolute;
            top: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 8px;
            background: linear-gradient(to bottom, transparent, #00ffff, transparent);
            border-radius: 50%;
        }
        
        .star-sparkle::after {
            content: '';
            position: absolute;
            left: -2px;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 1px;
            background: linear-gradient(to right, transparent, #40e0d0, transparent);
            border-radius: 50%;
        }
        
        .mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            background: rgba(15, 15, 15, 0.95);
            backdrop-filter: blur(20px);
        }
        
        .mobile-menu.open {
            max-height: 500px;
            transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .hamburger {
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .hamburger.open {
            transform: rotate(180deg);
        }
        
        .hamburger svg {
            transition: all 0.3s ease;
        }
        
        .hamburger.open svg {
            transform: scale(0.8);
        }
        
        .hamburger-line {
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            transform-origin: center;
        }
        
        .hamburger.open .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        
        .hamburger.open .hamburger-line:nth-child(2) {
            opacity: 0;
            transform: scale(0);
        }
        
        .hamburger.open .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        
        @keyframes fadeInSmooth {
            from { 
                opacity: 0; 
                transform: translateY(10px) scale(0.98);
            }
            to { 
                opacity: 1; 
                transform: translateY(0) scale(1);
            }
        }
        
        @keyframes slideUpSmooth {
            from { 
                opacity: 0; 
                transform: translateY(20px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }
        
        @keyframes slideLeftSmooth {
            from { 
                opacity: 0; 
                transform: translateX(-20px); 
            }
            to { 
                opacity: 1; 
                transform: translateX(0); 
            }
        }
        
        @keyframes slideRightSmooth {
            from { 
                opacity: 0; 
                transform: translateX(20px); 
            }
            to { 
                opacity: 1; 
                transform: translateX(0); 
            }
        }
        
        @keyframes scaleInSmooth {
            from { 
                opacity: 0; 
                transform: scale(0.9); 
            }
            to { 
                opacity: 1; 
                transform: scale(1); 
            }
        }
        
        @keyframes microBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        
        @keyframes pulseGlow {
            0%, 100% { 
                box-shadow: 0 0 20px rgba(204, 153, 51, 0.3);
                transform: scale(1);
            }
            50% { 
                box-shadow: 0 0 30px rgba(204, 153, 51, 0.5);
                transform: scale(1.02);
            }
        }
        
        @keyframes shimmerMove {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        @keyframes rotateGentle {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        @keyframes breathe {
            0%, 100% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.05); opacity: 1; }
        }
        
        @keyframes floatGentle {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-8px) rotate(0.5deg); }
            50% { transform: translateY(-12px) rotate(0deg); }
            75% { transform: translateY(-6px) rotate(-0.5deg); }
        }
        
        @keyframes gentleGlow {
            0%, 100% { 
                opacity: 0.05; 
                transform: scale(1);
            }
            50% { 
                opacity: 0.08; 
                transform: scale(1.1);
            }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-15px) rotate(1deg); }
            66% { transform: translateY(-8px) rotate(-1deg); }
        }
        
        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }
        
        @keyframes particleFloat {
            0%, 100% { 
                transform: translateY(0px) translateX(0px);
                opacity: 0.3;
            }
            25% { 
                transform: translateY(-20px) translateX(10px);
                opacity: 0.6;
            }
            50% { 
                transform: translateY(-30px) translateX(-5px);
                opacity: 0.8;
            }
            75% { 
                transform: translateY(-15px) translateX(-10px);
                opacity: 0.4;
            }
        }
        
        @keyframes starSparkle {
            0%, 100% { 
                opacity: 0;
                transform: scale(0) rotate(0deg);
            }
            20% { 
                opacity: 0.3;
                transform: scale(0.5) rotate(45deg);
            }
            50% { 
                opacity: 1;
                transform: scale(1) rotate(90deg);
            }
            80% { 
                opacity: 0.6;
                transform: scale(0.8) rotate(135deg);
            }
        }
        
        @keyframes starTwinkle {
            0%, 100% { 
                opacity: 0.2;
                box-shadow: 0 0 6px rgba(0, 255, 255, 0.3);
            }
            50% { 
                opacity: 1;
                box-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 30px rgba(64, 224, 208, 0.6);
            }
        }
        
        .bg-gradient-radial {
            background: radial-gradient(circle, var(--tw-gradient-stops));
        }
        
        @media (max-width: 1920px) {
            .container { max-width: 1400px; margin: 0 auto; }
        }
        
        @media (max-width: 1600px) {
            .container { max-width: 1200px; padding: 0 2rem; }
            html { font-size: 16px; }
        }
        
        @media (max-width: 1400px) {
            .container { max-width: 1000px; padding: 0 1.5rem; }
            .text-6xl { font-size: clamp(2.5rem, 5vw, 3.5rem); line-height: 1.1; }
            .text-4xl { font-size: clamp(1.8rem, 4vw, 2.5rem); line-height: 1.2; }
            .section-padding { padding: clamp(60px, 8vw, 80px) 0; }
        }
        
        @media (max-width: 1200px) {
            .container { max-width: 900px; padding: 0 1.5rem; }
            .text-6xl { font-size: clamp(2.2rem, 4.5vw, 3rem); line-height: 1.1; }
            .text-4xl { font-size: clamp(1.6rem, 3.5vw, 2.25rem); line-height: 1.2; }
            .text-3xl { font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.3; }
            .section-padding { padding: clamp(50px, 7vw, 70px) 0; }
            .light-glow { width: clamp(200px, 25vw, 300px); height: clamp(200px, 25vw, 300px); }
        }
        
        @media (max-width: 1024px) {
            .container { max-width: 100%; padding: 0 1.5rem; }
            .grid.lg\\:grid-cols-2 { 
                grid-template-columns: 1fr; 
                gap: clamp(2rem, 5vw, 4rem); 
            }
            .text-6xl { font-size: clamp(2rem, 4vw, 2.75rem); line-height: 1.1; }
            .text-4xl { font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.2; }
            .text-3xl { font-size: clamp(1.3rem, 2.5vw, 1.875rem); line-height: 1.3; }
            .text-2xl { font-size: clamp(1.2rem, 2vw, 1.625rem); line-height: 1.4; }
            .section-padding { padding: clamp(40px, 6vw, 60px) 0; }
            .hover-lift:hover { transform: translateY(-6px) scale(1.01); }
            .nav-link { font-size: 0.95rem; }
        }
        
        @media (max-width: 768px) {
            .container { padding: 0 1rem; }
            .section-padding { padding: clamp(30px, 5vw, 50px) 0; }
            .text-6xl { font-size: clamp(1.8rem, 3.5vw, 2.5rem); line-height: 1.1; }
            .text-4xl { font-size: clamp(1.4rem, 2.8vw, 1.875rem); line-height: 1.2; }
            .text-3xl { font-size: clamp(1.2rem, 2.2vw, 1.5rem); line-height: 1.3; }
            .text-2xl { font-size: clamp(1.1rem, 1.8vw, 1.375rem); line-height: 1.4; }
            .text-xl { font-size: clamp(1rem, 1.5vw, 1.125rem); line-height: 1.5; }
            .text-lg { font-size: clamp(0.95rem, 1.2vw, 1rem); line-height: 1.6; }
            .grid { gap: clamp(1.5rem, 3vw, 2rem); }
            .gap-16 { gap: clamp(2rem, 4vw, 3rem); }
            .gap-20 { gap: clamp(2.5rem, 4.5vw, 3.5rem); }
            .gap-24 { gap: clamp(3rem, 5vw, 4rem); }
            .gap-32 { gap: clamp(4rem, 6vw, 5rem); }
            .space-y-6 > * + * { margin-top: clamp(1rem, 2vw, 1.5rem); }
            .space-y-8 > * + * { margin-top: clamp(1.5rem, 2.5vw, 2rem); }
            .light-glow { width: clamp(150px, 20vw, 250px); height: clamp(150px, 20vw, 250px); }
            .hover-lift:hover { transform: translateY(-4px); }
            .px-6 { padding-left: clamp(0.75rem, 2vw, 1.25rem); padding-right: clamp(0.75rem, 2vw, 1.25rem); }
            .py-4 { padding-top: clamp(0.75rem, 1.5vw, 1rem); padding-bottom: clamp(0.75rem, 1.5vw, 1rem); }
            .nav-link { font-size: 0.9rem; }
            .hidden.md\\:flex { display: none !important; }
        }
        
        @media (max-width: 640px) {
            .container { padding: 0 0.75rem; }
            .section-padding { padding: clamp(25px, 4vw, 40px) 0; }
            .text-6xl { font-size: clamp(1.6rem, 3vw, 2.25rem); line-height: 1.1; }
            .text-4xl { font-size: clamp(1.3rem, 2.5vw, 1.75rem); line-height: 1.2; }
            .text-3xl { font-size: clamp(1.1rem, 2vw, 1.5rem); line-height: 1.3; }
            .text-2xl { font-size: clamp(1rem, 1.6vw, 1.25rem); line-height: 1.4; }
            .text-xl { font-size: clamp(0.95rem, 1.4vw, 1.125rem); line-height: 1.5; }
            .text-lg { font-size: clamp(0.9rem, 1.2vw, 1rem); line-height: 1.6; }
            .px-8 { padding-left: clamp(0.75rem, 1.5vw, 1rem); padding-right: clamp(0.75rem, 1.5vw, 1rem); }
            .py-5 { padding-top: clamp(0.75rem, 1.2vw, 0.875rem); padding-bottom: clamp(0.75rem, 1.2vw, 0.875rem); }
            .gap-16 { gap: clamp(1.5rem, 3vw, 2.5rem); }
            .gap-20 { gap: clamp(2rem, 3.5vw, 3rem); }
            .gap-24 { gap: clamp(2.5rem, 4vw, 3.5rem); }
            .gap-32 { gap: clamp(3rem, 5vw, 4rem); }
            .space-x-4 > * + * { margin-left: clamp(0.75rem, 1.5vw, 1rem); }
            .rtl .space-x-4 > * + * { margin-left: 0; margin-right: clamp(0.75rem, 1.5vw, 1rem); }
            .space-y-6 > * + * { margin-top: clamp(0.75rem, 1.8vw, 1.25rem); }
            .space-y-8 > * + * { margin-top: clamp(1rem, 2.2vw, 1.75rem); }
            .p-6 { padding: clamp(0.75rem, 2vw, 1.25rem); }
            .p-4 { padding: clamp(0.5rem, 1.5vw, 1rem); }
            .mb-12 { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
            .mb-8 { margin-bottom: clamp(1rem, 2.5vw, 2rem); }
            .mb-6 { margin-bottom: clamp(0.75rem, 2vw, 1.5rem); }
            .nav-link { font-size: 0.85rem; }
            .media-caption { font-size: 0.9rem; }
            .grid.sm\\:grid-cols-2 { grid-template-columns: 1fr; gap: clamp(0.75rem, 2vw, 1rem); }
            .contact-form { padding: clamp(0.75rem, 2vw, 1rem); }
        }
        
        @media (max-width: 480px) {
            .container { padding: 0 0.5rem; }
            .text-6xl { font-size: clamp(1.4rem, 2.8vw, 2rem); line-height: 1.1; }
            .text-4xl { font-size: clamp(1.2rem, 2.2vw, 1.625rem); line-height: 1.2; }
            .text-3xl { font-size: clamp(1rem, 1.8vw, 1.375rem); line-height: 1.3; }
            .text-2xl { font-size: clamp(0.95rem, 1.5vw, 1.125rem); line-height: 1.4; }
            .text-xl { font-size: clamp(0.9rem, 1.3vw, 1rem); line-height: 1.5; }
            .section-padding { padding: clamp(20px, 3.5vw, 30px) 0; }
            .gap-16 { gap: clamp(1rem, 2.5vw, 2rem); }
            .gap-20 { gap: clamp(1.5rem, 3vw, 2.5rem); }
            .gap-24 { gap: clamp(2rem, 3.5vw, 3rem); }
            .gap-32 { gap: clamp(2.5rem, 4vw, 3.5rem); }
            .light-glow { width: clamp(100px, 15vw, 200px); height: clamp(100px, 15vw, 200px); }
            html { font-size: clamp(14px, 3vw, 15px); }
            .nav-link { font-size: 0.8rem; }
            .media-caption { font-size: 0.85rem; }
            .grid.lg\\:grid-cols-2 { grid-template-columns: 1fr; gap: clamp(1rem, 3vw, 1.5rem); }
            .contact-form { padding: clamp(0.5rem, 1.5vw, 0.75rem); }
            .form-input { padding: clamp(0.5rem, 1.2vw, 0.75rem); font-size: clamp(0.9rem, 1.6vw, 1rem); }
        }
        
        @media (max-width: 360px) {
            .container { padding: 0 0.5rem; }
            .text-6xl { font-size: clamp(1.2rem, 2.5vw, 1.875rem); }
            .text-4xl { font-size: clamp(1rem, 2vw, 1.5rem); }
            .text-3xl { font-size: clamp(0.9rem, 1.6vw, 1.25rem); }
            .text-2xl { font-size: clamp(0.85rem, 1.4vw, 1rem); }
            .section-padding { padding: clamp(15px, 3vw, 25px) 0; }
            html { font-size: clamp(13px, 2.6vw, 14px); }
            .nav-link { font-size: 0.75rem; }
            .media-caption { font-size: 0.8rem; }
        }
        
        @media (hover: none) and (pointer: coarse) {
            .hover-lift:hover { transform: none; }
            .btn-primary:hover { transform: none; }
            .nav-link:hover { transform: none; }
            .hover-lift { transition: none; }
        }
        
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .text-gradient {
                -webkit-text-stroke: 0.3px transparent;
            }
        }
        
        @media (max-height: 500px) and (orientation: landscape) {
            .section-padding { padding: clamp(20px, 4vh, 40px) 0; }
            .min-h-screen { min-height: 100vh; }
        }
        
        .will-change-transform {
            will-change: transform;
        }
        
        .will-change-opacity {
            will-change: opacity;
        }
        
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .text-gradient {
                -webkit-text-stroke: 0.5px transparent;
            }
        }
        
        .course-card {
            display: flex;
            flex-direction: column;
            min-height: 100%;
        }

        .mentorship-features {
            flex: 1 1 auto;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .video-card-figure {
            flex: 1 1 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
        }

        .toast-island {
            position: fixed;
            top: clamp(0.75rem, 3vw, 1.6rem);
            left: 50%;
            transform: translate(-50%, -20px);
            min-width: clamp(220px, 60vw, 360px);
            background: rgba(15, 15, 15, 0.92);
            border-radius: 999px;
            padding: 0.85rem 1.4rem;
            box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
            border: 1px solid rgba(204, 153, 51, 0.2);
            display: flex;
            align-items: center;
            gap: 0.9rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s ease, transform 0.35s ease;
            z-index: 10000;
            backdrop-filter: blur(14px);
        }

        .toast-island.active {
            opacity: 1;
            transform: translate(-50%, 0);
            pointer-events: auto;
        }

        .toast-shell {
            display: flex;
            align-items: center;
            gap: 0.85rem;
        }

        .toast-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: rgba(204, 153, 51, 0.18);
            color: #fbbf24;
            font-size: 1.2rem;
            flex-shrink: 0;
            transition: background 0.3s ease, color 0.3s ease;
        }

        .toast-body {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        .toast-message {
            margin: 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .toast-island.success {
            border-color: rgba(34, 197, 94, 0.35);
        }

        .toast-island.success .toast-icon {
            background: rgba(34, 197, 94, 0.2);
            color: #22c55e;
        }

        .toast-island.error {
            border-color: rgba(248, 113, 113, 0.35);
        }

        .toast-island.error .toast-icon {
            background: rgba(248, 113, 113, 0.2);
            color: #f87171;
        }

        @media (max-width: 640px) {
            .toast-island {
                width: calc(100% - 2rem);
                min-width: 0;
                padding: 0.75rem 1rem;
            }

            .toast-message {
                font-size: 0.9rem;
            }
        }


        .cta-modal {
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(12px);
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
        }

        .cta-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .cta-modal-backdrop {
            position: absolute;
            inset: 0;
        }

        .cta-modal-panel {
            position: relative;
            width: min(540px, 90%);
            background: linear-gradient(145deg, #0F0F0F, #1a1a1a);
            border: 1px solid rgba(204, 153, 51, 0.25);
            border-radius: 18px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
            padding: 2rem;
            color: var(--text-secondary);
            max-height: 90vh;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .cta-modal.active .cta-modal-panel {
            transform: translateY(0);
        }

        .cta-modal-close {
            position: absolute;
            top: 1rem;
            inset-inline-end: 1rem;
            background: none;
            border: 1px solid rgba(204, 153, 51, 0.35);
            color: var(--text-secondary);
            width: 38px;
            height: 38px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cta-modal-close:hover {
            background: rgba(204, 153, 51, 0.15);
            color: var(--text-primary);
            transform: rotate(90deg);
        }

        .cta-modal-header {
            margin-bottom: 1.5rem;
        }

        .cta-modal-title {
            margin: 0 0 0.5rem;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .cta-modal-subtitle {
            margin: 0;
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .cta-modal-form {
            display: grid;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .cta-modal .form-input {
            width: 100%;
            max-width: 100%;
            border-radius: 12px;
            padding: 0.75rem 1rem;
        }

        .cta-field {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .cta-field .en,
        .cta-field .fa {
            font-weight: 600;
            color: var(--text-primary);
        }

        .cta-submit {
            justify-self: start;
            padding: 0.75rem 2rem;
            border-radius: 12px;
        }

        .cta-wallet {
            border-top: 1px solid rgba(204, 153, 51, 0.2);
            padding-top: 1.25rem;
            display: grid;
            gap: 1rem;
        }

        .cta-wallet-title {
            margin: 0;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .cta-wallet-body {
            display: grid;
            gap: 0.75rem;
        }

        .cta-wallet-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .cta-wallet-label {
            font-weight: 600;
            color: var(--text-secondary);
        }

        .cta-wallet-value {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-family: 'Inter', monospace;
            color: var(--text-primary);
            word-break: break-all;
        }

        .cta-wallet-value code {
            background: rgba(204, 153, 51, 0.1);
            padding: 0.35rem 0.6rem;
            border-radius: 8px;
            border: 1px solid rgba(204, 153, 51, 0.2);
            font-size: 0.9rem;
        }

        .cta-copy {
            background: rgba(204, 153, 51, 0.15);
            border: 1px solid rgba(204, 153, 51, 0.4);
            color: var(--text-primary);
            font-weight: 600;
            padding: 0.4rem 0.9rem;
            border-radius: 999px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cta-copy:hover {
            background: rgba(204, 153, 51, 0.25);
            transform: translateY(-2px);
        }

        .cta-copy.copied {
            background: rgba(34, 197, 94, 0.2);
            border-color: rgba(34, 197, 94, 0.4);
            color: #22c55e;
        }

        @media (max-width: 540px) {
            .cta-modal-panel {
                padding: 1.5rem;
            }

            .cta-modal-title {
                font-size: 1.3rem;
            }

            .cta-modal-subtitle {
                font-size: 0.9rem;
            }

            .cta-wallet-row {
                flex-direction: column;
                align-items: flex-start;
            }

            .cta-submit {
                width: 100%;
                justify-self: stretch;
                text-align: center;
            }

            .cta-modal-close {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
        }

        .video-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .video-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .video-modal-content {
            position: relative;
            width: 90%;
            max-width: 600px;
            max-height: 90vh;
            background: #1a1a1a;
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid rgba(204, 153, 51, 0.3);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }
        
        .video-modal.active .video-modal-content {
            transform: scale(1);
        }
        
        .video-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            background: linear-gradient(135deg, #CC9933, #E6B84D);
            color: #000;
        }
        
        .video-modal-title {
            font-size: 1.25rem;
            font-weight: bold;
            margin: 0;
        }
        
        .video-modal-close {
            background: none;
            border: none;
            color: #000;
            font-size: 1.5rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .video-modal-close:hover {
            background: rgba(0, 0, 0, 0.1);
            transform: rotate(90deg);
        }
        
        .video-modal-body {
            padding: 0;
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .video-modal video {
            display: block;
            width: auto;
            max-width: 100%;
            height: auto;
            max-height: calc(90vh - 140px);
        }
        

        .media-figure {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .media-caption {
            font-size: 0.95rem;
            color: var(--text-secondary);
            text-align: center;
            line-height: 1.6;
            letter-spacing: 0.01em;
        }

        .video-thumbnail {
            position: relative;
            cursor: pointer;
            overflow: hidden;
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        
        .video-thumbnail:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 30px rgba(204, 153, 51, 0.3);
        }
        
        .video-thumbnail::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
            transition: all 0.3s ease;
        }
        
        .video-thumbnail:hover::before {
            background: rgba(0, 0, 0, 0.1);
        }
        
        .video-play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #CC9933, #E6B84D);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-family: 'Inter', sans-serif;
            direction: ltr;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(204, 153, 51, 0.4);
            font-size: 0;
            line-height: 0;
        }
        

        .video-play-button::before {
            content: '';
            display: block;
            width: 0;
            height: 0;
            border-left: 18px solid #000;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            transform: translateX(2px);
        }

        .video-thumbnail:hover .video-play-button {
            transform: translate(-50%, -50%) scale(1.1);
            box-shadow: 0 15px 40px rgba(204, 153, 51, 0.6);
        }
        
        @media (max-width: 768px) {
            .video-modal-content {
                width: 95%;
                margin: 20px;
            }
            
            .video-modal-header {
                padding: 15px 20px;
            }
            
            .video-modal-title {
                font-size: 1.1rem;
            }
            
            .video-play-button {
                width: 50px;
                height: 50px;
            }

            .video-play-button::before {
                border-left: 14px solid #000;
                border-top: 10px solid transparent;
                border-bottom: 10px solid transparent;
                transform: translateX(1px);
            }

            .video-modal video {
                max-height: calc(90vh - 120px);
            }
        }





