@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&family=Roboto:wght@300;400;500&display=swap');

:root {
    /* Dark Theme (Default) - Will transition to QXMP Blue */
    --primary: #ff0000;
    --secondary: #ff3333;
    --background: #0a0a0a;
    --text: #ffffff;
    --accent: #ff3333;
    --grid-color: rgba(255, 0, 0, 0.1);
    --surface: rgba(10, 10, 10, 0.95);
    --surface-transparent: rgba(10, 10, 10, 0.5);
}

/* Light Theme */
[data-theme="light"] {
    --primary: #ff0000;
    --secondary: #ff3333;
    --background: #ffffff;
    --text: #0a0a0a;
    --accent: #ff0000;
    --grid-color: rgba(255, 0, 0, 0.05);
    --surface: rgba(255, 255, 255, 0.95);
    --surface-transparent: rgba(255, 255, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Neural Network Canvas */
#networkCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: auto;
    opacity: 0.8;
    background-color: var(--background);
    transition: background-color 0.3s ease;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
    transform: translate(-50%, -50%);
}

/* Section Base Styles */
.section {
    min-height: 100vh;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

/* Section Title Base Style */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text);
    text-shadow: 0 0 10px var(--accent);
    position: relative;
    z-index: 2;
}

/* Ensure content is above canvas but interactive */
main, header, footer {
    position: relative;
    z-index: 2;
}

/* Responsive Base Styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}
