        :root {
            --bg-deep: #050508;
            --bg-card: rgba(20, 20, 35, 0.6);
            --saffron: #FF9933;
            --gold: #FFD700;
            --cosmic-cyan: #00D4FF;
            --text-primary: #F0F0F5;
            --text-secondary: #A0A0B0;
            --glass-border: rgba(255, 255, 255, 0.1);
            --glow-saffron: 0 0 20px rgba(255, 153, 51, 0.4);
            --glow-cyan: 0 0 20px rgba(0, 212, 255, 0.4);
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-deep);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Animated Cosmic Background */
        .cosmic-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: 
                radial-gradient(circle at 15% 50%, rgba(255, 153, 51, 0.08) 0%, transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 25%);
            animation: pulseBg 10s ease-in-out infinite alternate;
        }

        @keyframes pulseBg {
            0% { transform: scale(1); opacity: 0.8; }
            100% { transform: scale(1.1); opacity: 1; }
        }

        /* Typography */
        h1, h2, h3 {
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 1px;
        }
        
        .highlight-saffron { color: var(--saffron); text-shadow: var(--glow-saffron); }
        .highlight-cyan { color: var(--cosmic-cyan); text-shadow: var(--glow-cyan); }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(5, 5, 8, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--glass-border);
            z-index: 1000;
        }

        .logo {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--saffron);
            text-shadow: var(--glow-saffron);
        }

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

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

        /* Sections General */
        section {
            padding: 6rem 5%;
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
            align-self: center;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--saffron), var(--cosmic-cyan));
            margin: 10px auto 0;
            border-radius: 2px;
        }

        /* Hero Section */
        #home {
            min-height: 100vh;
            text-align: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-content {
            max-width: 1000px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .hero-philosophy {
            font-size: 2rem;
            color: var(--gold);
            margin: 2rem 0;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            text-shadow: var(--glow-saffron);
            padding: 2rem;
            border: 2px solid var(--glass-border);
            border-radius: 12px;
            background: rgba(255, 153, 51, 0.05);
            backdrop-filter: blur(10px);
        }

        .hero-content p {
            font-size: 1.3rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 2.5rem;
            font-family: 'Rajdhani', sans-serif;
        }

        .cta-group {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 4px;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--saffron), #ff7700);
            color: #000;
            box-shadow: var(--glow-saffron);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 30px rgba(255, 153, 51, 0.6);
        }

        .btn-secondary {
            background: transparent;
            border: 1px solid var(--cosmic-cyan);
            color: var(--cosmic-cyan);
        }

        .btn-secondary:hover {
            background: rgba(0, 212, 255, 0.1);
            box-shadow: var(--glow-cyan);
            transform: translateY(-3px);
        }

        /* Glassmorphism Cards */
        .glass-card {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            padding: 2rem;
            transition: all 0.4s ease;
        }

        .glass-card:hover {
            border-color: var(--saffron);
            box-shadow: var(--glow-saffron);
            transform: translateY(-5px);
        }

        /* Insights Layout */
        .category-block {
            max-width: 1200px;
            margin: 0 auto 4rem auto;
            width: 100%;
        }

        .category-block:last-child {
            margin-bottom: 0;
        }

        .category-title {
            font-family: 'Orbitron', sans-serif;
            color: var(--gold);
            font-size: 1.4rem;
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .category-title::after {
            content: '';
            display: block;
            width: 40px;
            height: 2px;
            background: var(--saffron);
            margin: 8px auto 0;
            border-radius: 2px;
            box-shadow: var(--glow-saffron);
        }

        .insights-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .insight-card {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .insight-icon {
            font-size: 2.2rem;
            color: var(--saffron);
            margin-bottom: 1rem;
            text-shadow: var(--glow-saffron);
        }

        .insight-card h3 {
            color: var(--cosmic-cyan);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
        }

        .insight-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Advaita Section */
        #advaita {
            background: linear-gradient(135deg, rgba(255, 153, 51, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
            border-top: 1px solid var(--glass-border);
            border-bottom: 1px solid var(--glass-border);
        }

        .advaita-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .advaita-content p {
            font-size: 1.15rem;
            line-height: 1.9;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .advaita-highlight {
            color: var(--gold);
            font-weight: 600;
        }

        .advaita-quote {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.5rem;
            color: var(--cosmic-cyan);
            margin: 2rem 0;
            padding: 2rem;
            border-left: 4px solid var(--saffron);
            background: rgba(0, 0, 0, 0.3);
            border-radius: 0 12px 12px 0;
            text-align: left;
            font-style: italic;
        }

        /* Global Connect Section */
        .city-selector {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .continent-block {
            margin-bottom: 3rem;
            text-align: left;
        }

        .continent-title {
            font-family: 'Orbitron', sans-serif;
            color: var(--saffron);
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--glass-border);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .continent-title i {
            color: var(--cosmic-cyan);
        }

        .country-section {
            margin-bottom: 2rem;
            padding-left: 1rem;
            border-left: 2px solid var(--glass-border);
        }

        .country-title {
            font-family: 'Rajdhani', sans-serif;
            color: var(--gold);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .city-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }

        .city-node {
            cursor: pointer;
            text-align: center;
            padding: 1rem;
            font-size: 0.95rem;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--glass-border);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .city-node:hover {
            background: rgba(255, 153, 51, 0.1);
            border-color: var(--saffron);
            box-shadow: var(--glow-saffron);
            transform: translateY(-2px);
        }

        .city-status {
            font-size: 0.75rem;
            color: var(--cosmic-cyan);
            margin-top: 0.3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .status-dot {
            width: 6px;
            height: 6px;
            background: var(--cosmic-cyan);
            border-radius: 50%;
            animation: blink 2s infinite;
        }

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

        .apply-city {
            margin-top: 3rem;
            padding: 2rem;
            text-align: center;
            background: rgba(255, 153, 51, 0.05);
            border: 2px dashed var(--saffron);
            border-radius: 12px;
        }

        .apply-city p {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        /* Forms (Ask & Join) */
        .form-container {
            max-width: 600px;
            margin: 0 auto;
            width: 100%;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-secondary);
            font-family: 'Rajdhani', sans-serif;
            font-weight: 500;
            font-size: 1.1rem;
        }

        .form-control {
            width: 100%;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--glass-border);
            border-radius: 6px;
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--saffron);
            box-shadow: var(--glow-saffron);
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 1rem;
        }

        .checkbox-group input {
            width: 18px;
            height: 18px;
            accent-color: var(--saffron);
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background: #141423;
            border: 1px solid var(--saffron);
            border-radius: 12px;
            padding: 3rem;
            text-align: center;
            max-width: 500px;
            width: 90%;
            box-shadow: var(--glow-saffron);
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.5);
            border-top: 1px solid var(--glass-border);
            padding: 3rem 5%;
            text-align: center;
            color: var(--text-secondary);
        }

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

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s;
        }

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

        /* Responsive */
        @media (max-width: 900px) {
            .hero-content h1 { font-size: 2.5rem; }
            .hero-philosophy { font-size: 1.5rem; }
            .nav-links { display: none; } 
            .insights-row { 
                grid-template-columns: 1fr; 
            }
            .city-grid { 
                grid-template-columns: 1fr; 
            }
            .advaita-content p {
                text-align: left;
            }
        }

        @media (max-width: 600px) {
            .city-grid { 
                grid-template-columns: 1fr 1fr; 
            }
        }
    
