/* ═══════════════════════════════════════════════════════════
   سهرتنا – Sahretna Website Styles
   Theme Colors from Flutter App
   Primary: #6C63FF | Secondary: #FF6584
   Light BG: #F8F9FA | Dark BG: #1A1A2E
   ═══════════════════════════════════════════════════════════ */

:root {
    /* Light Theme (Default) */
    --primary: #6C63FF;
    --primary-light: #8B84FF;
    --primary-dark: #5249E6;
    --secondary: #FF6584;
    --secondary-light: #FF8BA3;
    --accent: #00D9FF;
    
    --bg-primary: #F8F9FA;
    --bg-secondary: #FFFFFF;
    --bg-card: #FFFFFF;
    
    --text-primary: rgba(0, 0, 0, 0.87);
    --text-secondary: rgba(0, 0, 0, 0.6);
    --text-muted: rgba(0, 0, 0, 0.4);
    
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.2);
    
    --border-color: rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    
    --gradient-primary: linear-gradient(135deg, #6C63FF 0%, #FF6584 100%);
    --gradient-secondary: linear-gradient(135deg, #FF6584 0%, #6C63FF 100%);
    --gradient-hero: linear-gradient(180deg, var(--bg-primary) 0%, rgba(108, 99, 255, 0.1) 100%);
    
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Theme */
[data-theme="dark"] {
    --bg-primary: #1A1A2E;
    --bg-secondary: #16213E;
    --bg-card: #16213E;
    
    --text-primary: rgba(255, 255, 255, 0.87);
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    --shadow-light: rgba(0, 0, 0, 0.3);
    --shadow-medium: rgba(0, 0, 0, 0.4);
    --shadow-heavy: rgba(0, 0, 0, 0.5);
    
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(22, 33, 62, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    --gradient-hero: linear-gradient(180deg, var(--bg-primary) 0%, rgba(108, 99, 255, 0.2) 100%);
}

/* ═══════════════════════════════════════════════════════════
   Base Styles
   ═══════════════════════════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
}

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

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

/* ═══════════════════════════════════════════════════════════
   Theme & Language Toggle Buttons
   ═══════════════════════════════════════════════════════════ */

.theme-toggle,
.lang-toggle {
    position: fixed;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px var(--shadow-medium);
    transition: var(--transition);
}

.theme-toggle {
    top: 20px;
    left: 20px;
}

.lang-toggle {
    top: 20px;
    left: 80px;
    font-family: 'Tajawal', sans-serif;
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
}

.theme-toggle:hover,
.lang-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px var(--shadow-heavy);
}

.theme-toggle .icon {
    font-size: 24px;
    transition: var(--transition);
}

.theme-toggle .moon {
    display: none;
}

[data-theme="dark"] .theme-toggle .sun {
    display: none;
}

[data-theme="dark"] .theme-toggle .moon {
    display: block;
}

/* ═══════════════════════════════════════════════════════════
   Particles Background
   ═══════════════════════════════════════════════════════════ */

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) translateX(-20px) rotate(180deg);
    }
    75% {
        transform: translateY(-40px) translateX(10px) rotate(270deg);
    }
}

/* ═══════════════════════════════════════════════════════════
   Hero Section
   ═══════════════════════════════════════════════════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 101, 132, 0.1) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    flex: 1;
    max-width: 600px;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    filter: blur(60px);
    opacity: 0.5;
    border-radius: 50%;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.logo-icon {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    margin-bottom: 16px;
    box-shadow: 0 20px 50px rgba(108, 99, 255, 0.3);
    position: relative;
    z-index: 1;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.logo {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 40px rgba(108, 99, 255, 0.3);
}

.logo-en {
    display: block;
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: -5px;
}

.tagline {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Tajawal', sans-serif;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(108, 99, 255, 0.5);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--primary);
    border: 2px solid var(--primary);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1.3rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Hero Visual - Phone Mockup */
.hero-visual {
    z-index: 1;
    display: none;
}

@media (min-width: 1024px) {
    .hero {
        flex-direction: row;
        gap: 60px;
        text-align: right;
    }
    
    .hero-content {
        text-align: right;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .hero-stats {
        justify-content: flex-start;
    }
    
    .hero-visual {
        display: block;
    }
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
    animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0) rotateY(-5deg);
    }
    50% {
        transform: translateY(-20px) rotateY(5deg);
    }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.app-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.preview-header {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.preview-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: 0 8px 30px var(--shadow-light);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.preview-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.preview-verdict {
    font-size: 0.9rem;
    color: var(--secondary);
    text-align: center;
    padding: 12px;
    background: rgba(255, 101, 132, 0.1);
    border-radius: 12px;
}

.preview-categories {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: auto;
    padding-top: 20px;
}

.preview-categories .cat {
    padding: 8px 16px;
    background: var(--glass-bg);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(10px);
    }
}

/* ═══════════════════════════════════════════════════════════
   Section Styles
   ═══════════════════════════════════════════════════════════ */

section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════════════════════════
   About Section
   ═══════════════════════════════════════════════════════════ */

.about {
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    gap: 60px;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.info-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 40px var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════
   Features Section
   ═══════════════════════════════════════════════════════════ */

.features {
    background: var(--gradient-hero);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 36px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 40px var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px var(--shadow-medium);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon { animation-delay: 0.2s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 0.4s; }
.feature-card:nth-child(4) .feature-icon { animation-delay: 0.6s; }
.feature-card:nth-child(5) .feature-icon { animation-delay: 0.8s; }
.feature-card:nth-child(6) .feature-icon { animation-delay: 1s; }

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

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

/* ═══════════════════════════════════════════════════════════
   Categories Section
   ═══════════════════════════════════════════════════════════ */

.categories {
    background: var(--bg-secondary);
    overflow: hidden;
}

.categories-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.categories-carousel::-webkit-scrollbar {
    display: none;
}

.category-card {
    flex: 0 0 200px;
    background: var(--bg-card);
    padding: 40px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 40px var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    scroll-snap-align: center;
    cursor: pointer;
}

.category-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px var(--shadow-medium);
    border-color: var(--primary);
}

.category-emoji {
    font-size: 4rem;
    margin-bottom: 16px;
    display: block;
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════════════
   How to Play Section
   ═══════════════════════════════════════════════════════════ */

.how-to-play {
    background: var(--gradient-hero);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Connector lines between steps */
@media (min-width: 768px) {
    .step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 35px;
        left: calc(50% + 50px);
        width: calc(100% - 70px);
        height: 3px;
        background: var(--gradient-primary);
        opacity: 0.3;
    }
}

/* ═══════════════════════════════════════════════════════════
   Download Section
   ═══════════════════════════════════════════════════════════ */

.download {
    background: var(--bg-secondary);
    text-align: center;
}

.download-content {
    max-width: 600px;
    margin: 0 auto;
}

.download-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.store-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 28px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    text-decoration: none;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 8px 30px var(--shadow-light);
}

.store-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
    border-color: var(--primary);
}

.store-btn.coming-soon {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

.store-btn.coming-soon:hover {
    transform: none;
    border-color: var(--border-color);
}

.coming-soon-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--secondary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 101, 132, 0.4);
}

[dir="ltr"] .coming-soon-badge {
    right: auto;
    left: -10px;
}

.store-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.store-icon svg {
    width: 100%;
    height: 100%;
}

.store-text {
    text-align: right;
}

.store-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.store-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════════════ */

.footer {
    background: var(--bg-primary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

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

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

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.social-link:hover {
    transform: translateY(-5px);
    background: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════
   Animations
   ═══════════════════════════════════════════════════════════ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.hero-visual {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-visual {
    animation-delay: 0.2s;
}

/* ═══════════════════════════════════════════════════════════
   Responsive Design
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .theme-toggle {
        top: 15px;
        left: 15px;
        width: 44px;
        height: 44px;
    }
    
    .lang-toggle {
        top: 15px;
        left: 70px;
        width: 44px;
        height: 44px;
        font-size: 12px;
    }
    
    section {
        padding: 70px 0;
    }
    
    .hero {
        padding: 80px 20px 50px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        gap: 30px;
    }
    
    .store-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .store-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════════
   LTR Support (English)
   ═══════════════════════════════════════════════════════════ */

[dir="ltr"] {
    text-align: left;
}

[dir="ltr"] .hero-content,
[dir="ltr"] .about-text,
[dir="ltr"] .store-text {
    text-align: left;
}

[dir="ltr"] .theme-toggle {
    left: auto;
    right: 20px;
}

[dir="ltr"] .lang-toggle {
    left: auto;
    right: 80px;
}

@media (min-width: 1024px) {
    [dir="ltr"] .hero-content {
        text-align: left;
    }
    
    [dir="ltr"] .hero-buttons,
    [dir="ltr"] .hero-stats {
        justify-content: flex-start;
    }
}

/* ═══════════════════════════════════════════════════════════
   Accessibility
   ═══════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
a:focus,
button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}
