/* Basic Reset and Setup */
body {
    background-color: #000; /* Pure black background for maximum contrast */
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 20px; /* Padding for the container to sit inside the viewport */
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

/* The Main Container with the Neon Red Border */
.container {
    width: 90%;
    max-width: 1000px;
    background-color: #1a1a1a; /* Dark gray inner background */
    padding: 20px;
    border: 2px solid #ff0000; /* Solid red border */
    border-radius: 5px;

    /* Multiple box-shadows for a strong, soft red glow */
    box-shadow: 
        0 0 5px #ff0000,
        0 0 15px #ff0000,
        0 0 30px #ff0000,
        0 0 40px rgba(255, 0, 0, 0.5); 
}

header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

/* The Light Blue Neon Header Text */
.neon-blue-header {
    color: #ccffff; /* Very light cyan color */
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;

    /* Multiple text-shadows for a strong light blue/cyan glow */
    text-shadow: 
        0 0 5px #00ffff, /* Cyan */
        0 0 10px #00ffff, 
        0 0 20px #00ffff,
        0 0 40px #00bfff, /* Deeper blue for the outer aura */
        0 0 80px #00bfff;
}

main p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card {
    background-color: #2a2a2a;
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid #444;
    /* Optional: Subtle blue glow for cards */
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2); 
}

footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}
