 /* --- FONTS --- */@font-face {

font-family: 'Rajdhani';

src: url('fonts/Rajdhani-Medium.ttf') format('truetype');

font-weight: 500; font-style: normal; font-display: swap;

}@font-face {

font-family: 'Rajdhani';

src: url('fonts/Rajdhani-Bold.ttf') format('truetype');

font-weight: 700; font-style: normal; font-display: swap;

}/* --- BASE --- */body, html {

margin: 0; padding: 0; height: 100%; width: 100%;

background-color: #050505;

overflow: hidden;

display: flex; flex-direction: column; align-items: center; justify-content: center;

cursor: pointer;

-webkit-tap-highlight-color: transparent;

font-family: 'Rajdhani', sans-serif; color: #fff;

touch-action: none;

}/* --- BACKGROUND --- */.bg-layer {

position: fixed; top: 0; left: 0; width: 100%; height: 100%;

background-color: #050505; background-size: cover; background-position: center;

z-index: 0; opacity: 0; transition: opacity 2.5s ease-in-out; pointer-events: none;

}.bg-layer::after {

content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;

background: rgba(0, 0, 0, 0.6);

}.bg-layer.visible { opacity: 1; }.scanlines {

position: fixed; top: 0; left: 0; width: 100%; height: 100%;

background: repeating-linear-gradient(to bottom, transparent 0px, transparent 2px, rgba(0,0,0,0.1) 3px);

pointer-events: none; z-index: 1;

}/* --- UI ELEMENTS --- */.ui-container {

position: absolute; bottom: 15%; width: 100%;

display: flex; flex-direction: column; align-items: center;

z-index: 20; transition: opacity 0.5s ease;

pointer-events: none;

}.status-line {

font-size: 12px; letter-spacing: 3px; font-weight: 600; color: #555;

margin-top: 30px; text-transform: uppercase; transition: color 0.3s;

}.enter-btn {

padding: 14px 45px; color: #00ff88; background-color: transparent;

border: 1px solid rgba(0, 255, 136, 0.4);

text-decoration: none; font-weight: 700; font-size: 18px; letter-spacing: 4px;

text-transform: uppercase; border-radius: 2px;

opacity: 0; transform: translateY(15px) scale(0.95);

pointer-events: auto; cursor: pointer;

transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);

backdrop-filter: blur(4px);

}.enter-btn.visible { opacity: 1; transform: translateY(0) scale(1); }.enter-btn:hover { background-color: rgba(0, 255, 136, 0.15); box-shadow: 0 0 35px rgba(0, 255, 136, 0.25); color: #fff; border-color: #fff; }/* FOOTER */.legal-footer {

position: fixed; bottom: 20px; width: 100%; display: flex; justify-content: center; gap: 20px;

z-index: 50; pointer-events: auto;

}.legal-link {

color: #444; text-decoration: none; font-size: 10px; text-transform: uppercase;

letter-spacing: 1px; font-weight: 500; transition: color 0.3s; padding: 10px;

}.legal-link:hover { color: #fff; }/* NAV */.main-nav {

position: absolute; top: 50%; display: flex; gap: 40px;

flex-direction: column; align-items: center;

opacity: 0; transform: translateY(100px);

transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);

z-index: 30; pointer-events: auto;

}@media (min-width: 768px) { .main-nav { flex-direction: row; gap: 100px; } }.nav-link {

color: #ccc; text-decoration: none; font-size: 20px; letter-spacing: 6px;

font-weight: 700; text-transform: uppercase; transition: color 0.3s;

}.nav-link:hover { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.8); }/* --- DESKTOP ENGINE (Physics SVG) --- */#main-svg {

display: block; width: 95vw; max-width: 800px; height: auto; z-index: 10;

transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), filter 0.5s;

pointer-events: none;

}.rgb-group { mix-blend-mode: screen; }/* --- MOBILE ENGINE (CSS Only) --- */#mobile-logo-container {

display: none; /* Default off */

position: relative; width: 300px; height: 150px;

z-index: 10;

justify-content: center; align-items: center;

transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);

}.mob-circle {

width: 60px; height: 60px; background: white; border-radius: 50%;

position: absolute; top: 50%; left: 50%;

transform: translate(-50%, -50%);

transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);

mix-blend-mode: screen;

}/* Standby Animation Mobile */.mob-circle.left { margin-left: -50px; animation: mob-float 3s infinite ease-in-out alternate; }.mob-circle.right { margin-left: 50px; animation: mob-float 3s infinite ease-in-out alternate-reverse; }@keyframes mob-float { from { transform: translate(-50%, -50%) translateY(-5px); } to { transform: translate(-50%, -50%) translateY(5px); } }/* Mobile Text */.mob-text {

font-family: 'Rajdhani', sans-serif;

font-weight: 800;

font-size: 80px; letter-spacing: 5px;

color: white;

position: absolute; top: 50%; left: 50%;

transform: translate(-50%, -50%) scale(0.5);

opacity: 0;

transition: all 0.5s ease-out;

white-space: nowrap;

}/* === MOBILE STATES === */#mobile-logo-container.active .mob-circle.left { margin-left: 0; opacity: 0; transform: translate(-50%, -50%) scale(2); }#mobile-logo-container.active .mob-circle.right { margin-left: 0; opacity: 0; transform: translate(-50%, -50%) scale(2); }#mobile-logo-container.active .mob-text { opacity: 1; transform: translate(-50%, -50%) scale(1); }/* --- MEDIA QUERIES --- */@media (max-width: 800px) {

#main-svg { display: none !important; }

#mobile-logo-container { display: flex; }

.ui-container { bottom: 25%; }

.enter-btn { padding: 12px 30px; font-size: 16px; }

}/* --- NAV MODE STATES --- */body.nav-mode .main-nav { opacity: 1; transform: translateY(0); pointer-events: auto; transition-delay: 0.6s; }body.nav-mode .ui-container { opacity: 0; }body.nav-mode .legal-link { color: rgba(255,255,255,0.4); } body.nav-mode { cursor: default; }/* Logo Move Up */body.nav-mode #main-svg { transform: translateY(-30vh) scale(0.65); }body.nav-mode #mobile-logo-container { transform: translateY(-35vh) scale(0.7); } 