/* BASE & SCROLLBAR */
body {
    background-color: #f8fafc;
    color: #334155;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #EE0033; }

/* TYPOGRAPHY */
.drop-cap::first-letter {
    float: left;
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 0.8;
    padding-top: 4px;
    padding-right: 12px;
    padding-left: 3px;
    color: #EE0033;
    font-weight: 800;
}
.article-p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: #475569; 
    font-weight: 400;
    text-align: justify;
}
.article-p-light {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #e2e8f0; 
    font-weight: 300;
    text-align: justify;
}

/* GLASSMORPHISM CARDS */
.glass-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.glass-box-dark {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* HERO CINEMATIC KEN BURNS */
.hero-bg-zoom {
    background-image: url('https://cafefcdn.com/203337114487263232/2026/3/23/photo-1774270160118-17742701604411539456377.jpeg');
    background-position: center;
    background-size: cover;
    animation: kenburns 30s infinite alternate ease-in-out;
    transform-origin: center;
}
@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}
.hero-gradient {
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
}
.hero-fade-bottom {
    background: linear-gradient(0deg, #f8fafc 0%, transparent 100%);
}
.text-shadow-premium {
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}

/* SCROLL REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ORBITING CIRCLE LOGOS */
.universe-container {
    position: relative;
    width: 100%;
    max-width: 650px;
    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 60s linear infinite;
    border-radius: 50%;
}
.universe-container:hover .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: 160px; height: 160px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 50;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(238,0,51,0.1);
}
.center-sun:hover { transform: translate(-50%, -50%) scale(1.05); box-shadow: 0 15px 50px rgba(238,0,51,0.3); }

.planet-wrapper {
    position: absolute;
    top: 50%; left: 50%;
    width: 110px; height: 110px; 
    margin: -55px 0 0 -55px;
    z-index: 40;
    cursor: pointer;
}
.planet-content {
    width: 100%; height: 100%;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    animation: counter-spin 60s linear infinite;
}
.universe-container:hover .planet-content { animation-play-state: paused; }
@keyframes counter-spin { 100% { transform: rotate(-360deg); } }

.planet-wrapper:hover .planet-content, .planet-wrapper.active .planet-content {
    transform: scale(1.2) !important;
    border-color: #EE0033;
    box-shadow: 0 10px 30px rgba(238,0,51,0.4);
    z-index: 100;
}
.planet-content img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* MARQUEE */
.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-content {
    display: flex;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}
.marquee-wrapper:hover .marquee-content { animation-play-state: paused; }
.marquee-img-box {
    width: 450px; height: 300px;
    margin: 0 15px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.marquee-img-box img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s ease;
}
.marquee-img-box:hover img { transform: scale(1.05); }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

@media (max-width: 768px) {
    .universe-container { max-width: 320px; }
    .planet-wrapper { width: 80px; height: 80px; margin: -40px 0 0 -40px; }
    .center-sun { width: 120px; height: 120px; }
    .marquee-img-box { width: 300px; height: 200px; }
}