:root {
    /* Colors Palette - Extracted from Hero Image */
    /* Background: Deep Mystic Forest/Night Sky */
    --color-bg: #020617;
    
    /* Sun/Leo: Noble Gold */
    --color-sun: #d4af37; 
    --color-sun-glow: rgba(245, 158, 11, 0.3);
    
    /* Moon/Venus: Deep Sea Turquoise */
    --color-moon: #0d9488; 
    --color-moon-glow: rgba(20, 184, 166, 0.3);
    
    --color-retro-glow: rgba(167, 139, 250, 0.4);

    /* Text Colors */
    --color-text-main: #f1f5f9;
    --color-text-muted: #ced9e9;

    /* Fonts */
    --font-header: 'Cormorant Garamond', serif;
    --font-body: 'Sora', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --nav-height: 80px;
}

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

body {
    background-color: var(--color-bg);
    /* Gradient: Misty Sky to Deep Earth */
    background-image: radial-gradient(circle at 50% 0%, #11262d 0%, #020617 80%);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Effects - Adjusted for new palette */
.background-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0.6;
}

.top-center {
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    /* Golden Hour / Sky Glow */
    background: radial-gradient(circle, rgba(180, 83, 9, 0.15) 0%, rgba(2, 6, 23, 0) 70%);
}

.bottom-right {
    bottom: -200px;
    right: -200px;
    /* Mystic Sea Glow */
    background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, rgba(2, 6, 23, 0) 70%);
}

/* Typography */
h1, h2, h3, .logo {
    font-family: var(--font-header);
    font-weight: 700;
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.text-gradient {
    background: linear-gradient(135deg, #f1f5f9 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
/* Navigation */
/* Navigation */
.glass-nav {
    position: absolute; /* Static top header */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0; /* More space */
    background: transparent;
    border-bottom: none;
}

.glass-nav.scrolled {
    /* Removed sticky styles */
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    padding: 2rem 0;
}

.nav-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Logo Left, CTA Right */
    padding-top: 0;
}

.lang-switcher {
    margin-top: 0; /* Reset */
    /* ... other styles preserved via cascade or file ... */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
}

.logo-container {
    display: inline-flex;
    align-items: center;
    position: relative;
}

/* Artistic Logo Aura */
.logo-container::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
    animation: breathing 8s ease-in-out infinite;
}

.logo-icon {
    width: 240px; /* MEGA LOGO 240px */
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-icon:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.8));
}




/* Nav Links */
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin-left: auto; /* Push to right */
    margin-right: 2rem; 
    margin-top: 0; /* Reset */
}

.nav-links a {
    color: var(--color-text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background: var(--color-sun);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    margin-left: 0; 
    margin-top: 0; /* Reset */
    color: var(--color-sun); /* Gold Text */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
    border: 1px solid var(--color-sun); /* Outline Gold */
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
}

.nav-cta:hover {
    background: var(--color-sun);
    color: #020617; /* Dark text on gold bg */
    box-shadow: 0 0 20px var(--color-sun-glow);
}

/* Hero Section Layout */
/* Hero Section Layout */

/* SPLASH HERO Styles */
.splash-hero {
    height: 100vh;
    width: 100%;
    background: url('assets/hero-img.png') no-repeat center center; /* Fallback Image */
    background-size: cover;
    display: flex;
    flex-direction: column; /* Fix Centering */
    align-items: center; /* Horiz Center */
    justify-content: flex-end; /* Vertical Bottom */
    padding-bottom: 12vh; /* Positioning */
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

/* Bottom Fade for Smooth Transition */
.splash-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, #020617 100%);
    z-index: 5;
    pointer-events: none;
}

.splash-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: scale(1.35); /* Zoom to remove bars/logo */
    filter: brightness(0.8); /* Slightly dim for text readability */
}

/* Sound Toggle */
.mute-btn {
    position: absolute;
    top: 2rem; /* Top Right? Or Bottom? User said "corner". Top right is usually header area (nav hidden). Let's put Bottom Right near arrow? Or Top Right. */
    /* Let's put Bottom Right */
    bottom: 3rem;
    right: 3rem;
    background: rgba(2, 6, 23, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-sun);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.mute-btn:hover {
    border-color: var(--color-sun);
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.1);
}

.splash-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(2,6,23,0.1), rgba(2,6,23,0.7));
    z-index: 1;
}

.splash-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fadeUp 1s ease-out forwards 0.3s;
    opacity: 0;
}

.splash-title {
    font-family: var(--font-header);
    font-size: 5rem;
    color: var(--color-sun);
    text-shadow: 0 4px 30px rgba(0,0,0,0.8);
    background: linear-gradient(135deg, #FFF7D1 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.splash-btn {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Hero Section Layout */
.hero-section {
    min-height: 100vh;
    padding-top: 6rem; /* Standard spacing */
    padding-bottom: 4rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

/* Gradient Overlay for Header Readability */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.9) 0%, transparent 100%);
    pointer-events: none;
    z-index: 10;
}

.hero-container {
    position: relative;
    z-index: 20; /* Ensure content is above gradient */
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.hero-description {
    margin-bottom: 2rem;
    max-width: 500px;
    font-size: 1rem;
    line-height: 1.6;
    color: #cbd5e1; /* Lighter Text */
    font-weight: 300; /* Light Weight */
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Button Base Styles Restored */
.btn {
    padding: 1rem 2.8rem;
    border-radius: 99px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--color-sun); /* Solid Noble Gold */
    color: #020617;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    border: none;
}

/* Typography Overrides */
.hero-brand {
    font-size: 3.5rem; /* Reduced Size */
    line-height: 1.1;
    margin-bottom: 0.5rem;
    margin-left: 0; /* Reset indentation */
    background: linear-gradient(135deg, #FFF7D1 0%, #D4AF37 100%); /* Splash Gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-sub {
    font-size: 2.5rem;
    color: var(--color-text-main);
    margin-bottom: 2rem;
    font-weight: 400;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(180, 83, 9, 0.5);
    filter: brightness(1.1);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-main);
    border: 1px solid rgba(250, 232, 176, 0.3); /* Subtle Gold border */
    border-radius: 50px;
}

.btn-secondary:hover {
    background: rgba(250, 232, 176, 0.05);
    border-color: var(--color-sun);
}


/* Hero Stats & Visuals */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-text-main);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 650px;
    aspect-ratio: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
    mask-image: radial-gradient(ellipse at center, black 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 60%, transparent 100%);
    position: relative;
    z-index: 1;
    filter: saturate(1.1) contrast(1.1);
}

.image-backdrop {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, rgba(155, 89, 182, 0.4) 0%, transparent 70%); /* Amethyst */
    opacity: 0.4;
    z-index: 0;
    border-radius: 50%;
}

/* Floating Badges Glassmorphism */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.3); /* Gold border */
    padding: 0.8rem 1.2rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
}

.badge-sun {
    top: 10%;
    left: -10%;
}

.badge-moon {
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(250, 232, 176, 0.1); /* Champagne tint */
    border-radius: 50%;
    color: #fae8b0; /* Champagne Gold Icon */
}

/* Reset specific colors to Champagne Gold as requested */
.badge-sun .badge-icon, .badge-moon .badge-icon { 
    color: #fae8b0; 
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-label {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.badge-value {
    font-weight: 600;
    color: var(--color-text-main);
    font-size: 0.9rem;
}

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

/* Features Section */
.features-section {
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 600px;
    margin-inline: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(155, 89, 182, 0.4) 0%, transparent 70%);
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.feature-card:hover .card-glow {
    opacity: 0.05;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    padding: 4rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 4rem;
    text-align: center;
}



.footer-copy {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
}

.lang-opt {
    cursor: pointer;
    color: var(--color-text-muted);
    transition: color 0.3s;
}

.lang-opt:hover, .lang-opt.active {
    color: var(--color-sun);
}

.lang-sep {
    color: rgba(255, 255, 255, 0.2);
}

/* AI Wisdom Section */
.ai-section {
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ai-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ai-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border: 1px solid var(--color-sun);
    border-radius: 99px;
    color: var(--color-sun);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 2rem;
}

.ai-section h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #f1f5f9, #94a3b8);
    -webkit-background-clip: text; /* standard property background-clip below */
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.ai-section strong {
    color: var(--color-sun);
    font-weight: 600;
}

/* Upcoming Section */
.upcoming-section {
    padding: 6rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.upcoming-section h3 {
    margin-bottom: 3rem;
    font-size: 1.5rem;
    color: var(--color-text-main);
}

.upcoming-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.upcoming-item {
    font-family: var(--font-header);
    font-size: 1.2rem;
    color: var(--color-text-muted);
    position: relative;
}

.upcoming-item::before {
    content: '✦';
    color: var(--color-sun);
    margin-right: 0.5rem;
    opacity: 0.6;
}

/* New Footer Styles */
.main-footer {
    background: rgba(0, 0, 0, 0.4);
    padding: 5rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.brand-col .logo-container {
    margin-bottom: 1.5rem;
}

.logo-icon-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.brand-name {
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-sun);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 250px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--color-sun);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: all 0.3s;
}

.social-links a:hover {
    border-color: var(--color-sun);
    color: var(--color-sun);
    background: rgba(212, 175, 55, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Brand Break Section */
.brand-break {
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.brand-emblem {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: breathing 6s ease-in-out infinite;
}

.emblem-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.3));
}

.emblem-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 180%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

@keyframes breathing {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.05); filter: brightness(1.2); }
}

.brand-slogan {
    font-family: var(--font-header);
    font-size: 2.5rem;
    color: var(--color-sun);
    letter-spacing: 0.05em;
    margin-top: 1rem;
    opacity: 0.9;
}

/* Header Text Restore */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-text {
    font-family: var(--font-header);
    font-size: 1.5rem;
    color: var(--color-text-main);
    letter-spacing: 0.1em;
    font-weight: 700;
}

/* Footer Logo Adjust */
.logo-icon-lg {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.15));
    margin-bottom: 1rem;
    transition: opacity 0.3s;
}

.logo-icon-lg:hover {
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.4));
}

.info-trigger {
    color: var(--color-sun);
    cursor: help;
    margin-left: 0.5rem;
    font-size: 0.9rem;
    position: relative;
    top: 2px;
}

/* Animations */
[data-reveal="zoom"] {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal="zoom"].active {
    opacity: 1;
    transform: scale(1);
}

[data-reveal] {
    opacity: 0;
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="up"] { transform: translateY(30px); }

[data-reveal].active {
    opacity: 1;
    transform: translate(0);
}

/* Override to Hide Nav globally */
.glass-nav { display: none !important; }
/* Simple Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-section {
        padding-top: calc(var(--nav-height) + 2rem);
        align-items: flex-start; /* Allow scroll if content is tall */
    }

    h1.hero-brand { font-size: 3.5rem; }
    h2.hero-sub { font-size: 1.8rem; }

    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        margin-top: 2rem;
    }

    .hero-description {
        margin-inline: auto;
    }
    
    .image-container {
        max-width: 400px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .badge-sun { left: 0; }
    .badge-moon { right: 0; }
}
