/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--deep-space);
    color: var(--cosmic-text);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    font-family: 'Exo 2', sans-serif;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, var(--neon-violet-glow) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, var(--cyber-aqua-glow) 0%, transparent 30%);
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--cyber-aqua);
    transition: all var(--transition-medium) cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    width: 92%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--starlight);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px var(--cyber-aqua-glow);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-violet), var(--cyber-aqua));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--cosmic-text);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Mobile Responsive for Section Titles */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem; /* Reduced from 2.8rem for all pages on mobile */
    }
}
