        /* Dark theme adjustments */
html[data-theme="dark"] .sidebar-logo-img.logo-light { 
    display: none !important; 
}

html[data-theme="dark"] .sidebar-logo-img.logo-dark { 
    display: inline !important; 
}
.header-left .logo-container {
    display: flex;
    align-items: center;
    height: 100%;
    width: 150px;
    height: 72px;
    overflow: hidden;
}
.logo-png {
    height: 185px;
    margin-right: 25px;
    margin-top: 40px;
}
.logo-dark { display: none; }
html[data-theme="dark"] .logo-light { display: none !important; }
html[data-theme="dark"] .logo-dark { display: inline !important;}
.header-center {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001 !important;
}
        /* Landing Page Specific Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--landing-bg);
            color: var(--landing-text);
            min-height: 100vh;
            overflow-x: hidden;
            transition: all 0.3s ease;
        }

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

        /* Header Styles */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            position: relative;
            z-index: 10;
        }

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

        .logo-icon {
            width: 224px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: var(--landing-text);
        }

        .nav {
            display: flex;
            gap: 32px;
            align-items: center;
            background: var(--landing-nav-bg);
            padding: 8px 24px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            border: 1px solid var(--landing-nav-border);
        }

        .nav-link {
            color: var(--landing-secondary-text);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            padding: 8px 16px;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: var(--landing-text);
            background: var(--landing-nav-bg);
        }

        .header-right {
            display: flex;
            align-items: center;
        }

        .btn-join {
            background: #10B981;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .btn-join:hover {
            background: #059669;
            transform: translateY(-1px);
        }

        /* Main Content */
        .main-content {
            padding: 60px 0;
        }

        .hero-section {
            text-align: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 30px;
            color: var(--landing-text);
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .hero-subtitle {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 50px;
            color: var(--landing-secondary-text);
        }

        .hero-subtitle strong {
            color: var(--landing-text);
            font-weight: 600;
        }

        /* Steps Container */
        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin: 80px 0;
            padding: 0 20px;
        }

        .step {
            position: relative;
            background: var(--landing-step-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--landing-step-border);
            border-radius: 24px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .step:hover {
            transform: translateY(-8px);
            background: var(--landing-step-bg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        [data-theme="light"] .step:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .step-number {
            position: absolute;
            top: 20px;
            left: 25px;
            width: 35px;
            height: 35px;
            background: #10B981;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
        }

        .step-icon {
            margin: 20px 0 30px 0;
            display: flex;
            justify-content: center;
        }

        .owl-icon {
            width: 125%;
            border-bottom: 1px solid var(--text-color);
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        div.step:nth-child(4) > div:nth-child(2) > div:nth-child(1) > h3:nth-child(2) {
width: 140px;
margin-left: -18px;
}

        .owl-icon img {
            width: 120px;
            height: 120px;
            margin-left: -45px;
            object-fit: contain;
        }

        .owl-body {
            width: 50px;
            height: 50px;
            background: #10B981;
            border-radius: 50%;
            position: relative;
            z-index: 2;
        }

        .owl-body.small {
            width: 30px;
            height: 30px;
        }

        .owl-eyes {
            position: absolute;
            top: 12px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 8px;
            z-index: 3;
        }

        .owl-eyes.small {
            top: 8px;
            padding: 0 5px;
        }

        .eye {
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 50%;
        }

        .eye.small {
            width: 5px;
            height: 5px;
        }

        .owl-beak {
            position: absolute;
            top: 25px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 3px solid transparent;
            border-right: 3px solid transparent;
            border-top: 4px solid white;
            z-index: 3;
        }

        .owl-beak.small {
            top: 18px;
            border-left: 2px solid transparent;
            border-right: 2px solid transparent;
            border-top: 3px solid white;
        }

        /* Step specific elements */
        .step1-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: white;
            color: #10B981;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: bold;
        }

        .step2-element {
            position: absolute;
            top: -10px;
            right: -5px;
            font-size: 24px;
        }

        .step3-element {
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 20px;
        }

        .small-owl {
            position: absolute;
            top: -10px;
            right: -10px;
            z-index: 1;
        }

        .chat-bubble {
            position: absolute;
            top: -15px;
            right: -15px;
            font-size: 16px;
            background: white;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .step-content h3 {
            font-size: 20px;
            font-weight: 600;
            line-height: 1.3;
            color: var(--landing-step-text);
            margin-bottom: 8px;
        }

        .step-content p {
            font-size: 14px;
            color: var(--landing-text-muted);
            line-height: 1.4;
        }

        /* Why Create Content Section */
        .why-create-section {
            margin: 20px 0;
            margin-left: -180px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .why-content {
            display: flex;
            align-items: center;
            gap: 40px;
            padding: 50px;
        }

        .why-icon {
            flex-shrink: 0;
            position: relative;
        }

        .owl-mascot {
            position: relative;
            width: 120px;
            height: 120px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .owl-body-large {
            width: 80px;
            height: 80px;
            background: #10B981;
            border-radius: 50%;
            position: relative;
            z-index: 2;
        }

        .owl-eyes-large {
            position: absolute;
            top: 20px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 15px;
            z-index: 3;
        }

        .eye-large {
            width: 12px;
            height: 12px;
            background: white;
            border-radius: 50%;
        }

        .owl-beak-large {
            position: absolute;
            top: 40px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 6px solid white;
            z-index: 3;
        }

        .checkmark-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            width: 30px;
            height: 30px;
            background: #10B981;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: bold;
            border: 3px solid white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .why-text {
            flex: 1;
        }

        .why-text h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--landing-secondary-text);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .why-text p {
            font-size: 16px;
            line-height: 1.6;
            color: var(--landing-text);
            margin-bottom: 30px;
        }

        .why-cta-button {
            background: #10B981;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: none;
            letter-spacing: 0.3px;
        }

        .why-cta-button:hover {
            background: #059669;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
        }

        /* CTA Section */
        .cta-container {
            margin: 60px 0;
        }

        .cta-button {
            background: linear-gradient(135deg, #10B981 0%, #059669 100%);
            color: white;
            border: none;
            padding: 20px 50px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(16, 185, 129, 0.6);
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
        }

        .cta-button:active {
            transform: translateY(-1px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .nav {
                gap: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .nav-link {
                font-size: 14px;
            }
            
            .hero-title {
                font-size: 2.5rem;
                margin-bottom: 20px;
            }
            
            .hero-subtitle {
                font-size: 16px;
                margin-bottom: 40px;
            }
            
            .steps-container {
                grid-template-columns: 1fr;
                gap: 30px;
                margin: 60px 0;
            }
            
            .step {
                padding: 30px 20px;
            }
            
            .step-content h3 {
                font-size: 18px;
            }
            
            .why-content {
                flex-direction: column;
                text-align: center;
                padding: 30px 20px;
                gap: 30px;
            }
            
            .owl-mascot {
                width: 100px;
                height: 100px;
            }
            
            .owl-body-large {
                width: 70px;
                height: 70px;
            }
            
            .why-text h2 {
                font-size: 24px;
            }
            
            .why-text p {
                font-size: 15px;
            }
            
            .cta-button {
                padding: 16px 32px;
                font-size: 16px;
            }

            .theme-toggle {
                margin-right: 10px;
                margin-bottom: 10px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 15px;
            }
            
            .step {
                padding: 25px 15px;
            }
            
            .why-content {
                padding: 25px 15px;
                gap: 20px;
            }
            
            .owl-mascot {
                width: 80px;
                height: 80px;
            }
            
            .owl-body-large {
                width: 60px;
                height: 60px;
            }
            
            .why-text h2 {
                font-size: 20px;
            }
            
            .why-text p {
                font-size: 14px;
            }
            
            .why-cta-button {
                padding: 12px 24px;
                font-size: 13px;
                width: 100%;
            }
            
            .cta-button {
                padding: 14px 24px;
                font-size: 14px;
                width: 100%;
                max-width: 300px;
            }

            .header-right {
                flex-direction: column;
                gap: 10px;
            }

            .theme-toggle {
                margin-right: 0;
            }
        }

        /* Animation for page load */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-section {
            animation: fadeInUp 0.8s ease-out;
        }

        .step {
            animation: fadeInUp 0.8s ease-out;
        }

        .step:nth-child(1) { animation-delay: 0.1s; }
        .step:nth-child(2) { animation-delay: 0.2s; }
        .step:nth-child(3) { animation-delay: 0.3s; }
        .step:nth-child(4) { animation-delay: 0.4s; }