:root {
    --bg-base: #020617;
    --accent-blue: #0ea5e9;
    --accent-cyan: #06b6d4;
    --accent-green: #10b981;
    --accent-purple: #8b5cf6;
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(56, 189, 248, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    
    --font-heading: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

body {
    font-family: var(--font-heading);
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 6%; width: 100%;}
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 6%; width: 100%;}
.text-center { text-align: center; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 5rem; }
.hidden { display: none !important; }

.bg-system { position: fixed; inset: 0; z-index: -1; overflow: hidden; background: #020617; }
.bg-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(14, 165, 233, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(14, 165, 233, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: gridMove 20s linear infinite;
    mask-image: linear-gradient(to top, transparent, black);
    -webkit-mask-image: linear-gradient(to top, transparent, black);
}
@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 0 -50px; }
}

.orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4; }
.orb-blue { width: 600px; height: 600px; background: var(--accent-blue); top: -200px; left: -200px; animation: orbFloat 15s ease-in-out infinite alternate; }
.orb-green { width: 400px; height: 400px; background: var(--accent-green); bottom: 10%; right: -100px; animation: orbFloat 20s ease-in-out infinite alternate-reverse; }
.orb-purple { width: 500px; height: 500px; background: var(--accent-purple); top: 40%; left: 30%; opacity: 0.2; animation: orbFloat 25s ease-in-out infinite alternate; }

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

.noise-overlay {
    position: absolute; inset: 0;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.03; pointer-events: none; mix-blend-mode: overlay;
}

.text-gradient {
    background: linear-gradient(135deg, #38bdf8, #34d399);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-heading {
    font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; line-height: 1.1; margin-bottom: 1rem;
    letter-spacing: -1px;
}
.section-subtext {
    font-size: 1.15rem; color: var(--text-muted); line-height: 1.6; max-width: 600px;
}

/* FLOATING NAVBAR */
.navbar {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 1000px; z-index: 1000;
    display: flex; align-items: center; transition: all 0.3s;
    background: rgba(15, 23, 42, 0.4); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 40px;
    height: 70px;
}
.navbar.scrolled {
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: rgba(56, 189, 248, 0.3);
}
.nav-content {
    width: 100%; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 8px; }
.brand-logo { width: 32px; height: 32px; border-radius: 8px; }
.brand-name { font-size: 1.2rem; font-weight: 800; letter-spacing: 1px; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; white-space: nowrap;}
.nav-link:hover { color: var(--text-main); }

.nav-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.btn-neon {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 20px; border-radius: 30px;
    background: rgba(14, 165, 233, 0.1); border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan); font-weight: 600; font-size: 0.9rem;
    transition: all 0.3s;
    white-space: nowrap;
}
.btn-neon:hover {
    background: rgba(14, 165, 233, 0.2);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.hero {
    min-height: 100vh; display: flex; align-items: center; position: relative;
    padding-top: 100px; overflow: hidden;
}
.hero-container {
    max-width: 1400px; width: 100%; margin: 0 auto; padding: 0 4%;
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center;
}
.hero-title { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 900; line-height: 1.05; letter-spacing: -2px; margin-bottom: 1.5rem; }
.hero-desc { font-size: 1.25rem; color: var(--text-muted); line-height: 1.6; max-width: 580px; margin-bottom: 3rem; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: #fff; padding: 16px 32px; border-radius: 12px; font-weight: 700; font-size: 1.05rem;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3); transition: all 0.3s;
    white-space: nowrap; text-align: center;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(14, 165, 233, 0.5); }
.btn-secondary {
    background: rgba(255,255,255,0.03); color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.1); padding: 16px 32px; border-radius: 12px; font-weight: 600; font-size: 1.05rem;
    transition: all 0.3s; white-space: nowrap; text-align: center;
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; height: 600px; width: 100%;}
.mascot-wrapper { position: relative; width: 400px; height: 400px; display: flex; justify-content: center; align-items: center;}
.mascot-img { width: 280px; height: 280px; object-fit: contain; position: relative; z-index: 10; animation: floatMascot 6s ease-in-out infinite; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)); }

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

.ring { position: absolute; border: 1px solid rgba(14, 165, 233, 0.3); border-radius: 50%; opacity: 0.6; }
.ring-1 { width: 350px; height: 350px; animation: spin 20s linear infinite; border-top-color: var(--accent-cyan); border-bottom-color: var(--accent-green); }
.ring-2 { width: 450px; height: 450px; animation: spin 30s linear infinite reverse; border-left-color: var(--accent-purple); opacity: 0.3; }
.ring-3 { width: 550px; height: 550px; border: 1px dashed rgba(255,255,255,0.1); animation: spin 40s linear infinite; }

@keyframes spin { 100% { transform: rotate(360deg); } }

.float-card {
    position: absolute; background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1); padding: 12px 20px; border-radius: 12px;
    font-weight: 600; font-size: 0.9rem; color: #fff; z-index: 15; box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    animation: floatMascot 5s ease-in-out infinite;
    display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.float-1 { top: 10%; left: -10%; animation-delay: 0s; border-left: 3px solid var(--accent-cyan);}
.float-2 { top: 40%; right: -20%; animation-delay: 1.5s; border-left: 3px solid var(--accent-purple);}
.float-3 { bottom: 10%; left: 10%; animation-delay: 3s; border-left: 3px solid var(--accent-green);}

.scroll-down { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.5; }
.mouse { width: 24px; height: 36px; border: 2px solid #fff; border-radius: 12px; position: relative; }
.wheel { width: 4px; height: 8px; background: #fff; border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); animation: scroll 1.5s infinite; }
.scroll-text { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; }
@keyframes scroll { 0% { opacity: 1; transform: translate(-50%, 0); } 100% { opacity: 0; transform: translate(-50%, 15px); } }

/* DISCORD MOCKUP UI */
.discord-section { padding: 100px 0; overflow-x: hidden; width: 100vw; }
.terminal-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.check-list { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 16px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 1.1rem; color: #e2e8f0; font-weight: 500; }
.check-list li::before { content: '\f00c'; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--accent-green); background: rgba(16, 185, 129, 0.1); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0;}

.discord-mockup {
    background: #313338;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    border: 1px solid rgba(255,255,255,0.05);
    width: 100%;
}
.discord-header {
    background: #2b2d31;
    padding: 16px 20px;
    border-bottom: 1px solid #1e1f22;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f2f3f5;
}
.discord-header i { color: #80848e; font-size: 1.2rem; }

.discord-messages {
    padding: 20px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    word-break: break-word; /* Important for long strings like arabic */
}
.discord-msg {
    display: flex;
    gap: 16px;
}
.msg-avatar {
    width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.user-av { background: #5865F2; color: #fff; font-size: 1.2rem;}
.bot-av { background: transparent; }
.bot-av img { width: 100%; height: 100%; object-fit: contain; }

.msg-title { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; flex-wrap: wrap;}
.msg-name { font-weight: 500; color: #f2f3f5; font-size: 1rem;}
.bot-name { color: #00DBFF; } /* custom color for Orion in chat */
.bot-tag { background: #5865F2; font-size: 0.65rem; padding: 2px 4px; border-radius: 3px; color: #fff; margin-left: 4px; font-weight: 600; display: inline-flex; align-items: center;}
.bot-tag i { font-size: 0.6rem; margin-right: 3px;}
.msg-time { font-size: 0.75rem; color: #949ba4; }

.msg-text { color: #dbdee1; font-size: 0.95rem; line-height: 1.4; }
.cmd-text { background: transparent; display: block; font-family: var(--font-heading); font-size: 0.95rem; line-height: 1.5;}
.mention-highlight { color: #c9cdcf; background: rgba(88, 101, 242, 0.3); padding: 0 4px; border-radius: 3px; font-weight: 500;}
.cursor { animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

.msg-embed {
    margin-top: 8px;
    background: #2b2d31;
    border-radius: 4px;
    border-left: 4px solid var(--accent-blue);
    padding: 16px;
    width: 100%;
    max-width: 400px;
}
.embed-author { font-weight: 600; color: #f2f3f5; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; word-break: break-all;}
.embed-desc { font-size: 0.9rem; color: #dbdee1; margin-bottom: 12px; line-height: 1.4;}
.embed-fields { display: flex; flex-direction: column; gap: 12px; }
.embed-field strong { font-size: 0.85rem; color: #f2f3f5; display: block; margin-bottom: 2px;}
.embed-field span { font-size: 0.85rem; color: #dbdee1; display: block;}


.glass-panel {
    background: var(--glass-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border); border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

.capabilities { padding: 100px 0; width: 100vw; overflow-x: hidden;}
.bento-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.bento-cell { padding: 32px; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform 0.3s, border-color 0.3s;}
.bento-cell:hover { transform: translateY(-5px); border-color: rgba(56, 189, 248, 0.4); }
.cell-span-2 { grid-column: span 2; display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 24px;}

.cell-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; flex-shrink:0;}
.icon-blue { background: rgba(14, 165, 233, 0.1); color: var(--accent-blue); }
.icon-red { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.icon-purple { background: rgba(139, 92, 246, 0.1); color: var(--accent-purple); }
.icon-yellow { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.icon-green { background: rgba(16, 185, 129, 0.1); color: var(--accent-green); }

.cell-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; color: #fff; line-height: 1.2;}
.cell-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

.build-visual { width: 45%; background: rgba(0,0,0,0.3); border-radius: 12px; padding: 20px; border: 1px solid rgba(255,255,255,0.05); font-family: var(--font-mono); font-size: 0.85rem; flex-shrink:0;}
.tree-item { margin-bottom: 8px; color: #cbd5e1; display: flex; align-items: center; gap: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.tree-item i { font-size: 0.9em; opacity: 0.8; }
.tree-item.server { font-weight: bold; color: #fff; margin-bottom: 12px;}
.tree-item.branch { padding-left: 10px; color: var(--accent-cyan); }
.tree-item.leaf { padding-left: 30px; position: relative; }
.tree-item.leaf::before { content: ''; position: absolute; left: 16px; top: -8px; bottom: 50%; border-left: 1px solid #475569; border-bottom: 1px solid #475569; width: 8px; }
.role-r .r-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 4px; }
.r-red { background: #ef4444; } .r-green { background: #10b981; }

.commands-section { padding: 40px 0 60px; position: relative; width: 100vw;}
.holo-glass {
    background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(14, 165, 233, 0.2); border-radius: 24px; padding: 40px;
    box-shadow: 0 0 40px rgba(14, 165, 233, 0.1), inset 0 0 20px rgba(14, 165, 233, 0.05);
}

.cmd-list { display: flex; flex-direction: column; gap: 12px;}

.cmd-row {
    display: flex; align-items: center; gap: 24px; padding: 16px 24px; border-radius: 12px;
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.03);
    transition: all 0.2s;
}
.cmd-row:hover { background: rgba(14, 165, 233, 0.1); border-color: rgba(14, 165, 233, 0.3); transform: translateX(5px); }
.cmd-name { font-family: var(--font-mono); font-weight: 700; color: var(--accent-cyan); font-size: 1.05rem; min-width: 150px; flex-shrink:0;}
.cmd-desc { color: var(--text-muted); font-size: 0.95rem; }

.mention-callout {
    margin-top: 40px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px; padding: 24px;
    display: flex; align-items: flex-start; gap: 20px;
}
.callout-icon { font-size: 2rem; color: var(--accent-green); }
.callout-text h4 { color: #fff; font-weight: 700; font-size: 1.1rem; margin-bottom: 8px;}
.callout-text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6;}
.callout-text strong { color: var(--accent-green); background: rgba(16,185,129, 0.1); padding: 2px 6px; border-radius: 4px; font-weight: 600;}

/* NEW PRE-FOOTER CTA */
.cta-card {
    background: radial-gradient(circle at center, rgba(14, 165, 233, 0.15) 0%, transparent 70%), rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(16px); border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    margin: 0 6%;
}
.cta-content { max-width: 600px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #fff; margin-bottom: 1rem; line-height: 1.1;}
.cta-content p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2rem; }

.btn-pulse { position: relative; overflow: hidden; animation: btnPulse 2s infinite; display: inline-block;}
@keyframes btnPulse { 0% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(14, 165, 233, 0); } 100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0); } }

/* NEW CLEAN FOOTER */
.footer-modern {
    margin-top: 80px;
    padding: 60px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.f-grid {
    display: flex; justify-content: space-between; gap: 60px;
}
.f-left { max-width: 300px; }
.f-brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.5rem; margin-bottom: 16px; color: #fff;}
.f-brand img { width: 36px; border-radius: 8px;}
.f-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.6;}
.f-socials { display: flex; gap: 16px; }
.f-socials a { color: var(--text-muted); font-size: 1.2rem; transition: color 0.2s; }
.f-socials a:hover { color: var(--accent-cyan); }

.f-links-group { display: flex; gap: 80px; }
.f-col { display: flex; flex-direction: column; gap: 12px; }
.f-col h4 { color: #fff; font-size: 1rem; margin-bottom: 8px; font-weight: 600;}
.f-col a { color: var(--text-muted); font-size: 0.95rem; transition: color 0.2s;}
.f-col a:hover { color: var(--accent-cyan); }

.f-bottom-bar {
    margin-top: 60px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.05);
    color: #475569; font-size: 0.9rem; font-family: var(--font-mono); background: #010309;
}


.anim-up { opacity: 0; transform: translateY(40px); transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.anim-scale { opacity: 0; transform: scale(0.9); transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.anim-up.visible, .anim-scale.visible { opacity: 1; transform: none; }

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .navbar { width: 95%; border-radius: 20px;}
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-actions { justify-content: center; }
    .hero-visual { width: 100%; overflow: hidden;}
    .terminal-container { grid-template-columns: 1fr; gap: 40px;}
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .cell-span-2 { grid-column: span 2; flex-direction: column; text-align: center; }
    .cell-span-2 .cell-content { max-width: 100%; margin-bottom: 20px;}
    .build-visual { width: 100%; text-align: left; max-width: 500px; margin: 0 auto;}
    .f-grid { flex-direction: column; }
    .f-links-group { gap: 40px; flex-wrap: wrap; }
}

@media (max-width: 800px) {
    .bento-grid { grid-template-columns: 1fr; }
    .cell-span-2 { grid-column: span 1; }
    .holo-glass { padding: 24px; }
    .cmd-row { flex-direction: column; align-items: flex-start; gap: 8px; padding: 16px;}
}

@media (max-width: 600px) {
    .nav-links { display: none; }
    .navbar { padding: 0 10px; height: 60px;}
    .nav-content { padding: 0 10px; }
    .hero-title { font-size: 2.5rem; letter-spacing: -1px;}
    .hero-desc { font-size: 1.1rem; }
    .hero-actions { flex-direction: column; align-items: stretch;}
    .mascot-wrapper { transform: scale(0.8); }
    .float-card { display: none; } /* Hide float cards on very small screens to avoid overflow */
    
    .discord-mockup { width: 100%; border-radius: 8px; }
    .discord-messages { padding: 12px; }
    .discord-msg { flex-direction: column; gap: 8px;}
    .msg-avatar { display: none; } /* hide avatar to save space */
    .msg-embed { max-width: 100%; padding: 12px; }
    
    .mention-callout { flex-direction: column; text-align: center; align-items: center; padding: 20px;}
    .cta-card { padding: 40px 20px; margin: 0; border-radius: 12px;}
    .f-grid { gap: 40px; }
}

/* LANGUAGE TOGGLE & RTL SUPPORT */
.btn-lang {
    background: transparent; border: 1px solid rgba(255,255,255,0.1); color: var(--text-main);
    padding: 8px 16px; border-radius: 20px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    cursor: pointer; font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem;
    transition: all 0.3s;
    min-width: 90px;
}
.btn-lang:hover { background: rgba(255,255,255,0.1); border-color: var(--accent-cyan); }
.fade-lang { opacity: 0 !important; transition: opacity 0.3s ease-in-out; }

body[dir="rtl"] { font-family: 'Cairo', var(--font-heading); }
body[dir="rtl"] .hero-title, body[dir="rtl"] .section-heading { font-family: 'Cairo', var(--font-heading); font-weight: 800; letter-spacing: 0;}
body[dir="rtl"] .nav-links { flex-direction: row-reverse; }
body[dir="rtl"] .btn-neon i { margin-right: 0; margin-left: 8px; }
body[dir="rtl"] .discord-mockup { direction: rtl; }
body[dir="rtl"] .discord-header { flex-direction: row; }
body[dir="rtl"] .msg-avatar { margin-left: 16px; margin-right: 0; }
body[dir="rtl"] .bot-tag { margin-inline-start: 4px; margin-inline-end: 0; }
body[dir="rtl"] .msg-embed { border-right: 4px solid var(--accent-blue); border-left: none; }
body[dir="rtl"] .check-list li::before { margin-left: 12px; margin-right: 0; }
body[dir="rtl"] .bento-cell { text-align: right; }
body[dir="rtl"] .tree-item.leaf::before { right: 16px; left: auto; border-right: 1px solid #475569; border-left: none; border-bottom: 1px solid #475569;}
body[dir="rtl"] .tree-item.branch { padding-right: 10px; padding-left: 0;}
body[dir="rtl"] .tree-item.leaf { padding-right: 30px; padding-left: 0;}
body[dir="rtl"] .f-grid { text-align: right; }
body[dir="rtl"] .hero-container { text-align: right; direction: rtl;}
body[dir="rtl"] .terminal-col { text-align: right; direction: rtl;}
body[dir="rtl"] .callout-icon { margin-left: 20px; margin-right: 0;}
body[dir="rtl"] .role-r .r-dot { margin-left: 4px; margin-right: 0;}
body[dir="rtl"] .btn-lang i { margin-left: 4px; margin-right: 0;}
body[dir="rtl"] .nav-actions { flex-direction: row-reverse; }
