        :root {
            --primary: #229fca;
            --primary-dark: #0052d4;
            --primary-light: #e6f0ff;
            --secondary: #7e57c2;
            --accent: #00c853;
            --danger: #ff5252;
            --warning: #ffab00;
            --dark: #121826;
            --darker: #0d1117;
            --light: #f8f9fa;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #111827;
            --text: #ffffff;
            --text-secondary: #9ca3af;
            --card-bg: rgba(255, 255, 255, 0.05);
            --header-height: 80px;
            --border-radius: 12px;
            --border-radius-lg: 16px;
            --transition: all 0.3s ease;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
            --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
        }

        [data-theme="light"] {
            --darker: #f8f9fa;
            --dark: #e9ecef;
            --text: #212529;
            --text-secondary: #495057;
            --card-bg: rgba(0, 0, 0, 0.03);
            --gray-700: #ced4da;
            --gray-600: #adb5bd;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: var(--darker);
            color: var(--text);
            line-height: 1.6;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            overflow-x: hidden;
            scroll-behavior: smooth;
            background-image: 
                radial-gradient(circle at 15% 50%, rgba(6, 182, 144, 0.08) 0%, transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(126, 87, 194, 0.08) 0%, transparent 25%),
                linear-gradient(to bottom, var(--darker), var(--dark));
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navbar stilleri */
        header {
            background: rgb(25 28 36 / 90%);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            transition: var(--transition);
        }

        [data-theme="light"] header {
            background: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        header.scrolled {
            padding: 0.8rem 0;
            box-shadow: var(--shadow-md);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text);
            text-decoration: none;
        }

        .logo i {
            color: #FFD700;
        }

        nav {
            display: flex;
            align-items: center;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
            margin-right: 1.5rem;
        }

        nav a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
            padding: 0.5rem 0;
        }

        nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: var(--primary);
        }

        nav a:hover:after {
            width: 100%;
        }

        .nav-controls {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .theme-toggle, .language-selector {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            border: none;
        }

        [data-theme="light"] .theme-toggle, 
        [data-theme="light"] .language-selector {
            background: rgba(0, 0, 0, 0.05);
        }

        .theme-toggle:hover, .language-selector:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        .language-selector {
            width: auto;
            border-radius: 18px;
            padding: 0 12px;
            gap: 6px;
            font-weight: 500;
        }

        .language-selector span {
            font-size: 0.8rem;
        }

        /* Dil seçenekleri dropdown */
        .language-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 10px;
            width: 200px;
            background: var(--darker);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-xl);
            padding: 0.5rem;
            z-index: 1000;
            display: none;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        [data-theme="light"] .language-dropdown {
            background: var(--light);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .language-dropdown.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        .language-option {
            display: flex;
            align-items: center;
            padding: 0.6rem 0.8rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
            color: var(--text);
        }

        .language-option:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        [data-theme="light"] .language-option:hover {
            background: rgba(0, 0, 0, 0.05);
        }

        .language-flag {
            width: 20px;
            height: 15px;
            margin-right: 10px;
            border-radius: 2px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: bold;
            background: var(--gray-700);
            color: white;
        }

        .language-name {
            font-size: 0.85rem;
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
        }

        .auth-btn {
            padding: 0.6rem 1.2rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .auth-login {
            background: transparent;
            color: var(--text);
            border: 1px solid var(--gray-700);
        }

        [data-theme="light"] .auth-login {
            border: 1px solid var(--gray-300);
        }

        .auth-login:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--gray-600);
        }

        [data-theme="light"] .auth-login:hover {
            background: rgba(0, 0, 0, 0.05);
        }

        .auth-signup {
            background: var(--primary);
            color: white;
        }

        .auth-signup:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.5rem;
            cursor: pointer;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .mobile-menu-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Mobile menü stilleri */
        @media (max-width: 992px) {
            nav {
                position: fixed;
                top: var(--header-height);
                right: -100%;
                width: 70%;
                height: calc(100vh - var(--header-height));
                background: var(--darker);
                transition: right 0.3s ease;
                padding: 2rem;
                border-left: 1px solid rgba(255, 255, 255, 0.05);
                backdrop-filter: blur(10px);
                display: flex;
                flex-direction: column;
                z-index: 1000;
            }

            [data-theme="light"] nav {
                border-left: 1px solid rgba(0, 0, 0, 0.05);
            }

            nav.active {
                right: 0;
            }

            nav ul {
                flex-direction: column;
                gap: 1.5rem;
                width: 100%;
                margin-right: 0;
                margin-bottom: 1.5rem;
            }

            .nav-controls {
                flex-direction: column;
                width: 100%;
                margin-top: 2rem;
            }

            .theme-toggle, .language-selector {
                width: 100%;
                border-radius: var(--border-radius);
                justify-content: flex-start;
                padding: 0.8rem 1.2rem;
            }

            .language-dropdown {
                position: static;
                width: 100%;
                margin-top: 0.5rem;
                box-shadow: none;
            }

            .auth-buttons {
                flex-direction: column;
                width: 100%;
            }

            .auth-btn {
                text-align: center;
                width: 100%;
            }

            .mobile-menu-btn {
                display: flex;
            }
        }

        /* Animasyonlar */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Particle Background */
        .particles-container {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            opacity: 0.5;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .particle .label {
            font-size: 0.7rem;
            color: #ffffff;
            margin-top: 2px;
            pointer-events: none;
        }

        .particle.circle {
            border-radius: 50%;
            background: #efe26c;
            animation: float-up 15s infinite linear;
        }

        .particle.square {
            border-radius: 4px;
        }

        .particle.triangle {
            width: 0;
            height: 0;
            background: transparent !important;
            border-left: 7px solid transparent;
            border-right: 7px solid transparent;
        }

        .particle.square.green {
            background: #4caf50;
            animation: float-up 15s infinite linear;
        }
        .particle.square.green .label { content: "LONG"; }

        .particle.square.red {
            background: #ff5252;
            animation: float-down 15s infinite linear;
        }
        .particle.square.red .label { content: "SHORT"; }

        .particle.triangle.green {
            border-bottom: 14px solid #06b690;
            animation: float-up 15s infinite linear;
        }
        .particle.triangle.green .label { content: "LONG"; }

        .particle.triangle.red {
            border-bottom: 14px solid #ff5252;
            animation: float-down 15s infinite linear;
        }
        .particle.triangle.red .label { content: "SHORT"; }

        @keyframes float-up {
            0% { transform: translateY(100vh) translateX(0) rotate(0deg); }
            100% { transform: translateY(-100vh) translateX(50px) rotate(360deg); }
        }

        @keyframes float-down {
            0% { transform: translateY(-100vh) translateX(0) rotate(0deg); }
            100% { transform: translateY(100vh) translateX(-50px) rotate(-360deg); }
        }
        
        /* Hero Section */
        .hero {
            padding-top: calc(var(--header-height) + 4rem);
            padding-bottom: 6rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(6, 182, 144, 0.15);
            color: #bcf1d2;
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            font-family: 'Roboto', sans-serif;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(6, 182, 144, 0.2);
            animation: pulse 2s infinite;
        }
        
        [data-theme="light"] .hero-badge {
            color: #1c7240;
            background: rgba(6, 182, 144, 0.1);
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(6, 182, 144, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(6, 182, 144, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(6, 182, 144, 0);
            }
        }
        
        .hero-title {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--text) 0%, var(--text-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .hero-title span {
             background: linear-gradient(135deg, #eff3f9 0%, #1e8fc1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }
        
        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 3px;
        }
        
        .hero-description {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }
        
        .hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        
        /* Button Styles */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            position: relative;
            overflow: hidden;
        }
        
        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .btn:hover:before {
            left: 100%;
        }
        
        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: var(--shadow-md);
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--text);
            border: 1px solid var(--gray-700);
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--gray-600);
            transform: translateY(-3px);
        }
        
        /* Section Styles */
        section {
            padding: 6rem 0;
            position: relative;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-subtitle {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            display: block;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--text);
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 2px;
        }
        
        .section-description {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .feature-card {
            background: var(--card-bg);
            border-radius: var(--border-radius-lg);
            padding: 2.5rem;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }
        
        [data-theme="light"] .feature-card {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .feature-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: rgba(0, 102, 255, 0.2);
        }
        
        .feature-card:hover:before {
            opacity: 1;
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            background: rgba(0, 102, 255, 0.1);
            color: var(--primary);
            transition: var(--transition);
        }
        
        .feature-card:hover .feature-icon {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }
        
        .feature-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text);
        }
        
        .feature-description {
            color: var(--text-secondary);
            line-height: 1.6;
            flex-grow: 1;
        }
        
        /* Dashboard Styles */
        .dashboard {
            background: var(--card-bg);
            border-radius: var(--border-radius-lg);
            padding: 2.5rem;
            margin-top: 3rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
        }
        
        [data-theme="light"] .dashboard {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .dashboard:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        }
        
        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .dashboard-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text);
        }
        
        .dashboard-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        
        .dashboard-item {
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            text-align: center;
            transition: var(--transition);
        }
        
        [data-theme="light"] .dashboard-item {
            background: rgba(0, 0, 0, 0.03);
        }
        
        .dashboard-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
        }
        
        [data-theme="light"] .dashboard-item:hover {
            background: rgba(0, 0, 0, 0.05);
        }
        
        .dashboard-value {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }
        
        .dashboard-label {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        
        /* Steps */
        .steps {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
            margin-top: 3rem;
            position: relative;
        }
        
        .steps:before {
            content: '';
            position: absolute;
            top: 40px;
            bottom: 40px;
            left: 30px;
            width: 2px;
            background: rgba(255, 255, 255, 0.1);
            z-index: 0;
        }
        
        [data-theme="light"] .steps:before {
            background: rgba(0, 0, 0, 0.1);
        }
        
        .step {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        .step-number {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-weight: bold;
            font-size: 1.5rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
            transition: var(--transition);
        }
        
        .step:hover .step-number {
            transform: scale(1.1);
        }
        
        .step-content {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 2rem;
            flex-grow: 1;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
        }
        
        [data-theme="light"] .step-content {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .step:hover .step-content {
            transform: translateX(10px);
        }
        
        .step-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text);
        }
        
        .step-description {
            color: var(--text-secondary);
        }
        
        /* Pricing Styles */
        .pricing-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }
        
        .pricing-card {
            background: var(--card-bg);
            border-radius: var(--border-radius-lg);
            padding: 3rem 2.5rem;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        [data-theme="light"] .pricing-card {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .pricing-card.featured {
            border: 2px solid #F1C40F;
            transform: scale(1.05);
            z-index: 2;
        }
        
        .pricing-card.featured:before {
            content: 'POPÜLER';
            position: absolute;
            top: 20px;
            right: -35px;
            background: #E0B700;
            color: white;
            padding: 0.4rem 3.5rem;
            font-size: 0.8rem;
            font-weight: 700;
            transform: rotate(45deg);
            letter-spacing: 1px;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }
        
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .pricing-header {
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }
        
        .pricing-title {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text);
            position: relative;
        }
        
        .pricing-description {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        
        .pricing-price {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--text);
            position: relative;
            display: inline-block;
        }
        
        .pricing-price:before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 2px;
        }
        
        .pricing-daily {
            font-size: 0.85rem;
            color: #777;
            margin-top: 4px;
        }
        
        .pricing-period {
            font-size: 1rem;
            color: var(--text-secondary);
            font-weight: 400;
        }
        
        .pricing-savings {
            background: rgba(0, 200, 83, 0.15);
            color: var(--accept);
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            display: inline-block;
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 2.5rem;
            text-align: left;
            flex-grow: 1;
        }
        
        .pricing-features li {
            padding: 0.8rem 0;
            color: var(--text-secondary);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
        }
        
        [data-theme="light"] .pricing-features li {
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        .pricing-features li i {
            color: #5beb9d;
            margin-right: 0.8rem;
            font-size: 1.1rem;
        }
        
        /* FAQ Styles */
        .faq-container {
            margin-top: 3rem;
        }
        
        .faq-item {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            overflow: hidden;
            transition: var(--transition);
        }
        
        [data-theme="light"] .faq-item {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .faq-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        
        .faq-question {
            padding: 1.8rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            color: var(--text);
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.03);
        }
        
        [data-theme="light"] .faq-question {
            background: rgba(0, 0, 0, 0.03);
        }
        
        .faq-question:hover {
            background: rgba(255, 255, 255, 0.05);
            color: var(--primary);
        }
        
        [data-theme="light"] .faq-question:hover {
            background: rgba(0, 0, 0, 0.05);
        }
        
        .faq-answer {
            padding: 0 1.8rem 1.8rem;
            color: var(--text-secondary);
            line-height: 1.6;
            background: rgba(255, 255, 255, 0.02);
            display: none;
        }
        
        [data-theme="light"] .faq-answer {
            background: rgba(0, 0, 0, 0.02);
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        .faq-icon {
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 8rem 0;
            background: linear-gradient(to bottom, var(--dark), var(--darker));
            position: relative;
            overflow: hidden;
        }
        
        [data-theme="light"] .cta-section {
            background: linear-gradient(to bottom, #e9ecef, #f8f9fa);
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .cta-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--text);
        }
        
        .cta-description {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
        }
        
        /* Contact Section Styles */
        .contact-section {
            padding: calc(var(--header-height) + 3rem) 0 4rem;
            min-height: 100vh;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .contact-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--text);
            position: relative;
            display: inline-block;
        }

        .contact-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 2px;
        }

        .contact-subtitle {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .contact-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-card {
            background: var(--card-bg);
            border-radius: var(--border-radius-lg);
            padding: 2rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(0, 102, 255, 0.2);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(0, 102, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--primary);
            flex-shrink: 0;
        }

        .contact-details h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--text);
        }

        .contact-details p {
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
        }

        .contact-details a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
        }

        .contact-details a:hover {
            color: var(--primary);
        }

        .contact-form-container {
            background: var(--card-bg);
            border-radius: var(--border-radius-lg);
            padding: 2.5rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .form-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--text);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-label {
            font-weight: 500;
            color: var(--text);
        }

        .form-input, .form-textarea {
            padding: 1rem;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
            color: var(--text);
            font-family: 'Inter', sans-serif;
            transition: var(--transition);
        }

        [data-theme="light"] .form-input,
        [data-theme="light"] .form-textarea {
            border: 1px solid rgba(0, 0, 0, 0.1);
            background: rgba(0, 0, 0, 0.03);
        }

        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
        }

        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }

        .form-button {
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            background: var(--primary);
            color: white;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .form-button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
        }

        .social-media {
            margin-top: 2rem;
        }

        .social-title {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--text);
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        /* Terms Content Styles */
        .terms-section {
            padding: calc(var(--header-height) + 2rem) 0 4rem;
        }

        .terms-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .terms-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--text);
            position: relative;
            display: inline-block;
        }

        .terms-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 2px;
        }

        .terms-subtitle {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .terms-content {
            background: var(--card-bg);
            border-radius: var(--border-radius-lg);
            padding: 3rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .terms-group {
            margin-bottom: 2.5rem;
        }

        .terms-group:last-child {
            margin-bottom: 0;
        }

        .terms-group-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .terms-group-title i {
            font-size: 1.2rem;
        }

        .terms-list {
            list-style: none;
        }

        .terms-item {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .terms-item:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.7rem;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
        }

        .terms-item-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text);
        }

        .terms-item-content {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .highlight-box {
            background: rgba(0, 102, 255, 0.1);
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 1.5rem 0;
        }

        .highlight-box p {
            margin: 0;
            color: var(--text);
        }

        .clause-number {
            font-weight: bold;
            margin-right: 0.5rem;
            color: var(--primary);
        }

        /* Network Section Styles */
        .network-section {
            padding: calc(var(--header-height) + 3rem) 0 4rem;
        }

        .network-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .network-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--text);
            font-weight: 800;
        }

        .network-subtitle {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .network-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .network-card {
            background: var(--card-bg);
            border-radius: var(--border-radius-lg);
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: var(--transition);
            text-align: center;
            backdrop-filter: blur(10px);
        }

        .network-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .network-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            background: rgba(37, 99, 235, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary);
            margin: 0 auto 1.5rem;
        }

        .network-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--text);
        }

        .network-card p {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .unique-system {
            background: var(--card-bg);
            border-radius: var(--border-radius-lg);
            padding: 3rem;
            margin-bottom: 4rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
        }

        .unique-system h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--text);
        }

        .unique-system p {
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto 2rem;
            line-height: 1.6;
            font-size: 1.1rem;
        }

        .system-highlights {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .system-highlight {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            background: rgba(37, 99, 235, 0.08);
            padding: 0.8rem 1.2rem;
            border-radius: var(--border-radius);
            color: var(--primary);
            font-weight: 500;
        }

        .system-highlight i {
            font-size: 1.2rem;
        }

        .commission-section {
            margin-bottom: 4rem;
        }

        .commission-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .commission-card {
            background: var(--card-bg);
            border-radius: var(--border-radius-lg);
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        .commission-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .level-badge {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .commission-percent {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .commission-amount {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .commission-desc {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        .team-structure {
            background: var(--card-bg);
            border-radius: var(--border-radius-lg);
            padding: 2.5rem;
            margin-bottom: 4rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
        }

        .team-structure h3 {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(--text);
        }

        .structure-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .structure-level {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .level-indicator {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .level-label {
            color: var(--text);
            font-weight: 600;
        }

        .level-connector {
            height: 30px;
            width: 2px;
            background: var(--primary);
            opacity: 0.5;
        }

        .structure-explanation {
            color: var(--text-secondary);
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .step-card {
            background: var(--card-bg);
            border-radius: var(--border-radius-lg);
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        .step-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin: 0 auto 1.5rem;
            font-size: 1.2rem;
        }

        .step-card h3 {
            margin-bottom: 1rem;
            color: var(--text);
            font-size: 1.2rem;
        }

        .step-card p {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .cta-box {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: var(--border-radius-lg);
            padding: 3rem;
            text-align: center;
            color: white;
        }

        .cta-box h2 {
            margin-bottom: 1rem;
            font-size: 2rem;
        }

        .cta-box p {
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-white {
            background: white;
            color: var(--primary);
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Footer */
        footer {
            background: rgb(25 28 36 / 90%);
            padding: 5rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }
        
        [data-theme="light"] footer {
            background: #f8f9fa;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .footer-description {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
            transition: var(--transition);
        }
        
        [data-theme="light"] .social-link {
            background: rgba(0, 0, 0, 0.05);
        }
        
        .social-link:hover {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            transform: translateY(-3px);
        }
        
        .footer-heading {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--text);
            position: relative;
            display: inline-block;
        }
        
        .footer-heading:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 1rem;
        }
        
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .footer-links a i {
            font-size: 0.8rem;
            color: var(--primary);
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        
        .footer-links a:hover i {
            transform: translateX(3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        
        [data-theme="light"] .footer-bottom {
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 110px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
        }
        
        /* Loading Animation */
        .loader-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--darker);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }
        
        .loader {
            width: 50px;
            height: 50px;
            position: relative;
        }
        
        .loader:before {
            content: '';
            width: 50px;
            height: 5px;
            background: rgba(255, 255, 255, 0.1);
            position: absolute;
            top: 60px;
            left: 0;
            border-radius: 50%;
            animation: shadow 0.5s linear infinite;
        }
        
        .loader:after {
            content: '';
            width: 100%;
            height: 100%;
            background: var(--primary);
            position: absolute;
            top: 0;
            left: 0;
            border-radius: 4px;
            animation: loading 0.5s linear infinite;
        }
        
        @keyframes loading {
            17% {
                border-bottom-right-radius: 3px;
            }
            25% {
                transform: translateY(9px) rotate(22.5deg);
            }
            50% {
                transform: translateY(18px) scale(1, 0.9) rotate(45deg);
                border-bottom-right-radius: 40px;
            }
            75% {
                transform: translateY(9px) rotate(67.5deg);
            }
            100% {
                transform: translateY(0) rotate(90deg);
            }
        }
        
        @keyframes shadow {
            0%, 100% {
                transform: scale(1, 1);
            }
            50% {
                transform: scale(1.2, 1);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }

            .network-content {
                grid-template-columns: 1fr;
            }
            
            .system-highlights {
                flex-direction: column;
                align-items: center;
            }
            
            .commission-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .steps:before {
                left: 30px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }

            .contact-content {
                grid-template-columns: 1fr;
            }
            
            .contact-title {
                font-size: 2rem;
            }
            
            .contact-form-container {
                padding: 1.5rem;
            }
            
            .contact-section {
                padding: calc(var(--header-height) + 2rem) 0 3rem;
            }

            .commission-cards {
                grid-template-columns: 1fr;
            }
            
            .steps-container {
                grid-template-columns: 1fr;
            }
            
            .unique-system, .team-structure {
                padding: 2rem;
            }
            
            .cta-box {
                padding: 2rem;
            }
            
            .cta-box h2 {
                font-size: 1.8rem;
            }

            .terms-content {
                padding: 2rem;
            }
            
            .terms-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .feature-card, .step-content, .pricing-card {
                padding: 1.8rem;
            }
            
            .step {
                flex-direction: column;
                text-align: center;
            }
            
            .step-number {
                margin-bottom: 1rem;
            }
            
            .steps:before {
                display: none;
            }
            
            .dashboard-content {
                grid-template-columns: 1fr;
            }
            
            .pricing-price {
                font-size: 2.8rem;
            }
            
            .cta-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }

            .contact-title {
                font-size: 1.8rem;
            }
            
            .contact-card {
                padding: 1.5rem;
                flex-direction: column;
                text-align: center;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .contact-section {
                padding: calc(var(--header-height) + 1.5rem) 0 2rem;
            }

            .network-title {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            
            .unique-system h2 {
                font-size: 1.6rem;
            }
            
            .network-card, .commission-card, .step-card {
                padding: 1.5rem;
            }

            .terms-content {
                padding: 1.5rem;
            }
            
            .terms-title {
                font-size: 1.8rem;
            }
            
            .terms-group-title {
                font-size: 1.3rem;
            }
        }

        /* Light mode için özel stiller */
        [data-theme="light"] section#features,
        [data-theme="light"] section#faq {
            background: var(--darker) !important;
        }
		
		
        /* KILAVUZ.HTML ÖZEL STİLLERİ */
        /* Guide Section Styles */
        .guide-section {
            padding: calc(var(--header-height) + 2rem) 0 4rem;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-subtitle {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            display: block;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--text);
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 2px;
        }
        
        .section-description {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .guide-content {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }
        
        .guide-toc {
            position: sticky;
            top: calc(var(--header-height) + 2rem);
            align-self: start;
            background: var(--card-bg);
            border-radius: var(--border-radius-lg);
            padding: 2rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            height: fit-content;
            overflow: visible;
        }
        
        [data-theme="light"] .guide-toc {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .guide-toc h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--text);
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .guide-toc h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .guide-toc ul {
            list-style: none;
        }
        
        .guide-toc li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .guide-toc li:before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 10px;
            height: 10px;
            border-radius: 2px;
            background: var(--primary);
            opacity: 0.7;
            transition: var(--transition);
        }
        
        .guide-toc a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 500;
            font-size: 0.95rem;
            display: block;
            padding: 0.4rem 0;
            border-radius: var(--border-radius);
        }
        
        .guide-toc a:hover {
            color: var(--primary);
            background: rgba(255, 255, 255, 0.05);
            transform: translateX(5px);
        }
        
        .guide-articles {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }
        
        .guide-article {
            background: var(--card-bg);
            border-radius: var(--border-radius-lg);
            padding: 2.5rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
        }
        
        [data-theme="light"] .guide-article {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .guide-article:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .guide-article:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
        }
        
        .guide-article h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            position: relative;
            padding-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        
        .guide-article h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 2px;
        }
        
        .article-content h4 {
            font-size: 1.2rem;
            margin: 1.5rem 0 1rem;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .article-content h4 i {
            color: var(--primary);
            font-size: 1.1rem;
        }
        
        .article-content ol, .article-content ul {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .article-content li {
            margin-bottom: 0.5rem;
            color: var(--text-secondary);
            padding-left: 0.5rem;
        }
        
        .article-content strong {
            color: var(--text);
            font-weight: 600;
        }
        
        .signal-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.2rem;
            margin: 1.5rem 0;
        }
        
        .signal-type {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--border-radius);
            transition: var(--transition);
            border-left: 4px solid transparent;
        }
        
        [data-theme="light"] .signal-type {
            background: rgba(0, 0, 0, 0.03);
        }
        
        .signal-type:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: var(--shadow-sm);
        }
        
        [data-theme="light"] .signal-type:hover {
            background: rgba(0, 0, 0, 0.05);
        }
        
        .signal-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .signal-icon.yellow {
            background: rgba(255, 215, 0, 0.15);
            color: #FFD700;
            border: 1px solid rgba(255, 215, 0, 0.3);
        }
        
        .signal-icon.green {
            background: rgba(0, 200, 83, 0.15);
            color: #00C853;
            border: 1px solid rgba(0, 200, 83, 0.3);
        }
        
        .signal-icon.red {
            background: rgba(255, 82, 82, 0.15);
            color: #FF5252;
            border: 1px solid rgba(255, 82, 82, 0.3);
        }
        
        .signal-icon.purple {
            background: rgba(126, 87, 194, 0.15);
            color: #7e57c2;
            border: 1px solid rgba(126, 87, 194, 0.3);
        }
        
        .signal-icon.blue {
            background: rgba(6, 182, 144, 0.15);
            color: #06b690;
            border: 1px solid rgba(6, 182, 144, 0.3);
        }
        
        .signal-info h4 {
            margin: 0 0 0.3rem;
            font-size: 1.1rem;
            color: var(--text);
        }
        
        .signal-info p {
            color: var(--text-secondary);
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        [data-theme="light"] .feature-card {
            background: rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .feature-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-sm);
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
        }
        
        .feature-card h5 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--text);
        }
        
        .feature-card p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .guide-note, .guide-warning {
            padding: 1.2rem;
            border-radius: var(--border-radius);
            margin: 1.5rem 0;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            background: rgba(6, 182, 144, 0.1);
            border-left: 4px solid #06b690;
        }
        
        .guide-warning {
            background: rgba(255, 171, 0, 0.1);
            border-left: 4px solid #FFAB00;
        }
        
        .guide-note i, .guide-warning i {
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .guide-note i {
            color: #06b690;
        }
        
        .guide-warning i {
            color: #FFAB00;
        }
        
        .guide-note p, .guide-warning p {
            margin: 0;
            color: var(--text);
        }
        
        .troubleshooting-item {
            margin-bottom: 1.5rem;
            padding: 1.2rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary);
            transition: var(--transition);
        }
        
        [data-theme="light"] .troubleshooting-item {
            background: rgba(0, 0, 0, 0.03);
        }
        
        .troubleshooting-item:hover {
            transform: translateX(5px);
        }
        
        .troubleshooting-item h5 {
            margin: 0 0 0.5rem;
            color: var(--text);
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .troubleshooting-item h5 i {
            color: var(--primary);
        }
        
        .troubleshooting-item p {
            margin: 0;
            color: var(--text-secondary);
        }
        
        .indicator-feature {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--border-radius);
            margin-bottom: 0.8rem;
            transition: var(--transition);
        }
        
        .indicator-feature:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(5px);
        }
        
        .indicator-feature i {
            color: var(--primary);
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
        }
        
        .indicator-feature span {
            color: var(--text);
            font-weight: 500;
        }
        
        /* Guide Section Responsive */
        @media (max-width: 992px) {
            .guide-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .guide-toc {
                position: static;
            }
            
            .signal-types {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .guide-article {
                padding: 1.5rem;
            }
            
            .signal-type {
                flex-direction: column;
                text-align: center;
                gap: 0.8rem;
            }
            
            .guide-note, .guide-warning {
                flex-direction: column;
                text-align: center;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
            }
        }
		
		
	        /* HAKKIMIZDA.HTML ÖZEL STİLLERİ */
        /* About Section Styles */
        .about-section {
            padding: calc(var(--header-height) + 2rem) 0 4rem;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-subtitle {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            display: block;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--text);
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 2px;
        }
        
        .section-description {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .about-content {
            display: flex;
            flex-direction: column;
            gap: 4rem;
        }
        
        .about-story {
            background: var(--card-bg);
            border-radius: var(--border-radius-lg);
            padding: 3rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        [data-theme="light"] .about-story {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .about-story h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--text);
            position: relative;
            padding-bottom: 0.8rem;
        }
        
        .about-story h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .about-story p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        
        .milestones {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
            margin-top: 2.5rem;
        }
        
        .milestone {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        
        [data-theme="light"] .milestone {
            background: rgba(0, 0, 0, 0.03);
        }
        
        .milestone:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
        }
        
        [data-theme="light"] .milestone:hover {
            background: rgba(0, 0, 0, 0.05);
        }
        
        .milestone-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .milestone-label {
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .mission-vision {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .mission, .vision {
            background: var(--card-bg);
            border-radius: var(--border-radius-lg);
            padding: 2.5rem;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
            height: 100%;
        }
        
        [data-theme="light"] .mission,
        [data-theme="light"] .vision {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .mission:hover, .vision:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .mission-icon, .vision-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            background: rgba(0, 102, 255, 0.1);
            color: var(--primary);
            transition: var(--transition);
        }
        
        .mission:hover .mission-icon,
        .vision:hover .vision-icon {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }
        
        .mission h4, .vision h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--text);
        }
        
        .mission p, .vision p {
            color: var(--text-secondary);
            line-height: 1.6;
        }
        
        .team-section, .values-section {
            background: var(--card-bg);
            border-radius: var(--border-radius-lg);
            padding: 3rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        [data-theme="light"] .team-section,
        [data-theme="light"] .values-section {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .team-section h3, .values-section h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--text);
            position: relative;
            padding-bottom: 0.8rem;
        }
        
        .team-section h3:after,
        .values-section h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .team-section p, .values-section p {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            font-size: 1.05rem;
        }
        
        .team-members {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .team-member {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        
        [data-theme="light"] .team-member {
            background: rgba(0, 0, 0, 0.03);
        }
        
        .team-member:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
        }
        
        [data-theme="light"] .team-member:hover {
            background: rgba(0, 0, 0, 0.05);
        }
        
        .member-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    overflow: hidden; /* Resmi daire içine kırpması için şart */
}

.member-image img {
    width: 100%;
    height: auto;
    display: block;
}


        
        .team-member h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--text);
        }
        
        .member-role {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 1rem;
            display: block;
            font-size: 0.9rem;
        }
        
        .team-member p {
            color: var(--text-secondary);
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .values {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .value-item {
            text-align: center;
            padding: 2rem 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--border-radius);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        [data-theme="light"] .value-item {
            background: rgba(0, 0, 0, 0.03);
        }
        
        .value-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
        }
        
        [data-theme="light"] .value-item:hover {
            background: rgba(0, 0, 0, 0.05);
        }
        
        .value-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }
        
        .value-item:hover:before {
            opacity: 1;
        }
        
        .value-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin: 0 auto 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            background: rgba(0, 102, 255, 0.1);
            color: var(--primary);
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }
        
        .value-item:hover .value-icon {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }
        
        .value-item h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--text);
            position: relative;
            z-index: 1;
        }
        
        .value-item p {
            color: var(--text-secondary);
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.5;
            position: relative;
            z-index: 1;
        }
        
        .contact-cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: var(--border-radius-lg);
            padding: 4rem 2rem;
            text-align: center;
            color: white;
        }
        
        .cta-content h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .cta-content p {
            margin-bottom: 2rem;
            opacity: 0.9;
            font-size: 1.1rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-white {
            background: white;
            color: var(--primary);
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
        }
        
        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* About Section Responsive */
        @media (max-width: 992px) {
            .mission-vision {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .about-story, .team-section, .values-section {
                padding: 2rem;
            }
            
            .milestones {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .team-members, .values {
                grid-template-columns: 1fr;
            }
            
            .contact-cta {
                padding: 3rem 1.5rem;
            }
            
            .cta-content h3 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .milestones {
                grid-template-columns: 1fr;
            }
            
            .mission, .vision {
                padding: 2rem 1.5rem;
            }
            
            .team-member, .value-item {
                padding: 1.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
		
		
		
		
		

        /* Login Page Specific Styles */
        .login-section {
            padding: calc(var(--header-height) + 4rem) 0 6rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: radial-gradient(circle at 20% 80%, rgba(6, 182, 144, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(126, 87, 194, 0.08) 0%, transparent 50%),
                        linear-gradient(to bottom, var(--darker), var(--dark));
        }

        .login-container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .login-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            width: 100%;
        }

        .login-info {
            padding-right: 2rem;
        }

        .login-badge {
            display: inline-block;
            background: rgba(6, 182, 144, 0.15);
            color: #bcf1d2;
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            font-family: 'Inter', sans-serif;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(6, 182, 144, 0.2);
        }

        [data-theme="light"] .login-badge {
            color: #1c7240;
            background: rgba(6, 182, 144, 0.1);
        }

        .login-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text);
            line-height: 1.2;
        }

        .login-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .login-features {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            background: rgba(0, 102, 255, 0.1);
            color: var(--primary);
            flex-shrink: 0;
        }

        .feature-text {
            color: var(--text);
            font-weight: 500;
        }

        .login-form-container {
            background: var(--card-bg);
            border-radius: var(--border-radius-lg);
            padding: 3rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: var(--shadow-xl);
            position: relative;
            overflow: hidden;
        }

        [data-theme="light"] .login-form-container {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .login-form-container:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        }

        .form-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .form-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text);
        }

        .form-subtitle {
            color: var(--text-secondary);
            font-size: 1rem;
        }

        .login-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-label {
            font-weight: 500;
            color: var(--text);
            font-size: 0.95rem;
        }

        .form-input {
            padding: 1rem 1.2rem;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            color: var(--text);
            font-family: 'Inter', sans-serif;
            transition: var(--transition);
            font-size: 1rem;
        }

        [data-theme="light"] .form-input {
            border: 1px solid rgba(0, 0, 0, 0.1);
            background: rgba(0, 0, 0, 0.03);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
        }

        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 0.5rem 0 1rem;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .remember-me input {
            width: 16px;
            height: 16px;
        }

        .forgot-password {
            color: var(--primary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .forgot-password:hover {
            text-decoration: underline;
        }

        .login-button {
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            background: var(--primary);
            color: white;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1rem;
            margin-top: 0.5rem;
        }

        .login-button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
        }

        .divider {
            display: flex;
            align-items: center;
            margin: 1.5rem 0;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .divider:before,
        .divider:after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
        }

        [data-theme="light"] .divider:before,
        [data-theme="light"] .divider:after {
            background: rgba(0, 0, 0, 0.1);
        }

        .divider span {
            padding: 0 1rem;
        }

        .social-login {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .social-btn {
            flex: 1;
            padding: 0.8rem;
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            color: var(--text);
        }

        [data-theme="light"] .social-btn {
            border: 1px solid rgba(0, 0, 0, 0.1);
            background: rgba(0, 0, 0, 0.03);
        }

        .social-btn.google:hover {
            background: #db4437;
            color: white;
            border-color: #db4437;
        }

        .social-btn.discord:hover {
            background: #5865f2;
            color: white;
            border-color: #5865f2;
        }

        .register-link {
            text-align: center;
            margin-top: 1.5rem;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        .register-link a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .register-link a:hover {
            text-decoration: underline;
        }

        /* Responsive Styles for Login Page */
        @media (max-width: 992px) {
            .login-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .login-info {
                padding-right: 0;
                text-align: center;
            }
            
            .login-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 576px) {
            .login-form-container {
                padding: 2rem;
            }
            
            .form-title {
                font-size: 1.6rem;
            }
            
            .login-title {
                font-size: 2rem;
            }
            
            .social-login {
                flex-direction: column;
            }
            
            .form-options {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }
        }
		
		
		
		

        /* Register Page Specific Styles */
        .register-section {
            padding: calc(var(--header-height) + 4rem) 0 6rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: radial-gradient(circle at 20% 80%, rgba(6, 182, 144, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(126, 87, 194, 0.08) 0%, transparent 50%),
                        linear-gradient(to bottom, var(--darker), var(--dark));
        }

        .register-container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .register-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            width: 100%;
        }

        .register-info {
            padding-right: 2rem;
        }

        .register-badge {
            display: inline-block;
            background: rgba(126, 87, 194, 0.15);
            color: #d1c4e9;
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            font-family: 'Inter', sans-serif;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(126, 87, 194, 0.2);
        }

        [data-theme="light"] .register-badge {
            color: #5e35b1;
            background: rgba(126, 87, 194, 0.1);
        }

        .register-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text);
            line-height: 1.2;
        }

        .register-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .register-features {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            background: rgba(126, 87, 194, 0.1);
            color: var(--secondary);
            flex-shrink: 0;
        }

        .feature-text {
            color: var(--text);
            font-weight: 500;
        }

        .register-form-container {
            background: var(--card-bg);
            border-radius: var(--border-radius-lg);
            padding: 3rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: var(--shadow-xl);
            position: relative;
            overflow: hidden;
            width: 100%;
            box-sizing: border-box;
        }

        [data-theme="light"] .register-form-container {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .register-form-container:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(135deg, var(--secondary) 0%, #5e35b1 100%);
        }

        .form-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .form-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text);
        }

        .form-subtitle {
            color: var(--text-secondary);
            font-size: 1rem;
        }

        .register-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            width: 100%;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            width: 100%;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            width: 100%;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-label {
            font-weight: 500;
            color: var(--text);
            font-size: 0.95rem;
        }

        .form-input {
            padding: 1rem 1.2rem;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            color: var(--text);
            font-family: 'Inter', sans-serif;
            transition: var(--transition);
            font-size: 1rem;
            width: 100%;
            box-sizing: border-box;
        }

        [data-theme="light"] .form-input {
            border: 1px solid rgba(0, 0, 0, 0.1);
            background: rgba(0, 0, 0, 0.03);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(126, 87, 194, 0.1);
        }

        .password-strength {
            margin-top: 0.5rem;
            height: 4px;
            border-radius: 2px;
            background: rgba(255, 255, 255, 0.1);
            overflow: hidden;
            position: relative;
            width: 100%;
        }

        .password-strength-bar {
            height: 100%;
            width: 0%;
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .password-strength.weak .password-strength-bar {
            width: 33%;
            background: #ff5252;
        }

        .password-strength.medium .password-strength-bar {
            width: 66%;
            background: #ffab00;
        }

        .password-strength.strong .password-strength-bar {
            width: 100%;
            background: #00c853;
        }

        .password-strength-text {
            font-size: 0.8rem;
            margin-top: 0.3rem;
            color: var(--text-secondary);
        }

        .terms-agreement {
            display: flex;
            align-items: flex-start;
            gap: 0.7rem;
            margin: 1rem 0;
            width: 100%;
        }

        .terms-agreement input {
            margin-top: 0.2rem;
            flex-shrink: 0;
        }

        .terms-agreement label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.4;
        }

        .terms-agreement a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }

        .terms-agreement a:hover {
            text-decoration: underline;
        }

        .register-button {
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            background: var(--secondary);
            color: white;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1rem;
            margin-top: 0.5rem;
            width: 100%;
        }

        .register-button:hover {
            background: #5e35b1;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(126, 87, 194, 0.3);
        }

        .login-link {
            text-align: center;
            margin-top: 1.5rem;
            color: var(--text-secondary);
            font-size: 0.95rem;
            width: 100%;
        }

        .login-link a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .login-link a:hover {
            text-decoration: underline;
        }

        .help-link {
            text-align: center;
            margin-top: 1rem;
            color: var(--text-secondary);
            font-size: 0.9rem;
            width: 100%;
        }

        .help-link a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }

        .help-link a:hover {
            text-decoration: underline;
        }

        /* Responsive Styles for Register Page */
        @media (max-width: 992px) {
            .register-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .register-info {
                padding-right: 0;
                text-align: center;
            }
            
            .register-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .register-form-container {
                padding: 2rem;
            }
        }

        @media (max-width: 576px) {
            .form-title {
                font-size: 1.6rem;
            }
            
            .register-title {
                font-size: 2rem;
            }
        }
		
		
		
		
		

        /* Forgot Password Page Specific Styles */
        .forgot-section {
            padding: calc(var(--header-height) + 4rem) 0 6rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle at 20% 80%, rgba(6, 182, 144, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(126, 87, 194, 0.08) 0%, transparent 50%),
                        linear-gradient(to bottom, var(--darker), var(--dark));
        }

        .forgot-container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .forgot-form-container {
            background: var(--card-bg);
            border-radius: var(--border-radius-lg);
            padding: 3rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: var(--shadow-xl);
            position: relative;
            overflow: hidden;
            width: 100%;
            text-align: center;
        }

        [data-theme="light"] .forgot-form-container {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .forgot-form-container:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        }

        .form-header {
            margin-bottom: 2rem;
        }

        .form-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(0, 102, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            color: var(--primary);
        }

        .form-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text);
        }

        .form-subtitle {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.5;
        }

        .forgot-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            text-align: left;
        }

        .form-label {
            font-weight: 500;
            color: var(--text);
            font-size: 0.95rem;
        }

        .form-input {
            padding: 1rem 1.2rem;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            color: var(--text);
            font-family: 'Inter', sans-serif;
            transition: var(--transition);
            font-size: 1rem;
            width: 100%;
            box-sizing: border-box;
        }

        [data-theme="light"] .form-input {
            border: 1px solid rgba(0, 0, 0, 0.1);
            background: rgba(0, 0, 0, 0.03);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
        }

        .form-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .btn-primary {
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            background: var(--primary);
            color: white;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1rem;
            flex: 1;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
        }

        .btn-secondary {
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            background: transparent;
            color: var(--text);
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1rem;
            flex: 1;
            text-decoration: none;
        }

        [data-theme="light"] .btn-secondary {
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-2px);
        }

        .login-link {
            margin-top: 1.5rem;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        .login-link a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .login-link a:hover {
            text-decoration: underline;
        }

        /* Responsive Styles for Forgot Password Page */
        @media (max-width: 576px) {
            .forgot-form-container {
                padding: 2rem;
            }
            
            .form-title {
                font-size: 1.6rem;
            }
            
            .form-buttons {
                flex-direction: column;
            }
        }
 
    
   
  

/* Triangle Loading Animation */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.triangle-loader {
    width: 80px;
    height: 80px;
    position: relative;
    animation: triangle-rotate 2s linear infinite;
}

.triangle-inner {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid var(--primary);
    position: absolute;
    top: 0;
    left: 0;
    animation: triangle-pulse 1.5s ease-in-out infinite;
}

@keyframes triangle-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes triangle-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.7;
    }
}

.loading-text {
    margin-top: 20px;
    color: var(--text);
    font-weight: 500;
    animation: text-pulse 2s ease-in-out infinite;
}

@keyframes text-pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* Mevcut stiller aynı kaldı */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar stilleri */
header {
    background: rgb(25 28 36 / 90%);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

[data-theme="light"] header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

header.scrolled {
    padding: 0.8rem 0;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
}

.logo i {
    color: #FFD700;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin-right: 1.5rem;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--primary);
}

nav a:hover:after {
    width: 100%;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.theme-toggle, .language-selector {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    border: none;
}

[data-theme="light"] .theme-toggle, 
[data-theme="light"] .language-selector {
    background: rgba(0, 0, 0, 0.05);
}

.theme-toggle:hover, .language-selector:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.language-selector {
    width: auto;
    border-radius: 18px;
    padding: 0 12px;
    gap: 6px;
    font-weight: 500;
}

.language-selector span {
    font-size: 0.8rem;
}

/* Dil seçenekleri dropdown */
.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    width: 200px;
    background: var(--darker);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    padding: 0.5rem;
    z-index: 1000;
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .language-dropdown {
    background: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.language-dropdown.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.language-option {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.8rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .language-option:hover {
    background: rgba(0, 0, 0, 0.05);
}

.language-flag {
    width: 20px;
    height: 15px;
    margin-right: 10px;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    background: var(--gray-700);
    color: white;
}

.language-name {
    font-size: 0.85rem;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.auth-btn {
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.auth-login {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--gray-700);
}

[data-theme="light"] .auth-login {
    border: 1px solid var(--gray-300);
}

.auth-login:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gray-600);
}

[data-theme="light"] .auth-login:hover {
    background: rgba(0, 0, 0, 0.05);
}

.auth-signup {
    background: var(--primary);
    color: white;
}

.auth-signup:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile menü stilleri */
@media (max-width: 992px) {
    nav {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 70%;
        height: calc(100vh - var(--header-height));
        background: var(--darker);
        transition: right 0.3s ease;
        padding: 2rem;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        z-index: 1000;
    }

    [data-theme="light"] nav {
        border-left: 1px solid rgba(0, 0, 0, 0.05);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .nav-controls {
        flex-direction: column;
        width: 100%;
        margin-top: 2rem;
    }

    .theme-toggle, .language-selector {
        width: 100%;
        border-radius: var(--border-radius);
        justify-content: flex-start;
        padding: 0.8rem 1.2rem;
    }

    .language-dropdown {
        position: static;
        width: 100%;
        margin-top: 0.5rem;
        box-shadow: none;
    }

    .auth-buttons {
        flex-direction: column;
        width: 100%;
    }

    .auth-btn {
        text-align: center;
        width: 100%;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Particle Background */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    opacity: 0.5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.particle .label {
    font-size: 0.7rem;
    color: #ffffff;
    margin-top: 2px;
    pointer-events: none;
}

.particle.circle {
    border-radius: 50%;
    background: #efe26c;
    animation: float-up 15s infinite linear;
}

.particle.square {
    border-radius: 4px;
}

.particle.triangle {
    width: 0;
    height: 0;
    background: transparent !important;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
}

.particle.square.green {
    background: #4caf50;
    animation: float-up 15s infinite linear;
}
.particle.square.green .label { content: "LONG"; }

.particle.square.red {
    background: #ff5252;
    animation: float-down 15s infinite linear;
}
.particle.square.red .label { content: "SHORT"; }

.particle.triangle.green {
    border-bottom: 14px solid #06b690;
    animation: float-up 15s infinite linear;
}
.particle.triangle.green .label { content: "LONG"; }

.particle.triangle.red {
    border-bottom: 14px solid #ff5252;
    animation: float-down 15s infinite linear;
}
.particle.triangle.red .label { content: "SHORT"; }

@keyframes float-up {
    0% { transform: translateY(100vh) translateX(0) rotate(0deg); }
    100% { transform: translateY(-100vh) translateX(50px) rotate(360deg); }
}

@keyframes float-down {
    0% { transform: translateY(-100vh) translateX(0) rotate(0deg); }
    100% { transform: translateY(100vh) translateX(-50px) rotate(-360deg); }
}



/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .feature-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 102, 255, 0.2);
}

.feature-card:hover:before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

/* Dashboard Styles */
.dashboard {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .dashboard {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dashboard:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.dashboard-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
}

.dashboard-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.dashboard-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

[data-theme="light"] .dashboard-item {
    background: rgba(0, 0, 0, 0.03);
}

.dashboard-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .dashboard-item:hover {
    background: rgba(0, 0, 0, 0.05);
}

.dashboard-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.dashboard-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Steps */
.steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
}

.steps:before {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 30px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

[data-theme="light"] .steps:before {
    background: rgba(0, 0, 0, 0.1);
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
    transition: var(--transition);
}

.step:hover .step-number {
    transform: scale(1.1);
}

.step-content {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    flex-grow: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

[data-theme="light"] .step-content {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.step:hover .step-content {
    transform: translateX(10px);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.step-description {
    color: var(--text-secondary);
}

/* Indicator Slider Styles */
#indicator-slider {
    padding: 6rem 0;
    background: var(--dark);
}

.slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none;
    position: relative;
}

.slide.active {
    opacity: 1;
    display: block;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-lg);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    border-bottom-left-radius: var(--border-radius-lg);
    border-bottom-right-radius: var(--border-radius-lg);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 1rem;
}

.slider-prev,
.slider-next {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--primary-light);
}

/* Pricing Styles */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

[data-theme="light"] .pricing-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card.featured {
    border: 2px solid #F1C40F;
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:before {
    content: 'POPÜLER';
    position: absolute;
    top: 20px;
    right: -35px;
    background: #E0B700;
    color: white;
    padding: 0.4rem 3.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.pricing-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
    position: relative;
}

.pricing-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text);
    position: relative;
    display: inline-block;
}

.price-with-discount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.5rem;
    font-weight: 400;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
}

.pricing-daily {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.pricing-period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-savings {
    background: rgba(0, 200, 83, 0.15);
    color: var(--accent);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

[data-theme="light"] .pricing-features li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #ffffff;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--dark), var(--darker));
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .cta-section {
    background: linear-gradient(to bottom, #e9ecef, #f8f9fa);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* Footer */
footer {
    background: rgb(25 28 36 / 90%);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

[data-theme="light"] footer {
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: var(--transition);
}

[data-theme="light"] .social-link {
    background: rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text);
    position: relative;
    display: inline-block;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

[data-theme="light"] .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .slider-nav {
        padding: 0 0.5rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
    }
    
    .price-with-discount {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .original-price {
        font-size: 1.2rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .steps:before {
        left: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    #indicator-slider {
        padding: 4rem 0;
    }
    
    .slider-container {
        border-radius: var(--border-radius);
    }
    
    .slide img {
        border-radius: var(--border-radius);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .feature-card, .step-content, .pricing-card {
        padding: 1.8rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-bottom: 1rem;
    }
    
    .steps:before {
        display: none;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-price {
        font-size: 2.8rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .slider-nav {
        display: none;
    }
    
    .slider-dots {
        margin-top: 1rem;
    }
}


        .social-proof {
            margin: 2rem 0;
        }
        
        .users-count {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        
        .avatars {
            display: flex;
        }
        
        .avatar {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            margin-left: -10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.7rem;
            font-weight: 600;
            border: 2px solid var(--darker);
        }
        
        .avatar:first-child {
            margin-left: 0;
        }
        
        .risk-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(6, 182, 144, 0.1);
            color: #52ffda;
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-top: 1.5rem;
        }
        
        .trust-indicators {
            padding: 3rem 0;
            background: var(--card-bg);
        }
        
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        
        .trust-item {
            text-align: center;
            padding: 1.5rem;
        }
        
        .trust-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(0, 102, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            color: var(--primary);
        }
		
	          .elite-btn {
            background: linear-gradient(135deg, #FFD700 0%, #E0B700 100%);
            color: #000;
            font-weight: 700;
        }
        
        .elite-btn:hover {
            background: linear-gradient(135deg, #E0B700 0%, #CC9900 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
        }
		
		
		.security-badges {
    display: flex;           /* Yan yana hizalama */
    gap: 20px;               /* Kartlar arası boşluk */
    justify-content: center; /* Ortalamak istersen */
    margin-top: 20px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;                /* İkon ve yazı arası boşluk */
    background-color: #f5f5f5; /* Opsiyonel: hafif arka plan */
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
}

/* Launch Discount Banner Styles */
.launch-discount-banner {
    background: linear-gradient(135deg, #010103 0%, #338fd0 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    margin: 2rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.launch-discount-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-20px, -20px) rotate(360deg); }
}

.discount-content {
    position: relative;
    z-index: 2;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.discount-badge i {
    color: #fbbf24;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.discount-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.discount-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.discount-description strong {
    color: #fbbf24;
    font-weight: 800;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 0.5rem;
    border: 2px solid rgba(255,255,255,0.2);
}

.countdown-label {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.discount-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
}

.discount-note i {
    color: #fbbf24;
}

/* Dark theme support */
[data-theme="dark"] .launch-discount-banner {
    background: linear-gradient(135deg, #010103 0%, #338fd0 100%);
    box-shadow: 0 20px 40px rgba(124, 147, 251, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .launch-discount-banner {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0 2.5rem;
    }
    
    .discount-title {
        font-size: 1.6rem;
    }
    
    .discount-description {
        font-size: 1rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .countdown-value {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .countdown-value {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .discount-title {
        font-size: 1.4rem;
    }
    
    .discount-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}


/* Enhanced Network Page Styles */

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Hero Section */
.network-hero {
    background: linear-gradient(135deg, #000000 0%, var(--dark) 50%, #000000 100%);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.network-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(34, 159, 202, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(126, 87, 194, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 200, 83, 0.1) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.network-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.network-hero-content .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-light);
}

.network-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.network-hero-content .hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 150px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.floating-element.coin {
    top: 20%;
    left: 10%;
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.floating-element.graph {
    top: 60%;
    right: 15%;
    background: rgba(0, 200, 83, 0.1);
    color: #00C853;
    border: 2px solid rgba(0, 200, 83, 0.3);
    animation-delay: 1s;
}

.floating-element.network {
    bottom: 30%;
    left: 15%;
    background: rgba(126, 87, 194, 0.1);
    color: var(--secondary);
    border: 2px solid rgba(126, 87, 194, 0.3);
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Network Benefits */
.network-benefits {
    padding: 6rem 0;
    background: var(--darker);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(34, 159, 202, 0.3);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
}

.icon-bg {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    opacity: 0.3;
    filter: blur(10px);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.benefit-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.benefit-features {
    list-style: none;
}

.benefit-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.benefit-features li i {
    color: var(--accent);
}

/* Commission System */
.commission-system {
    padding: 6rem 0;
    background: var(--dark);
}

.commission-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.tier-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.tier-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(34, 159, 202, 0.2);
}

.tier-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tier-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.tier-1 { background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%); }
.tier-2 { background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%); }
.tier-3 { background: linear-gradient(135deg, #FFD166 0%, #FFB347 100%); }
.tier-4 { background: linear-gradient(135deg, #06D6A0 0%, #1B9AAA 100%); }
.tier-5 { background: linear-gradient(135deg, #118AB2 0%, #073B4C 100%); }

.tier-percentage {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tier-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.tier-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.tier-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.tier-stats .stat i {
    color: var(--primary);
}

/* Network Visualization */
.network-visualization {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 4rem;
}

.visualization-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text);
}

.visualization-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.level {
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.level:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.level-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.level-icon, .level-number {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.level-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.level-number {
    background: rgba(34, 159, 202, 0.1);
    color: var(--primary);
    border: 2px solid rgba(34, 159, 202, 0.3);
}

.level-info {
    flex: 1;
}

.level-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.level-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.level-earning {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 600;
}

.connection-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    opacity: 0.5;
}

.visualization-total {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    color: white;
    margin-top: 3rem;
}

.total-amount {
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
}

.total-description {
    opacity: 0.9;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Success Journey */
.success-journey {
    padding: 6rem 0;
    background: var(--darker);
}

.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 159, 202, 0.3);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    min-width: 80px;
}

.step-content {
    flex: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(34, 159, 202, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-features {
    list-style: none;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.step-features li i {
    color: var(--accent);
}

/* Success Stories */
.success-stories {
    padding: 6rem 0;
    background: var(--dark);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.story-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.story-content {
    padding: 2.5rem;
}

.story-quote {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.story-content p {
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.author-details {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.story-stats {
    display: flex;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.story-stats .stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.story-stats .stat i {
    font-size: 1.2rem;
    color: var(--primary);
}

.stories-cta {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 4rem;
}

.stories-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.stories-cta p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.btn-elite {
    background: linear-gradient(135deg, #FFD700 0%, #E0B700 100%);
    color: #000;
    font-weight: 700;
}

.btn-elite:hover {
    background: linear-gradient(135deg, #E0B700 0%, #CC9900 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.security-badge i {
    color: var(--primary);
}

/* FAQ Section */
.network-faq {
    padding: 6rem 0;
    background: var(--darker);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text);
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Newsletter */
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-family: 'Inter', sans-serif;
}

.newsletter-btn {
    width: 45px;
    height: 45px;
    border-radius: var(--border-radius);
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .network-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        min-width: 120px;
        padding: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .network-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .commission-tiers {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-elements {
        display: none;
    }
}

@media (max-width: 576px) {
    .network-hero {
        padding: 140px 0 60px;
    }
    
    .network-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 250px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .author-details {
        flex-direction: column;
        gap: 0.3rem;
    }
}

/* Registration Confirmation Page Styles */
.regconfirm-section {
    padding: calc(var(--header-height) + 4rem) 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 20% 80%, rgba(6, 182, 144, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(126, 87, 194, 0.08) 0%, transparent 50%),
                linear-gradient(to bottom, var(--darker), var(--dark));
}

.regconfirm-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 3rem;
}

.regconfirm-form-container {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    flex: 1;
    max-width: 600px;
}

.regconfirm-form-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--primary);
}

.form-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.2;
}

.form-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.warning-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 171, 0, 0.1);
    color: var(--warning);
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 171, 0, 0.2);
    margin-top: 1rem;
}

.warning-note i {
    font-size: 1.1rem;
}

.regconfirm-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 500;
    color: var(--text);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-input {
    padding: 1rem 1.2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    font-size: 1rem;
    width: 100%;
}

[data-theme="light"] .form-input {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.03);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.input-hint {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

.form-actions {
    margin-top: 1.5rem;
}

.confirm-button {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    background: var(--primary);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    width: 100%;
}

.confirm-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.resend-section {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.resend-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.resend-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.resend-link:hover {
    text-decoration: underline;
}

.countdown {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

  supportmail-link {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

  supportmail-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

  supportmail-link a:hover {
    text-decoration: underline;
}

.alternative-options {
    margin-top: 2rem;
}

.divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.divider:before,
.divider:after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .divider:before,
[data-theme="light"] .divider:after {
    background: rgba(0, 0, 0, 0.1);
}

.divider span {
    padding: 0 1rem;
}

.alternative-action {
    text-align: center;
}

.alternative-action p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-secondary {
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-decoration: none;
}

[data-theme="light"] .btn-secondary {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.regconfirm-info {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-xl);
    flex: 1;
    max-width: 400px;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-tips {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tip {
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.tip:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.tip-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(0, 102, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.tip-content {
    flex: 1;
}

.tip-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text);
}

.tip-content p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
    justify-content: center;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.security-badge i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Responsive Styles for Registration Confirmation Page */
@media (max-width: 992px) {
    .regconfirm-container {
        flex-direction: column;
        align-items: center;
    }
    
    .regconfirm-form-container,
    .regconfirm-info {
        max-width: 100%;
        width: 100%;
    }
    
    .regconfirm-info {
        order: -1;
    }
}

@media (max-width: 576px) {
    .regconfirm-form-container,
    .regconfirm-info {
        padding: 2rem;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .tip {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .tip-icon {
        margin-bottom: 0.5rem;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
    }
}


