:root {
    --primary-blue: #0072CE;   /* Air Force Blue inspiration */
    --deep-navy: #0b121c;
    --hud-white: #e0e6ed;
    --alert-accent: #3bf6ff;   /* Cyan accent for "tech" feel */
    --glass: rgba(11, 18, 28, 0.85);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--deep-navy);
    color: var(--hud-white);
    font-family: 'Chakra Petch', sans-serif; /* Tech/Futuristic font */
    overflow-x: hidden;
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    width: 100%;
    /* Dark space background image */
    background: url('Space.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Dark overlay to make text pop */
.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11,18,28,0.7) 0%, rgba(11,18,28,0.9) 100%);
    z-index: 1;
}

/* Nav Styling */
nav {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--alert-accent);
}

.nav-links a {
    color: var(--hud-white);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--alert-accent);
}

/* Hero Content */
.hero-content {
    z-index: 10;
    max-width: 800px;
    padding: 20px;
}

.rank-badge {
    display: inline-block;
    border: 1px solid var(--alert-accent);
    padding: 5px 15px;
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    background: rgba(59, 246, 255, 0.1);
}

h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-blue);
    color: white;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%); /* Angular military shape */
    transition: transform 0.2s, background-color 0.2s;
}

.cta-button:hover {
    background-color: var(--alert-accent);
    color: var(--deep-navy);
    transform: translateY(-2px);
}

/* Decorative HUD Lines */
.hud-line {
    position: absolute;
    background: var(--hud-white);
    opacity: 0.3;
    z-index: 5;
}

.bottom-left {
    bottom: 50px;
    left: 50px;
    width: 150px;
    height: 1px;
}
.bottom-left::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 10px;
    height: 10px;
    border-left: 1px solid var(--hud-white);
    border-bottom: 1px solid var(--hud-white);
}

.bottom-right {
    bottom: 50px;
    right: 50px;
    width: 150px;
    height: 1px;
    text-align: right;
}
.bottom-right::after {
    content: 'SYS.VER.2.0';
    font-size: 0.6rem;
    letter-spacing: 2px;
    position: absolute;
    top: -20px;
    right: 0;
}

/* --- SCHEDULE SECTION --- */
.schedule-section {
    padding: 100px 50px;
    background: linear-gradient(to bottom, var(--deep-navy), #050a10);
}

.section-header {
    margin-bottom: 60px;
    border-left: 4px solid var(--primary-blue);
    padding-left: 20px;
}

.section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.mission-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    position: relative;
    transition: 0.3s;
}

.mission-card:hover {
    border-color: var(--primary-blue);
    background: rgba(0, 114, 206, 0.1);
}

.mission-card h3 {
    color: var(--alert-accent);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.mission-card .time {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: block;
}

.mission-card.active {
    border: 1px solid var(--primary-blue);
}

.status-live {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-blue);
    font-size: 0.7rem;
    padding: 2px 10px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* --- SOCIAL SECTION --- */
.social-section {
    padding: 50px 50px 100px 50px;
    background: #050a10;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.social-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 25px 40px;
    text-decoration: none;
    color: white;
    border-left: 0px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.social-card:hover {
    background: white;
    color: var(--deep-navy);
    border-left: 10px solid var(--primary-blue);
    padding-left: 50px;
}

.social-card .link-arrow {
    font-size: 1.5rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.social-card:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    font-size: 0.7rem;
    opacity: 0.5;
    letter-spacing: 3px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    .nav-links { display: none; } /* Simplified for mobile */
    .schedule-grid { grid-template-columns: 1fr; }
    .bottom-left, .bottom-right { display: none; }
}