/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Space+Mono:wght@400;700&display=swap');

:root {
    --primary-white: #FFFFFF;
    --primary-black: #0A0A0A;
    --accent-purple: #A020F0; /* "Attractive Purple" */
    --text-gray: #555555;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Space Mono', monospace;
    background-color: var(--primary-white);
    color: var(--primary-black);
    overflow-x: hidden;
}

h1, h2, h3, .brand-name {
    font-family: 'Audiowide', cursive;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}
/* Responsive Base */
html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Force 70/25/5 Colors even on mobile */
section.dark-mode {
    background-color: var(--primary-black);
    color: var(--primary-white);
}
/* Add to common.css */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }