:root {
            --dark: #0B0B0B;
            --orange-start: #FF6A00;
            --orange-end: #FF9472;
            --blue-highlight: #1F9CFF;
            --soft-gray: #C1C1C1;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark);
            color: white;
            overflow-x: hidden;
        }
        
        body[dir="rtl"] {
            font-family: 'Tajawal', sans-serif;
        }
        
        .glass-card {
            background: rgba(15, 15, 15, 0.6);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        
        .hero-bg {
            background-image: linear-gradient(rgba(11, 11, 11, 0.7), rgba(11, 11, 11, 0.9)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
        }
        
        .yalla-logo {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        .wave-pattern {
            position: absolute;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(255,106,0,0.1)" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1052,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') repeat-x;
            background-size: 1440px 200px;
            opacity: 0.6;
            animation: wave 12s linear infinite;
        }
        
        @keyframes wave {
            0% { background-position-x: 0; }
            100% { background-position-x: 1440px; }
        }
        
        .feature-card:hover .feature-overlay {
            opacity: 1;
            transform: translateY(0);
        }
        
        .feature-overlay {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }
        
        .scroll-horizontal {
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }
        
        .scroll-horizontal::-webkit-scrollbar {
            display: none;
        }
        
        .scroll-horizontal > div {
            scroll-snap-align: start;
            flex-shrink: 0;
        }
        
        .hamburger {
            cursor: pointer;
            width: 24px;
            height: 24px;
            transition: all 0.25s;
            position: relative;
        }
        
        .hamburger-top,
        .hamburger-middle,
        .hamburger-bottom {
            position: absolute;
            top: 0;
            left: 0;
            width: 24px;
            height: 2px;
            background: white;
            transform: rotate(0);
            transition: all 0.5s;
        }
        
        .hamburger-middle {
            transform: translateY(7px);
        }
        
        .hamburger-bottom {
            transform: translateY(14px);
        }
        
        .open .hamburger-top {
            transform: rotate(45deg) translateY(6px) translate(6px);
        }
        
        .open .hamburger-middle {
            display: none;
        }
        
        .open .hamburger-bottom {
            transform: rotate(-45deg) translateY(6px) translate(-6px);
        }
        
        body[dir="rtl"] .hamburger-top,
        body[dir="rtl"] .hamburger-middle,
        body[dir="rtl"] .hamburger-bottom {
            left: auto;
            right: 0;
        }
        
        .fade-in {
            opacity: 0;
            transition: opacity 0.6s ease-in;
        }
        
        .fade-in.visible {
            opacity: 1;
        }
        
        @media (max-width: 768px) {
            .hero-content {
                flex-direction: column;
            }
            
            .yalla-logo {
                margin-top: 40px;
                width: 80%;
            }
        }
        
        .language-switcher {
            position: relative;
            display: inline-block;
        }
        
        .language-btn {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }
        
        .language-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .language-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: #1a1a1a;
            border-radius: 8px;
            padding: 8px 0;
            min-width: 120px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            display: none;
            z-index: 100;
        }
        
        .language-dropdown.show {
            display: block;
        }
        
        .language-option {
            padding: 8px 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .language-option:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        body[dir="rtl"] .language-dropdown {
            right: auto;
            left: 0;
        }

        body[dir="rtl"] {
    font-family: 'Tajawal', sans-serif;
}

    body[dir="rtl"] .scroll-horizontal {
        direction: ltr; /* Keep horizontal scroll direction consistent */
    }

    body[dir="rtl"] .text-left {
        text-align: right;
    }

/* Logo Container Styles - Smaller Size */
#logo-container {
    position: relative;
    width: 150px;  /* Reduced from 200px */
    height: 150px; /* Reduced from 200px */
    cursor: grab;
    margin-bottom: 1rem;
}

/* Logo Styles */
#yalla-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    will-change: transform;
    transform-style: preserve-3d;
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}



/* Responsive Adjustments */
@media (max-width: 768px) {
    #logo-container {
        width: 220px; /* Smaller mobile size */
        height: 220px;
    }
}

@media (min-width: 1200px) {
    #logo-container {
        width: 340px; /* Slightly larger on big screens */
        height: 340px;
    }
}