/* --- Global Reset & Variables --- */
:root {
    --bg-void: #050708;
    --bg-card: #0d1117;
    --photon-blue: #00a8ff;
    --starlight: #ffffff;
    --text-dim: #a3abb3;
    --font-head: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-void);
    color: var(--starlight);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h2.section-title {
    font-family: var(--font-head);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--starlight);
}

/* --- Navigation & Text-Based Logo --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding: 0 5%;
    background: rgba(5, 7, 8, 0.95);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

.swan-icon {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.company-name {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
}

.name-top {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--starlight);
}

.name-bottom {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-top: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--starlight);
    font-family: var(--font-head);
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--photon-blue); }

.cta-btn {
    border: 1px solid var(--photon-blue);
    padding: 8px 18px;
    border-radius: 4px;
    color: var(--photon-blue) !important;
}

/* --- Hero & Alpha Transparency --- */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 70px;
    background: radial-gradient(circle at center, #111e2b 0%, var(--bg-void) 100%);
}

.hero-product-art {
    max-width: 650px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(0, 168, 255, 0.3));
    margin-bottom: 20px;
    animation: float 6s ease-in-out infinite;
    background: transparent;
}

.tagline { 
    font-size: 1.4rem; 
    margin-bottom: 40px; 
    font-family: var(--font-head);
}

.highlight { 
    color: var(--photon-blue); 
    text-shadow: 0 0 10px rgba(0, 168, 255, 0.5); 
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-head);
    font-weight: bold;
    margin: 10px;
    transition: 0.3s;
}

.btn-primary { background: var(--photon-blue); color: #000; }
.btn-secondary { border: 1px solid var(--starlight); color: var(--starlight); }

/* --- Video Section --- */
.footage-section { padding: 40px 5%; background: var(--bg-void); text-align: center; }
.video-preview-container {
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(0, 168, 255, 0.3);
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}
.gameplay-video { width: 100%; height: auto; display: block; }
.caption { 
    padding: 15px; 
    font-family: var(--font-head); 
    font-size: 0.8rem; 
    color: var(--photon-blue); 
    letter-spacing: 2px; 
    background: rgba(0, 0, 0, 0.5);
}

/* --- Technical Innovation (Centered) --- */
.vision-section { padding: 100px 5%; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
    text-align: center;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 25px;
    border-radius: 8px;
    border-top: 3px solid var(--photon-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card .icon {
    font-size: 2.5rem;
    color: var(--photon-blue);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-head);
    margin-bottom: 15px;
}

/* --- Engine Architecture --- */
.specs-section { padding: 100px 5%; background: #050708; }
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.spec-item {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--photon-blue);
    text-align: left;
}
.spec-icon { font-size: 1.4rem; color: var(--photon-blue); }
.spec-item strong { display: block; font-family: var(--font-head); margin-bottom: 8px; text-transform: uppercase; }

/* --- Mission Control & Widgets --- */
.community-section { padding: 100px 5%; }
.substack-featured-card {
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.1) 0%, #050708 100%);
    border: 1px solid var(--photon-blue);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 50px;
}
.btn-gold-large {
    display: inline-block;
    background: #ffca28;
    color: #000;
    padding: 15px 40px;
    font-family: var(--font-head);
    font-weight: 900;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 20px;
}

.widget-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.media-card {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.media-card h3 {
    margin-bottom: 15px;
    font-family: var(--font-head);
    font-size: 1rem;
    color: var(--photon-blue);
}

.video-container iframe,
.discord-container iframe {
    border-radius: 8px;
    height: 200px;
}

/* --- Footer --- */
.footer { padding: 80px 5%; text-align: center; background: #080c0d; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-logo { max-width: 250px; margin-bottom: 20px; }
.email-link { color: var(--photon-blue); text-decoration: none; font-weight: bold; }
.socials { margin: 20px 0; font-size: 1.5rem; }
.socials a { color: var(--starlight); margin: 0 15px; transition: 0.3s; }
.socials a:hover { color: var(--photon-blue); }
.copyright { font-size: 0.8rem; color: var(--text-dim); margin-top: 20px; }

/* --- Animations & Responsive --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hamburger { display: none; color: white; font-size: 1.5rem; cursor: pointer; }

@media (max-width: 900px) {
    .widget-grid { grid-template-columns: 1fr; }
    .specs-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hamburger { display: block; }
    .name-bottom { display: none; }
}