/* Base styles and CSS reset */
:root {
    --primary: #e31837;
    --primary-dark: #b31329;
    --secondary: #1a1a1a;
    --accent-gold: #ffd700;
    --gray-light: #f4f4f4;
    --gray-dark: #0a0a0a;
    --white: #ffffff;
    --animation-duration: 0.8s;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--secondary);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

h1, h2, h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

a {
    text-decoration: none;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

footer {
    background-color: var(--gray-dark);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn var(--animation-duration) ease-out forwards;
}