        :root {
            /* Primary Colors - from Oneira app */
            --primary-purple: #8B5CF6;
            --primary-pink: #EC4899;
            --primary-blue: #06B6D4;
            
            /* Background Gradient */
            --bg-start: #F0E6FF;
            --bg-middle: #FFE4F3;
            --bg-end: #E0F4FF;
            
            /* Surface */
            --surface: #FFFFFF;
            --surface-variant: #F8F5FF;
            
            /* Text */
            --text-primary: #1F2937;
            --text-secondary: #6B7280;
            --text-tertiary: #9CA3AF;
            
            /* Premium */
            --premium-gold: #FFD700;
            --premium-start: #FFE259;
            --premium-end: #FFA751;
            
            /* Shadows */
            --shadow-sm: 0 2px 8px rgba(139, 92, 246, 0.08);
            --shadow-md: 0 8px 24px rgba(139, 92, 246, 0.12);
            --shadow-lg: 0 16px 48px rgba(139, 92, 246, 0.16);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(180deg, var(--bg-start) 0%, var(--bg-middle) 50%, var(--bg-end) 100%);
            min-height: 100vh;
            color: var(--text-primary);
            line-height: 1.6;
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(139, 92, 246, 0.1);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }
        
        .logo-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            overflow: hidden;
        }
        
        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--primary-purple);
        }
        
        .nav-cta {
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
            color: white !important;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        /* Animated Background Blobs */
        .blob {
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
            pointer-events: none;
            z-index: 0;
        }
        
        .blob-1 {
            width: 600px;
            height: 600px;
            background: rgba(139, 92, 246, 0.3);
            top: -200px;
            right: -100px;
            animation: blob-float 20s ease-in-out infinite;
        }
        
        .blob-2 {
            width: 500px;
            height: 500px;
            background: rgba(236, 72, 153, 0.25);
            bottom: -150px;
            left: -100px;
            animation: blob-float 25s ease-in-out infinite reverse;
        }
        
        .blob-3 {
            width: 400px;
            height: 400px;
            background: rgba(6, 182, 212, 0.2);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: blob-float 18s ease-in-out infinite;
            animation-delay: -5s;
        }
        
        @keyframes blob-float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            25% {
                transform: translate(30px, -30px) scale(1.05);
            }
            50% {
                transform: translate(-20px, 20px) scale(0.95);
            }
            75% {
                transform: translate(-30px, -20px) scale(1.02);
            }
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 2rem 4rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        .hero-content h1 span {
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-content p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            max-width: 500px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
            color: white;
            padding: 1rem 2rem;
            border-radius: 16px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }
        
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--surface);
            color: var(--text-primary);
            padding: 1rem 2rem;
            border-radius: 16px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid rgba(139, 92, 246, 0.2);
        }
        
        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-purple);
        }
        
        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
        /* Phone Carousel */
        .phone-carousel {
            position: relative;
            width: 320px;
            height: 650px;
            perspective: 1000px;
        }
        
        .phone-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: scale(0.8) rotateY(45deg);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            filter: drop-shadow(0 25px 50px rgba(139, 92, 246, 0.3));
        }
        
        .phone-slide.active {
            opacity: 1;
            transform: scale(1) rotateY(0deg);
            z-index: 2;
        }
        
        .phone-slide.prev {
            opacity: 0.3;
            transform: translateX(-60%) scale(0.75) rotateY(25deg);
            z-index: 1;
        }
        
        .phone-slide.next {
            opacity: 0.3;
            transform: translateX(60%) scale(0.75) rotateY(-25deg);
            z-index: 1;
        }
        
        .phone-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
        }
        
        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(139, 92, 246, 0.3);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }
        
        .carousel-dot.active {
            background: var(--primary-purple);
            transform: scale(1.2);
        }
        
        .carousel-dot:hover {
            background: var(--primary-purple);
        }
        
        /* Floating elements */
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-delay {
            animation: float 6s ease-in-out infinite;
            animation-delay: -3s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        /* Features Section */
        .features {
            padding: 6rem 2rem;
            position: relative;
        }
        
        .features-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .section-header.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .section-label {
            display: inline-block;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
            color: var(--primary-purple);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .section-header p {
            font-size: 1.125rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .feature-card {
            background: var(--surface);
            border-radius: 24px;
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
            border: 1px solid rgba(139, 92, 246, 0.08);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .feature-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .feature-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2), 0 0 0 1px rgba(139, 92, 246, 0.1);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--bg-start), var(--bg-middle));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.75rem;
        }
        
        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
        }
        
        .feature-card p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        /* Premium Section */
        .premium {
            padding: 6rem 2rem;
            position: relative;
        }
        
        .premium-container {
            max-width: 1000px;
            margin: 0 auto;
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
            border-radius: 32px;
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .premium-container.visible {
            opacity: 1;
            transform: translateY(0);
        }
            border-radius: 32px;
            padding: 4rem;
            position: relative;
            overflow: hidden;
        }
        
        .premium-container::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 60%;
            height: 150%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }
        
        .premium-content {
            position: relative;
            z-index: 1;
            text-align: center;
            color: white;
        }
        
        .premium-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, var(--premium-start), var(--premium-end));
            color: var(--text-primary);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .premium-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .premium-content > p {
            font-size: 1.125rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .premium-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
            text-align: left;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .premium-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1rem;
        }
        
        .premium-feature svg {
            width: 20px;
            height: 20px;
            fill: var(--premium-gold);
        }
        
        .btn-premium {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: white;
            color: var(--primary-purple);
            padding: 1rem 2.5rem;
            border-radius: 16px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .btn-premium:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
        }
        
        /* Download Section */
        .download {
            padding: 6rem 2rem;
            text-align: center;
        }
        
        .download-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .download h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .download p {
            font-size: 1.125rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }
        
        .store-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .store-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: var(--text-primary);
            color: white;
            padding: 0.875rem 1.5rem;
            border-radius: 12px;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .store-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        
        .store-btn svg {
            width: 28px;
            height: 28px;
            fill: white;
        }
        
        .store-btn-text {
            text-align: left;
        }
        
        .store-btn-text span {
            display: block;
            font-size: 0.7rem;
            opacity: 0.8;
        }
        
        .store-btn-text strong {
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        /* Footer */
        footer {
            padding: 4rem 2rem 2rem;
            background: var(--surface);
            border-top: 1px solid rgba(139, 92, 246, 0.1);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-brand p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-top: 1rem;
            max-width: 300px;
        }
        
        .footer-column h4 {
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 0.75rem;
        }
        
        .footer-column a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }
        
        .footer-column a:hover {
            color: var(--primary-purple);
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(139, 92, 246, 0.1);
        }
        
        .footer-bottom p {
            color: var(--text-tertiary);
            font-size: 0.875rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background: var(--surface-variant);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease, transform 0.3s ease;
        }
        
        .social-links a:hover {
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
            transform: translateY(-3px);
        }
        
        .social-links a:hover svg {
            fill: white;
        }
        
        .social-links svg {
            width: 20px;
            height: 20px;
            fill: var(--text-secondary);
            transition: fill 0.3s ease;
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 110;
            position: relative;
        }
        
        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            margin: 5px 0;
            transition: transform 0.3s ease, opacity 0.3s ease;
            transform-origin: center;
        }
        
        /* Hamburger to X animation */
        .mobile-menu-btn.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        
        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-btn.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
        
        /* Mobile Menu Overlay */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 5rem 2rem 2rem;
            z-index: 99;
            transform: translateY(-100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 30px rgba(139, 92, 246, 0.15);
        }
        
        .mobile-menu.active {
            transform: translateY(0);
        }
        
        .mobile-menu a {
            display: block;
            padding: 1rem 0;
            text-decoration: none;
            color: var(--text-primary);
            font-size: 1.1rem;
            font-weight: 500;
            border-bottom: 1px solid rgba(139, 92, 246, 0.1);
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
        }
        
        .mobile-menu.active a {
            opacity: 1;
            transform: translateY(0);
        }
        
        .mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu.active a:nth-child(2) { transition-delay: 0.15s; }
        .mobile-menu.active a:nth-child(3) { transition-delay: 0.2s; }
        .mobile-menu.active a:nth-child(4) { transition-delay: 0.25s; }
        .mobile-menu.active a:nth-child(5) { transition-delay: 0.3s; }
        
        .mobile-menu a:hover {
            color: var(--primary-purple);
        }
        
        .mobile-menu a:last-child {
            border-bottom: none;
            margin-top: 1rem;
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
            color: white;
            text-align: center;
            border-radius: 12px;
            padding: 1rem;
        }
        
        .mobile-menu a:last-child:hover {
            color: white;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-content p {
                margin-left: auto;
                margin-right: auto;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-image {
                order: -1;
                flex-direction: column;
            }
            
            .phone-carousel {
                width: 280px;
                height: 570px;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-top {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .premium-container {
                padding: 2.5rem 1.5rem;
            }
            
            .premium-features {
                grid-template-columns: 1fr;
            }
            
            .footer-top {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-brand p {
                margin-left: auto;
                margin-right: auto;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero {
                padding: 6rem 1rem 3rem;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .phone-carousel {
                width: 240px;
                height: 490px;
            }
            
            .blob {
                opacity: 0.3;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .premium-content h2 {
                font-size: 2rem;
            }
        }

/* =============================================
   Language Selector

/* =============================================
   LANGUAGE SELECTOR - NAV İÇİNDE
   ============================================= */

.lang-selector-wrapper {
    position: relative;
    display: inline-block;
    margin-left: 1rem;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.lang-selector:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}

.current-lang {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.lang-code {
    font-weight: 600;
}

.lang-arrow {
    font-size: 0.6rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: var(--surface);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.2);
    z-index: 9999;
    min-width: 160px;
    max-height: 320px;
    overflow-y: auto;
    padding: 0.5rem;
}

.lang-option {
    display: block;
    padding: 0.6rem 0.875rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-primary);
    transition: background 0.2s ease;
    white-space: nowrap;
}

.lang-option:hover {
    background: rgba(139, 92, 246, 0.1);
}

.lang-option.active {
    background: rgba(139, 92, 246, 0.15);
    color: var(--primary-purple);
    font-weight: 600;
}

/* MOBILE: Hamburger menü içinde */
.mobile-lang-selector {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.mobile-lang-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.mobile-lang-selector select {
    flex: 1;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    background: var(--surface);
    font-size: 0.875rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* Desktop: göster, Mobile: gizle */
@media (max-width: 768px) {
    .nav-links .lang-selector-wrapper {
        display: none !important;
    }
    
    .mobile-lang-selector {
        display: flex;
    }
}

@media (min-width: 769px) {
    .mobile-lang-selector {
        display: none !important;
    }
}

/* RTL Support */
body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .nav-links {
    flex-direction: row-reverse;
}

body.rtl .hero-content {
    text-align: right;
}

body.rtl .hero-buttons {
    justify-content: flex-start;
}

body.rtl .feature-card {
    text-align: right;
}

body.rtl .premium-feature {
    flex-direction: row-reverse;
}

body.rtl .footer-top {
    direction: rtl;
}

body.rtl .store-btn {
    flex-direction: row-reverse;
}

body.rtl .lang-dropdown {
    right: auto;
    left: 0;
}
