:root {
    --primary: #0A2540;
    --secondary: #1B3F5E;
    --accent-light: #A8C5DE;
    --accent-medium: #7FA3C0;
    --neon-blue: #00F0FF;
    --neon-glow: rgba(0, 240, 255, 0.4);
    --background: #FFFFFF;
    --text: #0A2540;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: url('images/artwork.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    color: var(--background);
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 37, 64, 0.85); /* Using our primary color with opacity */
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.logo-container {
    margin-bottom: 3rem;
}

.logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px var(--neon-glow));
}

.message {
    max-width: 600px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--background);
    text-shadow: 0 0 20px var(--neon-glow);
}

p {
    font-size: 1.2rem;
    color: var(--accent-light);
    margin-bottom: 2rem;
}

.glow-line {
    width: 150px;
    height: 2px;
    background: var(--neon-blue);
    margin: 0 auto;
    box-shadow: 
        0 0 10px var(--neon-glow),
        0 0 20px var(--neon-glow),
        0 0 30px var(--neon-glow);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1rem;
    }

    .logo {
        width: 150px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .container {
        padding: 1rem;
    }
} 