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

        :root {
            --primary-yellow: #F7A600;
            --dark-bg: #0C0E12;
            --card-bg: #16181D;
            --text-white: #FFFFFF;
            --text-gray: #8B8E93;
            --success-green: #20BE7C;
            --border-color: #2D3037;
            --gradient-start: #F7A600;
            --gradient-end: #FF6B00;
        }

        /* Light Theme Variables */
        [data-theme="light"] {
            --dark-bg: #F5F5F5;
            --card-bg: #FFFFFF;
            --text-white: #1E1E1E;
            --text-gray: #5E6673;
            --border-color: #E4E4E7;
        }

        body {
            font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--dark-bg);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
            font-size: 14px;
        }

        /* Top Bar */
        .top-bar {
            background: rgba(22, 24, 29, 0.98);
            border-bottom: 1px solid var(--border-color);
            padding: 6px 0;
            font-size: 12px;
        }

        .top-bar-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        .top-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.2s;
        }

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

        .ticker {
            display: flex;
            gap: 24px;
            color: var(--text-gray);
            overflow: hidden;
            flex: 1;
        }

        .ticker-wrapper {
            display: flex;
            gap: 24px;
            animation: tickerScroll 15s linear infinite;
            will-change: transform;
        }

        .ticker-wrapper:hover {
            animation-play-state: paused;
        }

        @keyframes tickerScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(50%); }
        }

        .ticker-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .ticker-price {
            color: var(--success-green);
            font-weight: 600;
        }

        /* Header */
        .header {
            background: var(--dark-bg); /* rgba(12, 14, 18, 0.95); */
            backdrop-filter: blur(10px);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }

        .nav-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-white);
        }

        .logo-icon {
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .logo-text {
            background: linear-gradient(135deg, #F7A600, #FFD700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .nav-menu {
            display: flex;
            gap: 4px;
            list-style: none;
        }

        .nav-item {
            position: relative;
        }

        .nav-menu > li > a {
            color: var(--text-gray);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s;
            padding: 8px 16px;
            display: block;
            font-size: 14px;
        }

        .nav-menu > li > a:hover {
            color: var(--primary-yellow);
        }

        /* Mega Menu */
        .mega-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 20px;
            min-width: 600px;
            display: none;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            margin-top: 8px;
        }

        .nav-item:hover .mega-menu {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .mega-menu-column h4 {
            font-size: 12px;
            color: var(--primary-yellow);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .mega-menu-column ul {
            list-style: none;
        }

        .mega-menu-column a {
            color: var(--text-gray);
            text-decoration: none;
            display: block;
            padding: 6px 0;
            font-size: 13px;
            transition: color 0.2s;
        }

        .mega-menu-column a:hover {
            color: var(--text-white);
            padding-right: 4px;
        }

        .nav-buttons {
            display: flex;
            gap: 12px;
        }

        /* Header Tools Container */
        .header-tools {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-left: 16px;
        }

        /* Theme Switcher */
        .theme-switcher {
            position: relative;
        }

        .theme-toggle-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-gray);
            cursor: pointer;
            transition: all 0.2s;
        }

        .theme-toggle-btn:hover {
            background: rgba(247, 166, 0, 0.1);
            border-color: var(--primary-yellow);
            color: var(--primary-yellow);
        }

        .theme-icon {
            transition: all 0.3s ease;
        }

        /* Language Selector */
        .language-selector {
            position: relative;
        }

        .lang-toggle-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background: transparent;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-gray);
            font-family: 'Cairo', sans-serif;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            height: 40px;
        }

        .lang-toggle-btn:hover {
            background: rgba(247, 166, 0, 0.1);
            border-color: var(--primary-yellow);
            color: var(--text-white);
        }

        .lang-toggle-btn svg {
            flex-shrink: 0;
        }

        .current-lang-text {
            min-width: 50px;
        }

        .lang-dropdown-menu {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            min-width: 240px;
            max-height: 400px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            overflow: hidden;
        }

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

        .lang-dropdown-header {
            padding: 16px 20px;
            border-bottom: 1px solid var(--border-color);
            font-size: 13px;
            font-weight: 700;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .lang-options-list {
            max-height: 320px;
            overflow-y: auto;
            padding: 8px 0;
        }

        .lang-options-list::-webkit-scrollbar {
            width: 6px;
        }

        .lang-options-list::-webkit-scrollbar-track {
            background: transparent;
        }

        .lang-options-list::-webkit-scrollbar-thumb {
            background: var(--border-color);
            border-radius: 3px;
        }

        .lang-options-list::-webkit-scrollbar-thumb:hover {
            background: var(--text-gray);
        }

        .lang-option-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            color: var(--text-gray);
            text-decoration: none;
            transition: all 0.2s;
            cursor: pointer;
            position: relative;
        }

        .lang-option-item:hover {
            background: rgba(247, 166, 0, 0.08);
            color: var(--text-white);
        }

        .lang-option-item.active {
            background: rgba(247, 166, 0, 0.12);
            color: var(--primary-yellow);
        }

        .lang-option-flag {
            font-size: 20px;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .lang-option-name {
            flex: 1;
            font-size: 14px;
            font-weight: 500;
        }

        .lang-check-icon {
            opacity: 0;
            color: var(--primary-yellow);
            flex-shrink: 0;
            transition: opacity 0.2s;
        }

        .lang-option-item.active .lang-check-icon {
            opacity: 1;
        }

        .mobile-menu-wrapper {
            display: none;
        }
        
        /* Mobile Hamburger Menu */
		.mobile-menu-toggle {
			display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
            margin-left: 12px;
            position: relative;
            z-index: 1001;
        }

        .hamburger-line {
            width: 24px;
            height: 2px;
            background: var(--text-white);
            transition: all 0.3s ease;
            position: relative;
        }

        .hamburger-line:not(:last-child) {
            margin-bottom: 5px;
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
            opacity: 0;
            transform: translateX(20px);
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Mobile Navigation Overlay */
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.8);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mobile-nav-overlay.active {
            display: block;
            opacity: 1;
        }

        .mobile-nav-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 360px;
            height: 100vh;
            background: var(--card-bg);
            z-index: 1000;
            overflow-y: auto;
            transition: right 0.3s ease;
            padding: 0;
            box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
        }

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

        /* Mobile Menu Header */
        .mobile-menu-header {
            background: var(--dark-bg);
            padding: 24px 20px;
            border-bottom: 2px solid var(--primary-yellow);
            flex-shrink: 0;
        }

        .mobile-menu-logo {
            text-align: center;
            margin-bottom: 20px;
        }

        .mobile-menu-logo img {
            height: 45px;
            max-width: 180px;
            object-fit: contain;
        }

        /* Mobile Tools Row (Theme + Language) */
        .mobile-tools-row {
            display: flex;
            gap: 8px;
            margin-bottom: 16px;
        }

        .mobile-theme-toggle,
        .mobile-lang-toggle {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 12px;
            background: rgba(247, 166, 0, 0.08);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-white);
            font-family: 'Cairo', sans-serif;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .mobile-theme-toggle:hover,
        .mobile-lang-toggle:hover {
            background: rgba(247, 166, 0, 0.15);
            border-color: var(--primary-yellow);
        }

        .mobile-theme-toggle svg,
        .mobile-lang-toggle svg:first-child {
            flex-shrink: 0;
        }

        .mobile-theme-text,
        .mobile-current-lang {
            flex: 1;
            text-align: right;
        }

        .mobile-lang-arrow {
            flex-shrink: 0;
            transition: transform 0.2s;
        }

        .mobile-lang-toggle.active .mobile-lang-arrow {
            transform: rotate(180deg);
        }

        /* Mobile Language Dropdown */
        .mobile-lang-dropdown {
            max-height: 0;
            overflow: hidden;
            margin-bottom: 0;
            transition: max-height 0.3s ease, margin-bottom 0.3s ease;
            background: var(--card-bg);
            border-radius: 8px;
        }

        .mobile-lang-dropdown.active {
            max-height: 400px;
            margin-bottom: 16px;
            overflow-y: auto;
        }

        .mobile-lang-dropdown::-webkit-scrollbar {
            width: 4px;
        }

        .mobile-lang-dropdown::-webkit-scrollbar-track {
            background: transparent;
        }

        .mobile-lang-dropdown::-webkit-scrollbar-thumb {
            background: var(--border-color);
            border-radius: 2px;
        }

        .mobile-lang-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            color: var(--text-white);
            text-decoration: none;
            transition: all 0.2s;
            border-bottom: 1px solid rgba(45, 48, 55, 0.5);
        }

        .mobile-lang-option:last-child {
            border-bottom: none;
        }

        .mobile-lang-option:hover {
            background: rgba(247, 166, 0, 0.1);
            color: var(--text-white);
        }

        .mobile-lang-option.active {
            background: rgba(247, 166, 0, 0.15);
            color: var(--primary-yellow);
        }

        .mobile-lang-flag {
            font-size: 20px;
            width: 24px;
            text-align: center;
            flex-shrink: 0;
        }

        .mobile-lang-option span:nth-child(2) {
            flex: 1;
            font-size: 14px;
            font-weight: 500;
        }

        .mobile-lang-check {
            opacity: 0;
            color: var(--primary-yellow);
            flex-shrink: 0;
            transition: opacity 0.2s;
        }

        .mobile-lang-option.active .mobile-lang-check {
            opacity: 1;
        }

        /* Mobile Menu Actions */
        .mobile-menu-actions {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .btn-block {
            width: 100%;
            text-align: center;
            justify-content: center;
        }

        /* Mobile Menu Items Container */
        .mobile-menu-items {
            flex: 1;
            overflow-y: auto;
            padding: 8px 0;
        }

        .mobile-nav-item {
            border-bottom: 1px solid var(--border-color);
        }

        .mobile-nav-item > a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 24px;
            color: var(--text-white);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: background 0.2s;
        }

        .mobile-nav-item > a:hover {
            background: rgba(247, 166, 0, 0.1);
            color: var(--primary-yellow);
        }

        .mobile-nav-arrow {
            transition: transform 0.3s;
            color: var(--text-gray);
        }

        .mobile-nav-item.active .mobile-nav-arrow {
            transform: rotate(180deg);
        }

        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            background: rgba(12, 14, 18, 0.5);
            transition: max-height 0.3s ease;
        }

        .mobile-nav-item.active .mobile-submenu {
            max-height: 1000px;
        }

        .mobile-submenu-title {
            padding: 12px 24px 8px 24px;
            font-size: 11px;
            color: var(--primary-yellow);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 700;
        }

        .mobile-submenu a {
            display: block;
            padding: 10px 24px 10px 36px;
            color: var(--text-gray);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.2s;
        }

        .mobile-submenu a:hover {
            background: rgba(247, 166, 0, 0.05);
            color: var(--text-white);
            padding-right: 28px;
        }

		@media (max-width: 968px) {
            .nav-buttons {
                width: 100%;
				margin-right: 10px;
            }

            .mobile-menu-wrapper {
                display: flex;
            }
			
			
			.top-banner-content {
				padding: 0 10px !important;
				gap: 0 !important;
			}
			
			.top-banner-content .top-banner-btn {
				width: 188px;
				padding: 10px;
				margin-right: 10px;
			}


            .nav-menu {
                display: none !important;
            }

            .nav-buttons {
                display: none;
            }

            .header-tools {
                display: none;
            }
        }

        .btn {
            padding: 8px 12px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
            font-size: 14px;
            font-family: 'Cairo', sans-serif;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: var(--text-white);
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(247, 166, 0, 0.4);
        }

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

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

        /* Hero Section */
        .hero {
            margin-top: 0;
            padding: 60px 24px;
            background: radial-gradient(ellipse at center, rgba(247, 166, 0, 0.1) 0%, transparent 70%);
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 46px;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 16px;
            background: linear-gradient(135deg, var(--text-white) 0%, var(--primary-yellow) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 16px;
            color: var(--text-gray);
            margin-bottom: 24px;
            line-height: 1.8;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-top: 40px;
        }

        .stat-card {
            padding: 16px;
            background: var(--card-bg);
            border-radius: 8px;
            border: 1px solid var(--border-color);
            text-align: center;
        }

        .stat-value {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-yellow);
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 11px;
            color: var(--text-gray);
        }

        .hero-visual {
            position: relative;
        }

        .mining-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 24px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .mining-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
        }

        .hashrate-display {
            font-size: 38px;
            font-weight: 700;
            margin: 12px 0;
            color: var(--primary-yellow);
        }

        .hashrate-label {
            color: var(--text-gray);
            font-size: 12px;
        }

        /* Calculator Section */
        .calculator {
            padding: 60px 24px;
            background: var(--card-bg);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .calculator-container {
            max-width: 1600px;
            margin: 0 auto;
        }

        .calculator-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 32px;
        }

        .calc-inputs {
            display: grid;
            gap: 16px;
        }

        .input-group label {
            display: block;
            margin-bottom: 6px;
            color: var(--text-gray);
            font-size: 15px;
            font-weight: 600;
        }

        .input-group input,
        .input-group select {
            width: 100%;
            padding: 10px 14px;
            background: var(--dark-bg);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-white);
            font-size: 16px;
            font-family: 'Cairo', sans-serif;
            text-align: right;
        }

        .calc-results {
            background: var(--dark-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 24px;
        }

        .result-row {
            display: flex;
			direction: ltr;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .result-row:last-child {
            border-bottom: none;
        }

        .result-label {
            color: var(--text-gray);
            font-size: 15px;
        }

        .result-value {
            font-weight: 700;
            color: var(--primary-yellow);
            font-size: 16px;
			direction: ltr;
        }
		
		.result-value span {
            font-size: 16px;
			margin-left: 7px;
        }

        /* Loader Styles */
        .btn-loading {
            position: relative;
            pointer-events: none;
            opacity: 0.7;
        }

        .btn-loading::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            top: 50%;
            left: 50%;
            margin-left: -8px;
            margin-top: -8px;
            border: 2px solid var(--dark-bg);
            border-radius: 50%;
            border-top-color: transparent;
            animation: spinner 0.6s linear infinite;
        }

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

        .calc-results.loading {
            opacity: 0.5;
            pointer-events: none;
        }

        /* FAQ Accordion Styles */
        .faq-item {
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--primary-yellow);
        }

        .faq-item.active {
            border-color: var(--primary-yellow);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-toggle {
            font-size: 20px;
            transition: transform 0.3s ease;
            color: var(--primary-yellow);
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            margin-top: 10px;
        }

        /* Scroll Animations */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Ticker Animation */
        @keyframes ticker-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .ticker-animate {
            display: flex;
            gap: 24px;
            animation: ticker-scroll 20s linear infinite;
        }

        .ticker-animate:hover {
            animation-play-state: paused;
        }

        /* Plans Section */
        .plans {
            padding: 60px 24px;
            background: var(--dark-bg);
        }

        .plans-container {
            max-width: 1600px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-gray);
            font-size: 15px;
            margin-bottom: 40px;
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .plan-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 24px;
            transition: all 0.2s;
            position: relative;
        }

        .plan-card:hover {
            transform: translateY(-4px);
            border-color: var(--primary-yellow);
            box-shadow: 0 12px 32px rgba(247, 166, 0, 0.2);
        }

        .plan-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: var(--dark-bg);
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .plan-name {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .plan-price {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary-yellow);
            margin-bottom: 6px;
        }

        .plan-duration {
            color: var(--text-gray);
            margin-bottom: 20px;
            font-size: 12px;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 20px;
        }

        .plan-features li {
            padding: 8px 0;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            font-size: 13px;
        }

        .feature-label {
            color: var(--text-gray);
        }

        .feature-value {
            color: var(--text-white);
            font-weight: 600;
        }

        /* Features Section */
        .features {
            padding: 60px 24px;
            background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(247, 166, 0, 0.05) 100%);
        }

        .features-grid {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .feature-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            transition: all 0.2s;
        }

        .feature-card:hover {
            border-color: var(--primary-yellow);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin: 0 auto 16px;
        }

        .feature-title {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .feature-description {
            color: var(--text-gray);
            line-height: 1.7;
            font-size: 13px;
        }

        /* Testimonials */
        .testimonials {
            padding: 60px 24px;
            background: var(--card-bg);
        }

        .testimonials-grid {
            max-width: 1600px;
            margin: 32px auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 20px;
        }

        .testimonial-card {
            background: var(--dark-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 24px;
        }

        .testimonial-text {
            color: var(--text-gray);
            margin-bottom: 16px;
            font-size: 14px;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .author-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }

        .author-info h4 {
            font-size: 14px;
            margin-bottom: 2px;
        }

        .author-info p {
            font-size: 12px;
            color: var(--text-gray);
        }

        /* VIP Program Section */
        .vip-program {
            padding: 60px 24px;
            background: linear-gradient(135deg, rgba(247, 166, 0, 0.15) 0%, transparent 100%);
            border-top: 1px solid var(--border-color);
        }

        .vip-container {
            max-width: 1600px;
            margin: 0 auto;
        }

        .vip-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .vip-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
        }

        .vip-icon {
            font-size: 40px;
            margin-bottom: 12px;
        }

        .vip-title {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .vip-description {
            color: var(--text-gray);
            font-size: 13px;
            line-height: 1.6;
        }

        /* FAQ Section */
        .faq {
            padding: 60px 24px;
            background: var(--dark-bg);
        }

        .faq-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .faq-grid {
            display: grid;
            gap: 16px;
            margin-top: 32px;
        }

        .faq-item {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 20px 24px;
        }

        .faq-question {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-white);
        }

        .faq-answer {
            color: var(--text-gray);
            font-size: 14px;
            line-height: 1.8;
        }

        /* CTA Section */
        .cta {
            padding: 60px 24px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            text-align: center;
        }

        .cta h2 {
            font-size: 36px;
            font-weight: 800;
            color: var(--dark-bg);
            margin-bottom: 16px;
        }

        .cta p {
            font-size: 17px;
            color: var(--dark-bg);
            opacity: 0.9;
            margin-bottom: 28px;
        }

        .cta .btn {
            background: var(--dark-bg);
            color: var(--primary-yellow);
            padding: 12px 40px;
            font-size: 15px;
        }

        .cta .btn:hover {
            background: var(--card-bg);
        }

        /* Footer */
        .footer {
            background: var(--card-bg);
            padding: 48px 24px 24px;
            border-top: 1px solid var(--border-color);
        }

        .footer-container {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr repeat(5, 1fr);
            gap: 40px;
            margin-bottom: 32px;
        }

        .footer-brand h3 {
            font-size: 20px;
            margin-bottom: 12px;
        }

        .footer-brand p {
            color: var(--text-gray);
            line-height: 1.7;
            font-size: 13px;
        }

        .footer-links h4 {
            margin-bottom: 14px;
            font-size: 14px;
        }

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

        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            display: block;
            padding: 5px 0;
            transition: color 0.2s;
            font-size: 13px;
        }

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

        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 12px;
            line-height: 1.6;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .mega-menu {
                min-width: 500px;
            }
        }

        @media (max-width: 968px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .hero-content h1 {
                font-size: 32px;
            }

            .nav-menu {
                display: none;
            }

            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }

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

            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Login Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
        }

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

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

        .login-modal {
            background: #FFFFFF;
            border-radius: 16px;
            width: 90%;
            max-width: 480px;
            padding: 0;
            position: relative;
            animation: slideUp 0.4s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        }

        .modal-header {
            padding: 28px 24px 20px;
            border-bottom: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-title {
            font-size: 22px;
            font-weight: 600;
            color: #0B0E11;
            margin: 0;
        }

        .modal-close {
            background: transparent;
            border: none;
            color: #707A8A;
            font-size: 26px;
            cursor: pointer;
            padding: 4px;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            line-height: 1;
        }

        .modal-close:hover {
            color: #0B0E11;
        }

        .modal-body {
            padding: 0 24px 28px;
        }

        .modal-subtitle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin-bottom: 24px;
            font-size: 15px;
            color: #707A8A;
        }

        .modal-subtitle a {
            color: #F7A600;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .modal-subtitle a:hover {
            text-decoration: underline;
        }

        .modal-tabs {
            display: flex;
            gap: 0;
            margin-bottom: 28px;
            border-bottom: 1px solid #EAECEF;
            justify-content: flex-start;
        }

        .modal-tab {
            padding: 0 4px 12px;
            background: transparent;
            border: none;
            color: #707A8A;
            font-size: 16px;
            font-weight: 400;
            cursor: pointer;
            transition: all 0.2s;
            font-family: 'Cairo', sans-serif;
            position: relative;
            margin-left: 28px;
        }

        .modal-tab:first-child {
            margin-left: 0;
        }

        .modal-tab.active {
            color: #0B0E11;
            font-weight: 500;
        }

        .modal-tab.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            right: 0;
            height: 2px;
            background: #F7A600;
            border-radius: 2px 2px 0 0;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            color: #0B0E11;
            font-size: 15px;
            font-weight: 400;
            text-align: right;
        }

        .form-input {
            width: 100%;
            padding: 13px 16px;
            background: #F5F5F5;
            border: 1px solid #F5F5F5;
            border-radius: 6px;
            color: #0B0E11;
            font-size: 16px;
            font-family: 'Cairo', sans-serif;
            transition: all 0.2s;
            text-align: right;
        }

        .form-input:focus {
            outline: none;
            border-color: #F7A600;
            background: #FFFFFF;
        }

        .form-input::placeholder {
            color: #B7BDC6;
        }

        .password-input-wrapper {
            position: relative;
        }

        .password-toggle {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: #B7BDC6;
            cursor: pointer;
            padding: 0;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .password-toggle:hover {
            color: #707A8A;
        }

        .forgot-password {
            text-align: right;
            margin-top: 8px;
            margin-bottom: 24px;
        }

        .forgot-password a {
            color: #F7A600;
            text-decoration: none;
            font-size: 15px;
            font-weight: 400;
        }

        .forgot-password a:hover {
            text-decoration: underline;
        }

        .modal-submit-btn {
            width: 100%;
            padding: 14px;
            background: #F7A600;
            border: none;
            border-radius: 6px;
            color: #FFFFFF;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            font-family: 'Cairo', sans-serif;
        }

        .modal-submit-btn:hover {
            background: #E09500;
        }

        .modal-submit-btn:active {
            transform: scale(0.99);
        }

        .divider {
            display: flex;
            align-items: center;
            gap: 16px;
            margin: 24px 0;
            color: #B7BDC6;
            font-size: 14px;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #EAECEF;
        }

        .social-login {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .social-btn {
            flex: 1;
            max-width: 70px;
			height: 60px;
            padding: 5px 0 0;
            background: #FFFFFF;
            border: 1px solid #EAECEF;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }

        .social-btn:hover {
            border-color: #D1D5DB;
            background: #FAFAFA;
        }

        .social-btn svg {
            width: 20px;
            height: 20px;
        }

        .social-btn-label {
            font-size: 12px;
            color: #707A8A;
            font-weight: 400;
            font-family: 'Cairo', sans-serif;
        }

        .modal-footer {
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #EAECEF;
            color: #707A8A;
            font-size: 15px;
        }

        .modal-footer a {
            color: #F7A600;
            text-decoration: none;
            font-weight: 400;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .modal-footer a:hover {
            text-decoration: underline;
        }

        .qr-section {
            text-align: center;
            padding: 20px 0;
        }

        .qr-code-box {
            width: 200px;
            height: 200px;
            margin: 20px auto;
            background: #F5F5F5;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #EAECEF;
        }

        .qr-hint {
            color: #707A8A;
            font-size: 15px;
            margin-top: 12px;
        }

        /* Marquee Slider */
        .marquee-section {
            background: var(--card-bg);
            border-bottom: 1px solid var(--border-color);
            overflow: hidden;
            padding: 12px 0;
        }

        .marquee-container {
            overflow-x: hidden;
            display: flex;
            flex-direction: row;
            position: relative;
            width: 100%;
        }

        .marquee-content {
            display: flex;
            animation: scrollRTL 30s linear infinite;
            gap: 40px;
            padding-right: 40px;
            will-change: transform;
        }

        .marquee-content:hover {
            animation-play-state: paused;
        }

        @keyframes scrollRTL {
            0% { transform: translateX(0); }
            100% { transform: translateX(50%); }
        }

        .marquee-item {
            display: flex;
            align-items: center;
            gap: 12px;
            white-space: nowrap;
            font-size: 14px;
            color: var(--text-gray);
        }

        .marquee-badge {
            background: var(--primary-yellow);
            color: var(--dark-bg);
            padding: 4px 12px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 12px;
        }

        .marquee-text {
            color: var(--text-white);
        }

        /* Hero Slider */
        .hero-slider {
            position: relative;
            max-width: 1600px;
            margin: 10px auto;
            padding: 0 5px;
        }

        .swiper {
            width: 100%;
            border-radius: 6px;
            overflow: hidden;
        }

        .swiper-slide {
            position: relative;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #1a1d24, #2d3037);
            border-radius: 6px;
            padding: 60px;
        }

        @media (max-width: 768px) {
            .swiper-slide {
                height: 350px;
                padding: 40px 20px;
            }
        }

        @media (max-width: 480px) {
            .swiper-slide {
                height: 300px;
                padding: 30px 16px;
            }
        }

        .slide-content {
            max-width: 600px;
            z-index: 1;
        }

        .slide-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 16px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @media (max-width: 768px) {
            .slide-title {
                font-size: 32px;
            }
        }

        @media (max-width: 480px) {
            .slide-title {
                font-size: 24px;
            }
        }

        .slide-description {
            font-size: 18px;
            color: var(--text-gray);
            margin-bottom: 24px;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .slide-description {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .slide-description {
                font-size: 14px;
                margin-bottom: 16px;
            }
        }

        .slide-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: var(--primary-yellow);
            color: var(--dark-bg);
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .slide-cta:hover {
            background: #FFB800;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(247, 166, 0, 0.4);
        }

        .slide-image {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.1;
            font-size: 300px;
        }

        .slider-nav {
            position: absolute;
            bottom: 24px;
            right: 24px;
            display: flex;
            gap: 8px;
            z-index: 2;
        }

        .swiper-pagination {
            position: relative !important;
            margin-top: 24px !important;
        }

        .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.3);
            opacity: 1;
            transition: all 0.3s;
        }

        .swiper-pagination-bullet-active {
            background: var(--primary-yellow);
            width: 28px;
            border-radius: 5px;
        }

        /* Top Banner Styles */
        .top-banner {
            background: linear-gradient(135deg, #F7A600, #FF6B00);
            padding: 16px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .top-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .top-banner-content {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .top-banner-icon {
            font-size: 24px;
            animation: bounce 2s infinite;
        }

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

        .top-banner-text {
            color: #FFFFFF;
            font-size: 18px;
            font-weight: 700;
        }

        .top-banner-btn {
            background: #FFFFFF;
            color: #F7A600;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 16px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .top-banner-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.3);
        }

        /* Spotlight Section */
        .spotlight-section {
            padding: 80px 0;
            background: var(--card-bg);
            position: relative;
            overflow: hidden;
        }

        .spotlight-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(247,166,0,0.1), transparent);
            pointer-events: none;
        }

        .spotlight-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        .spotlight-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .spotlight-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #F7A600, #FFD700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .spotlight-subtitle {
            font-size: 20px;
            color: var(--text-gray);
        }

        .spotlight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
        }

        .spotlight-card {
            background: var(--dark-bg);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 32px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .spotlight-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #F7A600, #FFD700);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .spotlight-card:hover {
            border-color: #F7A600;
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(247, 166, 0, 0.2);
        }

        .spotlight-card:hover::before {
            transform: scaleX(1);
        }

        .spotlight-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: block;
        }

        .spotlight-card-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-white);
        }

        .spotlight-card-desc {
            font-size: 16px;
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .spotlight-card-link {
            color: #F7A600;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s;
        }

        .spotlight-card-link:hover {
            gap: 12px;
        }

        /* Create Account Section */
        .create-account-section {
            padding: 80px 0;
            background: var(--dark-bg);
            position: relative;
        }

        .create-account-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .create-account-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .create-account-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--text-white);
        }

        .create-account-subtitle {
            font-size: 20px;
            color: var(--text-gray);
        }

        .account-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
        }

        .account-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
        }

        .account-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 0;
            background: linear-gradient(180deg, transparent, rgba(247,166,0,0.1));
            transition: height 0.3s;
        }

        .account-card:hover {
            transform: translateY(-8px);
            border-color: #F7A600;
        }

        .account-card:hover::after {
            height: 100%;
        }

        .account-card-number {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #F7A600, #FFD700);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 800;
            color: #FFFFFF;
        }

        .account-card-icon {
            font-size: 56px;
            margin-bottom: 24px;
            display: block;
        }

        .account-card-title {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-white);
            position: relative;
            z-index: 1;
        }

        .account-card-desc {
            font-size: 17px;
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }

        .account-card-features {
            list-style: none;
            margin-bottom: 32px;
            position: relative;
            z-index: 1;
        }

        .account-card-features li {
            font-size: 16px;
            color: var(--text-gray);
            padding: 10px 0;
            padding-right: 28px;
            position: relative;
        }

        .account-card-features li::before {
            content: '✓';
            position: absolute;
            right: 0;
            color: #20BE7C;
            font-weight: 700;
            font-size: 18px;
        }

        .account-card-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #F7A600, #FF6B00);
            color: #FFFFFF;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            z-index: 1;
        }

        .account-card-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(247,166,0,0.4);
        }

        .phone-input-group {
            display: flex;
            gap: 8px;
            margin-bottom: 16px;
        }

        .country-selector {
            position: relative;
            width: 100%;
        }

        .country-selected {
            width: 100%;
            padding: 11px;
            background: #FFFFFF;
            border: 2px solid #E5E7EB;
            border-radius: 8px;
            color: #1F2937;
            font-size: 17px;
            font-family: 'Cairo', sans-serif;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            transition: all 0.2s;
        }

        .country-selected:hover {
            border-color: #D1D5DB;
        }

        .country-selected.active {
            border-color: #F7A600;
            background: #FFFFFF;
        }

        .country-flag {
            font-size: 26px;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .country-code {
            flex: 1;
            text-align: right;
            font-size: 17px;
            font-weight: 500;
            color: #1F2937;
        }

        .dropdown-arrow {
            color: #9CA3AF;
            font-size: 12px;
            margin-left: 8px;
        }

        .country-dropdown {
            position: absolute;
            top: calc(100% + 4px);
            left: 0;
            right: 0;
            background: #FFFFFF;
            border: 1px solid #E5E7EB;
            border-radius: 8px;
            max-height: 320px;
            overflow-y: auto;
            z-index: 100;
            display: none;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .country-dropdown.active {
            display: block;
        }

        .country-search {
            padding: 12px;
            border-bottom: 1px solid #E5E7EB;
            position: sticky;
            top: 0;
            background: #FFFFFF;
            z-index: 1;
        }

        .country-search input {
            width: 100%;
            padding: 10px 12px;
            background: #F9FAFB;
            border: 1px solid #E5E7EB;
            border-radius: 6px;
            font-size: 16px;
            font-family: 'Cairo', sans-serif;
            text-align: right;
        }

        .country-search input:focus {
            outline: none;
            border-color: #F7A600;
            background: #FFFFFF;
        }

        .country-search input::placeholder {
            color: #9CA3AF;
        }

        .country-list {
            list-style: none;
            padding: 4px 0;
            margin: 0;
        }

        .country-item {
            padding: 12px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: background 0.15s;
        }

        .country-item:hover {
            background: #F9FAFB;
        }

        .country-item-content {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
        }

        .country-name {
            flex: 1;
            text-align: right;
            font-size: 16px;
            color: #1F2937;
            font-weight: 400;
        }

        .country-item-code {
            font-size: 15px;
            color: #6B7280;
            direction: ltr;
        }

        .location-icon {
            width: 16px;
            height: 16px;
            color: #9CA3AF;
            margin-right: 8px;
        }

        .phone-number-input {
            flex: 1;
        }

        .phone-number-input input {
            width: 100%;
            padding: 13px 16px;
            background: #F5F5F5;
            border: 1px solid #F5F5F5;
            border-radius: 6px;
            color: #0B0E11;
            font-size: 16px;
            font-family: 'Cairo', sans-serif;
            transition: all 0.2s;
            direction: ltr;
            text-align: left;
        }

        .phone-number-input input:focus {
            outline: none;
            border-color: #F7A600;
            background: #FFFFFF;
        }

        .phone-number-input input::placeholder {
            color: #B7BDC6;
        }

        /* Notification Styles */
        .notification {
            pointer-events: all;
            margin-bottom: 15px;
            padding: 16px 20px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: slideInDown 0.4s ease, fadeOut 0.4s ease 4.6s;
            opacity: 1;
            direction: rtl;
            font-size: 14px;
            position: relative;
            overflow: hidden;
        }

        .notification::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: currentColor;
            animation: progressBar 5s linear;
        }

        @keyframes progressBar {
            from { width: 100%; }
            to { width: 0%; }
        }

        @keyframes slideInDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

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

        .notification-success {
            background: linear-gradient(135deg, #20BE7C 0%, #1AA366 100%);
            color: #ffffff;
            border-left: 4px solid #ffffff;
        }

        .notification-error {
            background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
            color: #ffffff;
            border-left: 4px solid #ffffff;
        }

        .notification-warning {
            background: linear-gradient(135deg, #fedc41 0%, #F7A600 100%);
            color: #1E1E1E;
            border-left: 4px solid #1E1E1E;
        }

        .notification-info {
            background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
            color: #ffffff;
            border-left: 4px solid #ffffff;
        }

        .notification-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .notification-content {
            flex: 1;
            font-weight: 500;
        }

        .notification-close {
            flex-shrink: 0;
            background: none;
            border: none;
            color: inherit;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.2s;
            font-size: 20px;
            padding: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .notification-close:hover {
            opacity: 1;
        }

        /* Remove notification animation */
        .notification.removing {
            animation: slideOutUp 0.3s ease forwards;
        }
		
        .verification-digit{
            width: 55px;
			height: 55px;
			text-align: center;
			font-size: 24px;
			border: 2px solid #e0e0e0;
			border-radius: 8px;
			outline: none;
        }
		
        @keyframes slideOutUp {
            from {
                transform: translateY(0);
                opacity: 1;
            }
            to {
                transform: translateY(-100%);
                opacity: 0;
            }
        }
