/*
 * AION Media Group - Base CSS
 * Only contains styles that are 100% VERIFIED to be identical across ALL pages
 * Created: 2025-09-14
 *
 * IMPORTANT: Do not add any styles here without verifying they are
 * EXACTLY identical in ALL HTML files
 */

/* ============================================
   Reset Styles - Verified in ALL 20 HTML files
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   Body Base - Verified in ALL 20 HTML files
   ============================================ */
body {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   Smooth Scrolling - Verified in ALL files
   ============================================ */
html {
    scroll-behavior: smooth;
}

/* ============================================
   Footer Base - Verified in ALL 20 HTML files
   ============================================ */
footer {
    background: #000000;
    padding: 3rem 2rem 1rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #046bd2;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   END OF VERIFIED SHARED STYLES

   DO NOT add more styles without verification!
   Each style above has been confirmed to be
   EXACTLY identical in all 20 HTML files.
   ============================================ */