        :root {
            --primary: #7E57C2;
            --primary-dark: #5E35B1;
            --primary-light: #B39DDB;
            --secondary: #F5F5F5;
            --accent: #FFD54F;
            --text-dark: #333333;
            --text-light: #666666;
            --white: #FFFFFF;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        .dark-mode {
            --primary-color: #6a0dad;
            --secondary-color: #00c6ff;
            --text-color: #ffffff;
            --bg-color: #1a0a24;
            --card-bg: rgba(255, 255, 255, 0.05);
            --card-border: rgba(255, 255, 255, 0.15);
            --shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;

            --primary: var(--primary-color);
            --primary-dark: #5a0c9c;
            --primary-light: #8a4dcc;
            --secondary: var(--bg-color);
            --accent: var(--secondary-color);
            --text-dark: var(--text-color);
            --text-light: #e0e0e0;
            --white: #1a0a24;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Tajawal', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--secondary);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
            transition: var(--transition);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }

        header.scrolled {
            padding: 5px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            transition: var(--transition);
        }

        header.scrolled nav {
            padding: 10px 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            z-index: 1001;
        }

        .logo i {
            margin-left: 10px;
            color: var(--primary);
            font-size: 2rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary);
            transition: var(--transition);
            border-radius: 3px;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-btns {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-btns .btn {
            padding: 10px 22px;
            font-size: 0.95rem;
            white-space: nowrap;
        }

        .btn {
            display: inline-block;
            padding: 14px 35px;
            background-color: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            text-align: center;
            box-shadow: 0 4px 10px rgba(126, 87, 194, 0.3);
        }

        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: 0 7px 15px rgba(126, 87, 194, 0.4);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: var(--white);
        }

        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-dark);
            transition: var(--transition);
            z-index: 1001;
            background: none;
            border: none;
        }

        .menu-toggle:hover {
            color: var(--primary);
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background-color: var(--white);
            box-shadow: var(--shadow);
            padding: 100px 30px 30px;
            transition: var(--transition);
            z-index: 999;
            overflow-y: auto;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-links {
            list-style: none;
        }

        .mobile-nav-links li {
            margin-bottom: 20px;
        }

        .mobile-nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            display: block;
            padding: 12px 0;
            border-bottom: 1px solid #f5f5f5;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .mobile-nav-links a:hover {
            color: var(--primary);
            padding-right: 10px;
        }

        .mobile-nav-btns {
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .mobile-nav-btns .btn {
            width: 100%;
            text-align: center;
        }

        .overlay {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .theme-toggle-wrapper {
            display: flex;
            align-items: center;
        }

        .theme-switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 30px;
        }

        .theme-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
            background-color: var(--primary-light);
            transition: var(--transition);
            border-radius: 34px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 8px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            right: 4px;
            bottom: 4px;
            background-color: white;
            transition: var(--transition);
            border-radius: 50%;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            font-size: 12px;
            color: var(--primary);
        }

        input:checked+.slider {
            background-color: var(--primary);
        }

        input:checked+.slider:before {
            transform: translateX(-30px);
            content: "\f186";
            color: var(--accent);
        }

        input:not(:checked)+.slider:before {
            content: "\f185";
        }

        .slider .sun-icon,
        .slider .moon-icon {
            font-size: 14px;
            color: white;
            z-index: 1;
        }

        .sun-icon {
            opacity: 1;
            transition: var(--transition);
        }

        .moon-icon {
            opacity: 0;
            transition: var(--transition);
        }

        input:checked+.slider .sun-icon {
            opacity: 0;
        }

        input:checked+.slider .moon-icon {
            opacity: 1;
        }

        @media (max-width: 1100px) {
            .nav-links li {
                margin-left: 20px;
            }

            .nav-btns {
                gap: 10px;
            }

            .nav-btns .btn {
                padding: 8px 18px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }

            .nav-btns .btn:not(.menu-toggle) {
                display: none;
            }

            .menu-toggle {
                display: block;
            }
        }

        @media (max-width: 576px) {
            .logo {
                font-size: 1.5rem;
            }

            .logo i {
                font-size: 1.6rem;
            }

            .mobile-nav {
                width: 100%;
            }

            .theme-switch {
                width: 50px;
                height: 25px;
            }

            .slider:before {
                height: 18px;
                width: 18px;
                font-size: 10px;
            }

            input:checked+.slider:before {
                transform: translateX(-25px);
            }
        }

        section {
            padding: 90px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.8rem;
            color: var(--primary-dark);
            margin-bottom: 20px;
            font-weight: 800;
        }

        .section-title p {
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.2rem;
            line-height: 1.8;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            right: 50%;
            transform: translateX(50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(to left, var(--primary), var(--accent));
            border-radius: 3px;
        }

        @media (max-width: 1100px) {
            .section-title h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 576px) {
            .section-title h2 {
                font-size: 1.8rem;
            }

            .section-title p {
                font-size: 1rem;
            }
        }

        /* Hero Section Styles */
        .hero {
            padding: 180px 0 120px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            font-weight: 800;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .hero-btns .btn {
            padding: 18px 45px;
            font-size: 1.2rem;
            border-radius: 50px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .hero-btns .btn-primary {
            background-color: var(--accent);
            color: var(--text-dark);
        }

        .hero-btns .btn-primary:hover {
            background-color: #FFC107;
            transform: translateY(-5px);
        }

        .hero-btns .btn-secondary {
            background-color: transparent;
            border: 2px solid white;
            color: white;
        }

        .hero-btns .btn-secondary:hover {
            background-color: white;
            color: var(--primary);
        }

        .payment-methods {
            background-color: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .payment-methods h3 {
            font-size: 1.6rem;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .payment-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .payment-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }

        .payment-icon:hover {
            transform: translateY(-10px);
        }

        .payment-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: white;
            color: var(--primary);
            font-size: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .payment-name {
            font-weight: 600;
            font-size: 1.1rem;
        }

        @media (max-width: 768px) {
            .hero {
                padding: 150px 0 80px;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .hero-btns {
                flex-direction: column;
                align-items: center;
            }

            .hero-btns .btn {
                width: 100%;
                max-width: 300px;
            }

            .payment-icons {
                gap: 20px;
            }

            .payment-circle {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .payment-methods {
                padding: 20px;
            }

            .payment-icons {
                gap: 15px;
            }

            .payment-circle {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .payment-name {
                font-size: 0.9rem;
            }
        }

        .about-content {
            background-color: var(--white);
            border-radius: 15px;
            padding: 50px;
            box-shadow: var(--shadow);
            margin-bottom: 50px;
            line-height: 1.8;
        }

        .about-content h3 {
            font-size: 1.8rem;
            color: var(--primary-dark);
            margin: 30px 0 20px;
            font-weight: 700;
        }

        .about-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: var(--text-light);
        }

        .features-list {
            list-style: none;
            margin: 25px 0;
        }

        .features-list li {
            margin-bottom: 20px;
            padding: 20px;
            background-color: rgba(126, 87, 194, 0.05);
            border-radius: 10px;
            border-right: 4px solid var(--primary);
            transition: var(--transition);
        }

        .features-list li:hover {
            transform: translateX(-10px);
            background-color: rgba(126, 87, 194, 0.1);
        }

        .features-list strong {
            color: var(--primary-dark);
            font-size: 1.1rem;
        }

        .conclusion {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            text-align: center;
            font-size: 1.2rem;
            box-shadow: var(--shadow);
        }

        .telegram-channel {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            background-color: rgba(255, 213, 79, 0.1);
            border-radius: 15px;
            border: 2px solid var(--accent);
        }

        .telegram-channel a {
            color: var(--primary-dark);
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
        }

        .telegram-channel a:hover {
            color: var(--primary);
            text-decoration: underline;
        }

        .comparison {
            background-color: var(--secondary);
            padding: 80px 0;
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .comparison-card {
            background-color: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid #f0f0f0;
            text-align: center;
            padding: 40px 30px;
            position: relative;
        }

        .comparison-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .comparison-card.free {
            border-top: 5px solid #FF6B6B;
        }

        .comparison-card.vip {
            border-top: 5px solid var(--primary);
            transform: scale(1.05);
        }

        .comparison-card.vip:hover {
            transform: scale(1.05) translateY(-15px);
        }

        .comparison-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary-dark);
            font-weight: 700;
        }

        .comparison-icon {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.2rem;
            transition: var(--transition);
        }

        .comparison-card.free .comparison-icon {
            background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
            color: white;
        }

        .comparison-card.vip .comparison-icon {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
        }

        .comparison-features {
            list-style: none;
            text-align: right;
            margin: 25px 0;
        }

        .comparison-features li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding: 10px 0;
            border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
        }

        .comparison-features i {
            margin-left: 10px;
            font-size: 1.1rem;
        }

        .comparison-card.free .comparison-features i {
            color: #FF6B6B;
        }

        .comparison-card.vip .comparison-features i {
            color: var(--primary);
        }

        .price-tag {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 700;
            margin-top: 20px;
            font-size: 1.2rem;
        }

        .comparison-card.free .price-tag {
            background-color: rgba(255, 107, 107, 0.1);
            color: #FF6B6B;
        }

        .comparison-card.vip .price-tag {
            background-color: rgba(126, 87, 194, 0.1);
            color: var(--primary);
        }

        .recommended-badge {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            padding: 8px 25px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 4px 10px rgba(126, 87, 194, 0.3);
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 40px;
            box-shadow: var(--shadow);
            border-radius: 15px;
            overflow: hidden;
            background-color: var(--white);
        }

        .comparison-table th,
        .comparison-table td {
            padding: 20px;
            text-align: center;
            border-bottom: 1px solid #f0f0f0;
        }

        .comparison-table th {
            background-color: var(--primary);
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .comparison-table tr:nth-child(even) {
            background-color: rgba(126, 87, 194, 0.03);
        }

        .comparison-table .feature-name {
            text-align: right;
            font-weight: 600;
        }

        .comparison-table .free-cell {
            color: #FF6B6B;
        }

        .comparison-table .vip-cell {
            color: var(--primary);
        }

        footer {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            color: var(--white);
            padding: 80px 0 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            font-weight: 700;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent);
            border-radius: 3px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.05rem;
            display: flex;
            align-items: center;
        }

        .footer-links a i {
            margin-left: 8px;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-right: 8px;
        }

        .footer-newsletter p {
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .newsletter-form input {
            padding: 15px 20px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-family: 'Tajawal', sans-serif;
        }

        .newsletter-form input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 213, 79, 0.3);
        }

        .newsletter-form .btn {
            background-color: var(--accent);
            color: var(--text-dark);
            border: none;
            font-weight: 700;
        }

        .newsletter-form .btn:hover {
            background-color: var(--white);
        }

        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: rgba(255, 255, 255, 0.8);
            transition: var(--transition);
            text-decoration: none;
            font-size: 1.2rem;
        }

        .social-links a:hover {
            background-color: var(--accent);
            color: var(--text-dark);
            transform: translateY(-5px);
        }

        /* تحسينات وضع الظلام */
        .dark-mode .about-content,
        .dark-mode .comparison-card,
        .dark-mode .comparison-table {
            background-color: var(--card-bg);
            border-color: var(--card-border);
        }

        .dark-mode .features-list li {
            background-color: rgba(255, 255, 255, 0.05);
            border-right-color: var(--primary);
        }

        .dark-mode .conclusion {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--text-color);
        }

        .dark-mode .telegram-channel {
            background-color: rgba(0, 198, 255, 0.1);
            border-color: var(--secondary-color);
        }

        .dark-mode .telegram-channel a {
            color: var(--secondary-color);
        }

        .dark-mode .about-content h3,
        .dark-mode .about-content p,
        .dark-mode .features-list strong,
        .dark-mode .comparison-card h3,
        .dark-mode .comparison-features li,
        .dark-mode .section-title h2,
        .dark-mode .section-title p,
        .dark-mode .footer-column h3,
        .dark-mode .footer-links a,
        .dark-mode .footer-newsletter p,
        .dark-mode .copyright,
        .dark-mode .nav-links a,
        .dark-mode .mobile-nav-links a,
        .dark-mode .logo,
        .dark-mode .menu-toggle {
            color: var(--text-color);
        }

        .dark-mode .btn {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--text-color);
            border: none;
        }

        .dark-mode .btn:hover {
            filter: brightness(0.9);
        }

        .dark-mode .btn-outline {
            background: transparent;
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
        }

        .dark-mode .btn-outline:hover {
            background: var(--secondary-color);
            color: var(--bg-color);
        }

        .dark-mode .mobile-nav,
        .dark-mode header {
            background-color: var(--bg-color);
        }

        .dark-mode .mobile-nav-links a {
            border-bottom-color: var(--card-border);
        }

        .dark-mode .hero-btns .btn {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--text-color);
        }

        .dark-mode .hero-btns .btn:hover {
            filter: brightness(0.9);
            color: var(--text-color);
        }

        .dark-mode .social-links a,
        .dark-mode .footer-links a,
        .dark-mode .footer-newsletter p,
        .dark-mode .copyright {
            color: white;
        }

        .dark-mode .social-links a:hover {
            color: var(--text-dark);
        }

        .dark-mode .comparison-table th {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }

        .dark-mode .comparison-table tr:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.03);
        }

        .dark-mode .comparison-features li {
            border-bottom-color: rgba(255, 255, 255, 0.1);
        }

        /* Dark mode hero section */
        .dark-mode .hero {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }

        .dark-mode .payment-methods {
            background-color: rgba(0, 0, 0, 0.3);
        }

        .dark-mode .payment-circle {
            background-color: var(--card-bg);
            color: var(--text-color);
        }

        .telegram-circle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: #0088cc;
            color: #fff;
            text-decoration: none;
            transition: 0.3s ease;
            margin-right: 10px;
        }

        .telegram-circle:hover {
            background-color: #007ab8;
            transform: scale(1.1);
        }

        .telegram-circle i {
            font-size: 22px;
        }



        .country-section h4 {
            color: #fff;
            margin-bottom: 10px;
            border-bottom: 1px solid #ffffff;
            padding-bottom: 5px;
        }
    </style>
</head>
<style>
    .country-selector {
        position: relative;
        margin-left: 15px;
    }

    .country-btn {
        display: flex;
        align-items: center;
        background: transparent;
        border: 2px solid var(--primary);
        border-radius: 30px;
        padding: 8px 15px;
        cursor: pointer;
        transition: var(--transition);
        color: var(--text-dark);
        font-weight: 600;
        font-size: 0.95rem;
    }

    .country-btn:hover {
        background-color: rgba(126, 87, 194, 0.1);
    }

    .country-btn i {
        margin-left: 8px;
        color: var(--primary);
    }

    .country-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        width: 200px;
        background-color: var(--white);
        border-radius: 12px;
        box-shadow: var(--shadow);
        padding: 10px 0;
        z-index: 1002;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: var(--transition);
    }

    .country-dropdown.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .country-option {
        padding: 12px 20px;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
    }

    .country-option:hover {
        background-color: rgba(126, 87, 194, 0.1);
    }

    .country-option i {
        margin-left: 10px;
        color: var(--primary);
        font-size: 1.2rem;
    }

    .mobile-country-selector {
        margin: 20px 0;
    }

    .mobile-country-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: transparent;
        border: 2px solid var(--primary);
        border-radius: 30px;
        padding: 12px 20px;
        cursor: pointer;
        transition: var(--transition);
        color: var(--text-dark);
        font-weight: 600;
        font-size: 1rem;
    }

    .mobile-country-dropdown {
        margin-top: 10px;
        background-color: var(--white);
        border-radius: 12px;
        box-shadow: var(--shadow);
        padding: 10px 0;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
    }

    .mobile-country-dropdown.active {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
    }

    .mobile-country-option {
        padding: 12px 20px;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
    }

    .mobile-country-option:hover {
        background-color: rgba(126, 87, 194, 0.1);
    }

    .mobile-country-option i {
        margin-left: 10px;
        color: var(--primary);
        font-size: 1.2rem;
    }

    @media (max-width: 992px) {

        .country-selector {
            display: none;
        }
    }

    @media (max-width: 576px) {

        input:checked+.slider:before {
            transform: translateX(-25px);
        }
    }
