:root {
    --bg-color: #0d0d1a;
    --primary-text: #e0e0e0;
    --heading-text: #ffffff;
    --accent-red: #d32f2f;
    --accent-blue: #3f51b5;
    --glow-color: rgba(63, 81, 181, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--primary-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--heading-text);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-blue));
    border-radius: 2px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

footer {
    text-align: center;
    padding: 40px 20px;
    background: #080810;
}
