:root {
    --atmo-blue: #003366;
    --vacuum-black: #050505;
    --sun-gold: #FDB813;
    --ion-cyan: #00FFFF;
    --text-light: #f8f9fa;
    --text-muted: #adb5bd;
}

body {
    background-color: var(--vacuum-black);
    color: var(--text-light);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar Styling */
.navbar {
    background-color: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    padding: 1rem 2rem;
}

.navbar-brand {
    color: var(--ion-cyan) !important;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.2rem;
}

.nav-link {
    color: var(--text-light) !important;
    margin-left: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--ion-cyan) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, var(--vacuum-black), var(--atmo-blue));
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--vacuum-black) 80%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, var(--ion-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-slogan {
    font-size: 1.5rem;
    color: var(--sun-gold);
    letter-spacing: 4px;
    margin-bottom: 2rem;
}

/* Section Styling */
section {
    padding: 5rem 0;
}

.section-title {
    color: var(--ion-cyan);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--sun-gold);
}

/* Card Styling */
.card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 0;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.card:hover {
    border-color: var(--ion-cyan);
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.05);
}

.card-title {
    color: var(--ion-cyan);
}

/* Tech Specs Table */
.table {
    color: var(--text-light);
}

.table-dark {
    background-color: rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background-color: var(--vacuum-black);
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    padding: 3rem 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Custom Effects */
.refraction-edge {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.ion-glow {
    text-shadow: 0 0 10px var(--ion-cyan);
}

/* Modal Styling */
.modal-content {
    background-color: var(--atmo-blue);
    color: var(--text-light);
    border: 1px solid var(--ion-cyan);
}

.modal-header {
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.modal-footer {
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}
