:root {
    --primary: #ffffff;
    --accent: #0284c7; 
    --text-main: #1f2937;
    --text-heading: #111827;
    --header-height: 45px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary);
    color: var(--text-main);
    scroll-behavior: smooth;
    overflow-x: hidden;
    padding-top: var(--header-height);
}

.serif { font-family: 'Playfair Display', serif; }

.sp-sticky-header {
    position: fixed !important; 
    top: 0 !important; 
    left: 0 !important; 
    width: 100%; 
    height: var(--header-height) !important;
    background-color: #000 !important; 
    display: flex !important; 
    align-items: center !important; 
    justify-content: space-between !important;
    z-index: 99999 !important; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.5) !important; 
    font-family: Arial, sans-serif !important;
}

.left-group, .right-group { display: flex; align-items: center; height: 100%; }

.sp-back-to-soha-new {
    display: flex; align-items: center; justify-content: center; 
    width: 45px; height: 45px;
    background-color: #007f74; color: white; cursor: pointer;
}
.sp-back-to-soha-new:hover { background-color: #00665d; }
.emg-icon-svg { fill: currentColor; width: 20px; height: 20px; }

.sp-mag-logo-new { margin-left: 15px; display: flex; align-items: center; }
.sp-mag-logo-new img { height: 24px; width: auto; display: block; }

.center-logo {
    position: absolute; left: 50%; transform: translateX(-50%); 
    pointer-events: none; user-select: none;
    display: flex; align-items: center; justify-content: center;
}
.center-logo img { height: 26px; width: auto; display: block; }

.mobile-emag-logo { display: none; height: 24px; width: auto; margin-right: 15px; }

.fb-custom-btn {
    display: flex; align-items: center; gap: 6px; color: white; 
    font-size: 13px; font-weight: bold; cursor: pointer; opacity: 0.9;
    margin-right: 15px;
    text-decoration: none;
}
.fb-custom-btn:hover { opacity: 1; text-decoration: underline; }

@media (max-width: 768px) { 
    .center-logo, .fb-custom-btn { display: none !important; } 
    .mobile-emag-logo { display: block !important; }
}

video {
    transform: scale(1.1); 
    transform-origin: center center;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-container {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden; z-index: 0; background-color: #000;
}

.video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: transparent; z-index: 1; }

.scroll-indicator { animation: bounce 2s infinite; }
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.gradient-text {
    background: linear-gradient(to right, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.parallax-depth { background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%); }
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.depth-line {
    position: absolute; left: 20px; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, #0ea5e9 0%, #0ea5e9 80%, transparent 100%);
    z-index: 5;
}
@media (min-width: 768px) {
    .depth-line { left: 20px; }
}

.roadmap-container {
    position: relative;
    padding-left: 2rem;
}
@media (min-width: 768px) {
    .roadmap-container { padding-left: 3.5rem; }
}

.dynamic-line {
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #e2e8f0 0%, #0ea5e9 50%, #e2e8f0 100%);
}
@media (min-width: 768px) {
    .dynamic-line { left: 24px; }
}

.running-clock {
    position: absolute;
    left: -11px;
    top: 0;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ea5e9;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
    z-index: 30;
    transition: top 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: top, transform;
}

.running-clock i {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (min-width: 768px) {
    .running-clock { left: 5px; }
}

.timeline-dot { position: relative; }
.timeline-dot::before {
    content: ''; position: absolute; left: -33px; top: 10px; width: 16px; height: 16px;
    border-radius: 50%; background: #cbd5e1; 
    z-index: 20;
    transition: background 0.4s ease;
}
@media (min-width: 768px) {
    .timeline-dot::before { left: -41px; }
}

.hero-title {
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    color: #ffffff; position: relative; z-index: 10;
}

#hero-ui {
    transition: opacity 2s ease-in-out;
    opacity: 1;
}

@media (max-width: 640px) {
    .hero-section { height: calc(100vh - 45px); min-height: 500px; }
}