:root {
            --color-space: #0a0e27;
            --color-deep-space: #050816;
            --color-nebula: #4a148c;
            --color-star: #ffffff;
            --color-accent: #00d9ff;
            --color-accent-glow: #00ffff;
            --color-planet-1: #ff6b35;
            --color-planet-2: #4ecdc4;
            --color-planet-3: #ffd93d;
            --color-planet-4: #a78bfa;
            --color-planet-5: #ef4444;
            --color-planet-6: #10b981;
            --font-display: 'Orbitron', sans-serif;
            --font-body: 'Rajdhani', sans-serif;
            --font-persian: 'Vazirmatn', sans-serif;
            --font-arabic: 'Cairo', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            background: var(--color-deep-space);
            color: var(--color-star);
            overflow-x: hidden;
            position: relative;
        }

        [dir="rtl"] body {
            font-family: var(--font-persian);
        }

        [lang="ar"] body {
            font-family: var(--font-arabic);
        }

        /* LTR text in RTL mode for numbers */
        .ltr-text {
            direction: ltr;
            display: inline-block;
            unicode-bidi: embed;
        }

        /* Starfield Background */
        .starfield {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            background: radial-gradient(ellipse at bottom, var(--color-space) 0%, var(--color-deep-space) 100%);
        }

        .stars {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .star {
            position: absolute;
            background: white;
            border-radius: 50%;
            animation: twinkle 3s infinite ease-in-out;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        /* Nebula effects */
        .nebula {
            position: fixed;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.3;
            z-index: 1;
            pointer-events: none;
        }

        .nebula-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(138, 43, 226, 0.4) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            animation: nebulaPulse 15s infinite ease-in-out;
        }

        .nebula-2 {
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 217, 255, 0.3) 0%, transparent 70%);
            bottom: -300px;
            left: -300px;
            animation: nebulaPulse 20s infinite ease-in-out reverse;
        }

        @keyframes nebulaPulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.2); opacity: 0.5; }
        }

        /* Main Container */
        .container {
            position: relative;
            z-index: 10;
            min-height: 100vh;
        }

        /* Header/Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(10, 14, 39, 0.7);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 217, 255, 0.1);
        }

        .logo {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: 0.2em;
            background: linear-gradient(135deg, var(--color-accent), var(--color-accent-glow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
            cursor: pointer;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        nav ul {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        nav a {
            color: var(--color-star);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: 0.1em;
            transition: all 0.3s ease;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-accent);
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: var(--color-accent);
            text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Language Switcher */
        .language-switcher {
            display: flex;
            gap: 0.5rem;
            background: rgba(0, 217, 255, 0.1);
            border: 1px solid rgba(0, 217, 255, 0.3);
            border-radius: 25px;
            padding: 0.5rem;
        }

        .lang-btn {
            padding: 0.5rem 1rem;
            background: transparent;
            color: var(--color-star);
            border: none;
            border-radius: 20px;
            cursor: pointer;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
        }

        .lang-btn.active {
            background: var(--color-accent);
            color: var(--color-deep-space);
        }

        .lang-btn:hover:not(.active) {
            background: rgba(0, 217, 255, 0.2);
        }

        /* Page content */
        .page {
            display: none;
            padding-top: 100px;
        }

        .page.active {
            display: block;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 0 2rem;
        }

        .hero-content {
            text-align: center;
            max-width: 900px;
            animation: fadeIn 1.5s ease-out;
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            letter-spacing: 0.1em;
            background: linear-gradient(135deg, #ffffff, var(--color-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 3s ease-in-out infinite;
        }

        [dir="rtl"] .hero h1 {
            font-family: var(--font-persian);
        }

        @keyframes glow {
            0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.5)); }
            50% { filter: drop-shadow(0 0 40px rgba(0, 217, 255, 0.8)); }
        }

        .hero p {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 3rem;
            line-height: 1.8;
            font-weight: 300;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: linear-gradient(135deg, var(--color-accent), var(--color-accent-glow));
            color: var(--color-deep-space);
            text-decoration: none;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: 0.1em;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border: none;
        }

        [dir="rtl"] .cta-button {
            font-family: var(--font-persian);
        }

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

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 50px rgba(0, 217, 255, 0.8);
        }

        /* Galaxy Section */
        .galaxy-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 2rem;
            position: relative;
        }

        .galaxy-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .galaxy-title h2 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            letter-spacing: 0.1em;
            background: linear-gradient(135deg, #ffffff, var(--color-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }

        [dir="rtl"] .galaxy-title h2 {
            font-family: var(--font-persian);
        }

        .galaxy-title p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 300;
        }

        .galaxy-container {
            position: relative;
            width: 100%;
            max-width: 1400px;
            height: 1200px;
            margin: 0 auto;
            padding: 4rem 0;
        }

        /* Central Sun */
        .central-sun {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, #ffd93d, #ff6b35);
            border-radius: 50%;
            box-shadow: 0 0 60px rgba(255, 217, 61, 0.8),
                        0 0 120px rgba(255, 107, 53, 0.6),
                        inset 0 0 40px rgba(255, 255, 255, 0.5);
            animation: sunPulse 4s ease-in-out infinite;
            z-index: 5;
        }

        @keyframes sunPulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.1); }
        }

        /* Orbital paths */
        .orbit {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(var(--rotation, 0deg));
            border: 1px solid rgba(0, 217, 255, 0.15);
            border-radius: 50%;
            animation: rotateOrbit 60s linear infinite;
            pointer-events: none; /* Allow clicks to pass through to planets */
            z-index: 1; /* Below planets */
        }

        .orbit-1 { width: 280px; height: 280px; animation-duration: 40s; }
        .orbit-2 { width: 400px; height: 400px; animation-duration: 55s; }
        .orbit-3 { width: 520px; height: 520px; animation-duration: 70s; }
        .orbit-4 { width: 640px; height: 640px; animation-duration: 85s; }
        .orbit-5 { width: 760px; height: 760px; animation-duration: 100s; }
        .orbit-6 { width: 880px; height: 880px; animation-duration: 115s; }

        @keyframes rotateOrbit {
            from { transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)); }
            to { transform: translate(-50%, -50%) rotate(calc(var(--rotation, 0deg) + 360deg)); }
        }

        /* Planets */
        .planet {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 50; /* Higher than orbits */
            pointer-events: auto; /* Enable hover and clicks */
        }

        .planet-sphere {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            position: relative;
            transition: all 0.4s ease;
            animation: planetFloat 4s ease-in-out infinite;
            pointer-events: auto; /* Enable hover */
        }

        @keyframes planetFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        /* All planets have hover effects */
        .planet:hover .planet-sphere {
            transform: scale(1.3) translateY(-10px);
        }

        .planet:hover .planet-info {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(10px);
        }

        /* Individual planet sphere styles */
        .planet-1 .planet-sphere {
            background: radial-gradient(circle at 35% 35%, #ff8c61, var(--color-planet-1));
            box-shadow: 0 0 40px rgba(255, 107, 53, 0.7),
                        inset -12px -12px 24px rgba(0, 0, 0, 0.4),
                        inset 8px 8px 16px rgba(255, 255, 255, 0.2);
        }

        .planet-2 .planet-sphere {
            background: radial-gradient(circle at 35% 35%, #7ee8df, var(--color-planet-2));
            box-shadow: 0 0 40px rgba(78, 205, 196, 0.7),
                        inset -12px -12px 24px rgba(0, 0, 0, 0.4),
                        inset 8px 8px 16px rgba(255, 255, 255, 0.2);
        }

        .planet-3 .planet-sphere {
            background: radial-gradient(circle at 35% 35%, #ffe66d, var(--color-planet-3));
            box-shadow: 0 0 40px rgba(255, 217, 61, 0.7),
                        inset -12px -12px 24px rgba(0, 0, 0, 0.4),
                        inset 8px 8px 16px rgba(255, 255, 255, 0.2);
        }

        .planet-4 .planet-sphere {
            background: radial-gradient(circle at 35% 35%, #c4b5fd, var(--color-planet-4));
            box-shadow: 0 0 40px rgba(167, 139, 250, 0.7),
                        inset -12px -12px 24px rgba(0, 0, 0, 0.4),
                        inset 8px 8px 16px rgba(255, 255, 255, 0.2);
        }

        .planet-5 .planet-sphere {
            background: radial-gradient(circle at 35% 35%, #f87171, var(--color-planet-5));
            box-shadow: 0 0 40px rgba(239, 68, 68, 0.7),
                        inset -12px -12px 24px rgba(0, 0, 0, 0.4),
                        inset 8px 8px 16px rgba(255, 255, 255, 0.2);
        }

        .planet-6 .planet-sphere {
            background: radial-gradient(circle at 35% 35%, #34d399, var(--color-planet-6));
            box-shadow: 0 0 40px rgba(16, 185, 129, 0.7),
                        inset -12px -12px 24px rgba(0, 0, 0, 0.4),
                        inset 8px 8px 16px rgba(255, 255, 255, 0.2);
        }

        /* Planet Info Cards - Short descriptions */
        .planet-info {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            background: rgba(10, 14, 39, 0.97);
            backdrop-filter: blur(15px);
            padding: 1.5rem;
            border-radius: 15px;
            border: 2px solid rgba(0, 217, 255, 0.4);
            min-width: 280px;
            max-width: 320px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            pointer-events: none;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7),
                        0 0 30px rgba(0, 217, 255, 0.3);
            z-index: 1000; /* Very high z-index to appear above everything */
        }

        .planet-info::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 10px solid rgba(0, 217, 255, 0.4);
        }

        .planet-info h3 {
            font-family: var(--font-display);
            font-size: 1.4rem;
            margin-bottom: 0.75rem;
            color: var(--color-accent);
            text-align: center;
        }

        [dir="rtl"] .planet-info h3 {
            font-family: var(--font-persian);
        }

        .planet-info p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            text-align: center;
        }

        /* Services Section */
        .services-section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .service-card {
            background: rgba(10, 14, 39, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 217, 255, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--color-accent);
            box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
        }

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

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-family: var(--font-display);
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: var(--color-accent);
        }

        [dir="rtl"] .service-card h3 {
            font-family: var(--font-persian);
        }

        .service-card p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }

        /* Contact Form */
        .contact-section {
            padding: 6rem 2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-content {
            background: rgba(10, 14, 39, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 217, 255, 0.2);
            border-radius: 30px;
            padding: 4rem 3rem;
        }

        .contact-form {
            margin-top: 3rem;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.75rem;
            color: var(--color-accent);
            font-weight: 600;
            font-size: 1.1rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem 1.5rem;
            background: rgba(0, 217, 255, 0.05);
            border: 1px solid rgba(0, 217, 255, 0.2);
            border-radius: 10px;
            color: var(--color-star);
            font-family: var(--font-body);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        [dir="rtl"] .form-group input,
        [dir="rtl"] .form-group textarea,
        [dir="rtl"] .form-group select {
            font-family: var(--font-persian);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--color-accent);
            background: rgba(0, 217, 255, 0.1);
            box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .contact-info {
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: 1px solid rgba(0, 217, 255, 0.2);
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        [dir="rtl"] .contact-item {
            flex-direction: row-reverse;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(0, 217, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .contact-item a {
            color: var(--color-star);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: var(--color-accent);
        }

        /* Legal Pages */
        .legal-section {
            padding: 8rem 2rem 6rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .legal-content {
            background: rgba(10, 14, 39, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 217, 255, 0.2);
            border-radius: 30px;
            padding: 4rem 3rem;
        }

        .legal-content h1 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3.5rem);
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ffffff, var(--color-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        [dir="rtl"] .legal-content h1 {
            font-family: var(--font-persian);
        }

        .legal-content h2 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            color: var(--color-accent);
        }

        [dir="rtl"] .legal-content h2 {
            font-family: var(--font-persian);
        }

        .legal-content h3 {
            font-size: 1.4rem;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
            color: var(--color-accent);
        }

        .legal-content p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .legal-content ul, .legal-content ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
        }

        [dir="rtl"] .legal-content ul,
        [dir="rtl"] .legal-content ol {
            padding-left: 0;
            padding-right: 2rem;
        }

        .legal-content li {
            margin-bottom: 0.75rem;
        }

        .last-updated {
            font-style: italic;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 2rem;
        }

        /* Footer */
        footer {
            padding: 3rem 2rem;
            text-align: center;
            border-top: 1px solid rgba(0, 217, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-links {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--color-accent);
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Mobile menu */
        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: var(--color-accent);
            transition: all 0.3s ease;
        }

        /* Responsive */
        @media (max-width: 968px) {
            header {
                padding: 1.5rem 2rem;
            }

            nav ul {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                background: rgba(10, 14, 39, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 6rem 2rem;
                gap: 2rem;
                transition: right 0.3s ease;
                border-left: 1px solid rgba(0, 217, 255, 0.2);
            }

            [dir="rtl"] nav ul {
                right: auto;
                left: -100%;
                border-left: none;
                border-right: 1px solid rgba(0, 217, 255, 0.2);
            }

            nav ul.active {
                right: 0;
            }

            [dir="rtl"] nav ul.active {
                left: 0;
            }

            .mobile-menu {
                display: flex;
            }

            .galaxy-container {
                height: 700px;
                padding: 2rem 0;
            }

            .central-sun {
                width: 100px;
                height: 100px;
            }

            .orbit-1 { width: 200px; height: 200px; }
            .orbit-2 { width: 280px; height: 280px; }
            .orbit-3 { width: 360px; height: 360px; }
            .orbit-4 { width: 440px; height: 440px; }
            .orbit-5 { width: 520px; height: 520px; }
            .orbit-6 { width: 600px; height: 600px; }

            .planet-sphere {
                width: 60px;
                height: 60px;
            }

            .planet-info {
                min-width: 240px;
                max-width: 280px;
                padding: 1.25rem;
            }

            .planet-info h3 {
                font-size: 1.2rem;
            }

            .planet-info p {
                font-size: 0.85rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .contact-content,
            .legal-content {
                padding: 3rem 2rem;
            }
        }

        @media (max-width: 600px) {
            .orbit-5, .orbit-6 {
                display: none;
            }
            
            .galaxy-container {
                height: 600px;
            }
        }
    

/* ===============================
   FIX HORIZONTAL SCROLL (RESPONSIVE)
   =============================== */

/* جلوگیری از اسکرول افقی کلی */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* همه کانتینرهای اصلی */
.container,
.page,
.galaxy-section,
.galaxy-container {
    overflow-x: hidden;
    width: 100%;
}

/* عناصر مطلق که بیرون می‌زنن */
.orbit,
.planet,
.central-sun,
.nebula {
    max-width: 100vw;
}

/* موبایل فیکس حرفه‌ای */
@media (max-width: 600px) {

    .galaxy-section {
        overflow: hidden;
    }

    .galaxy-container {
        width: 100%;
        overflow: hidden;
    }

    /* اصلاح موقعیت مدارها */
    .orbit {
        left: 50%;
        transform: translate(-50%, -50%) rotate(var(--rotation));
    }

    /* کارت توضیحات سیاره */
    .planet-info {
        max-width: 90vw;
        left: 50%;
        transform: translateX(-50%) translateY(15px);
    }
}


/* Contact form captcha + status */
.form-row--captcha .captcha-wrap{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.captcha-question{
  display:inline-flex;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  font-weight:600;
  letter-spacing:.3px;
}
.form-status{
  margin-top:12px;
  min-height:22px;
  font-size:14px;
  opacity:.95;
}
.form-status.is-error{ color: #ffb4b4; }
.form-status.is-ok{ color: #b7ffd6; }

/* Honeypot (anti-bot) */
.hp-field{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}
