/* MOBILE FIRST BASE & SCROLLBAR */
body {
    background-color: #f8fafc;
    color: #334155;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { display: none; } /* Hide scrollbar on mobile for clean look */

/* TYPOGRAPHY MOBILE */
.drop-cap::first-letter {
    float: left;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 0.8;
    padding-top: 6px;
    padding-right: 10px;
    padding-left: 2px;
    color: #EE0033;
    font-weight: 800;
}
.article-p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #475569; 
    font-weight: 400;
    text-align: justify;
}
.article-p-light {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #f1f5f9; 
    font-weight: 300;
    text-align: justify;
}

/* GLASSMORPHISM MOBILE (Thinner blur for performance) */
.glass-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.glass-box-dark {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* HERO CINEMATIC KEN BURNS - MOBILE FIX LEFT ALIGN */
.hero-bg-zoom {
    background-image: url('https://cafefcdn.com/203337114487263232/2026/3/23/photo-1774270160118-17742701604411539456377.jpeg');
    background-position: 25% center;
    background-size: cover;
    animation: kenburns 30s infinite alternate ease-in-out;
    transform-origin: 25% center;
}
@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
.hero-gradient {
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
}
.hero-fade-bottom {
    background: linear-gradient(0deg, #f8fafc 0%, transparent 100%);
}
.text-shadow-premium {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

/* SCROLL REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ORBITING CIRCLE LOGOS MOBILE */
.universe-container {
    position: relative;
    width: 100%;
    max-width: 320px; /* Small enough for 375px screens */
    aspect-ratio: 1/1;
    margin: 0 auto;
    border-radius: 50%;
    border: 1px dashed rgba(0,0,0,0.15);
}
.orbit-track {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    animation: spin 40s linear infinite;
    border-radius: 50%;
}
.universe-container:active .orbit-track { animation-play-state: paused; }
@keyframes spin { 100% { transform: rotate(360deg); } }

.center-sun {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100px; height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 50;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 15px;
    border: 2px solid rgba(238,0,51,0.1);
}

.planet-wrapper {
    position: absolute;
    top: 50%; left: 50%;
    width: 64px; height: 64px; 
    margin: -32px 0 0 -32px;
    z-index: 40;
}
.planet-content {
    width: 100%; height: 100%;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    padding: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    animation: counter-spin 40s linear infinite;
}
.universe-container:active .planet-content { animation-play-state: paused; }
@keyframes counter-spin { 100% { transform: rotate(-360deg); } }

.planet-wrapper.active .planet-content {
    transform: scale(1.25) !important;
    border-color: #EE0033;
    box-shadow: 0 5px 15px rgba(238,0,51,0.4);
    z-index: 100;
}
.planet-content img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* MARQUEE MOBILE */
.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.marquee-content {
    display: flex;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}
.marquee-img-box {
    width: 260px; height: 180px;
    margin: 0 8px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}
.marquee-img-box img {
    width: 100%; height: 100%; object-fit: cover;
}
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    