/* critical path — nav + shell; full styles.css loads async */
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: transparent !important;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Orbitron', sans-serif;
    line-height: 1.6;
    color: #e7e1e5;
    background: #000000 !important;
    min-height: 100vh;
    position: relative;
    text-align: center;
}

/* Space Age Security Clearance Theme - Main Content */
.site-content {
    background: #000000 !important;
    position: relative;
    min-height: 100vh;
}

.site-content::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    z-index: 1;
}

/* Navigation Menu */
.main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 0, 0.2);
    padding: 0;
    transition: all 0.3s ease;
}


.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 1rem;
    min-height: auto;
    flex-wrap: wrap;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.nav-logo-img {
    height: 200px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.nav-link {
    color: #e7e1e5;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 0, 0.2);
    white-space: nowrap;
}

.nav-link i {
    font-size: 1rem;
    transition: all 0.2s ease;
}

.nav-link span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #ffff00;
    background: rgba(255, 255, 0, 0.1);
    border-color: rgba(255, 255, 0, 0.4);
}

.nav-link:hover {
    color: #ffff00;
    background: rgba(255, 255, 0, 0.15);
    border-color: rgba(255, 255, 0, 0.3);
    transform: translateY(-2px);
}

.nav-link:hover i {
    transform: scale(1.1);
    color: #ffff00;
}

.nav-link.active {
    color: #ffff00;
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.2), rgba(255, 255, 0, 0.1));
    border-color: rgba(255, 255, 0, 0.4);
}

.nav-link.active i {
    color: #ffff00;
}

.nav-link.invest-link {
    background: rgba(255, 255, 255, 0.05);
    color: #e7e1e5;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link.invest-link:hover {
    color: #ffff00;
    background: rgba(255, 255, 0, 0.15);
    border-color: rgba(255, 255, 0, 0.3);
    transform: translateY(-2px);
}

.nav-link.invest-link i {
    color: #e7e1e5;
}

.nav-link.invest-link:hover i {
    color: #ffff00;
}

.nav-link.invest-link span {
    color: #e7e1e5;
}

/* Main Content Area - Centered Layout */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    transition: margin-top 0.3s ease;
    position: relative;
    z-index: 2;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

/* Hero Section - Space Age Styling */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

/* Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

/* perf critical extras */
body{margin:0;background:#0f0f1e;color:#fff;}
.nav-ico{width:1em;height:1em;display:inline-block;vertical-align:-0.1em;fill:currentColor;flex-shrink:0;}
.nav-link .nav-ico{width:0.95em;height:0.95em;}
