/* Minimal Gaming Vibe Style */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', sans-serif; /* Retain futuristic font */
}

body {
    background: #12121f; /* Deep, clean dark background */
    color: #cccccc; /* Soft gray-white for readability */
    padding: 20px;
    line-height: 1.6;
}

a {
    color: #00cc99; /* Muted neon teal */
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: #ff3366; /* Subtle neon pink */
}

/* Header Styling */
header {
    background: #1c1c2e; /* Simple dark shade */
    padding: 50px;
    text-align: center;
    border-radius: 6px;
    color: #fff;
    border-bottom: 4px solid #00cc99; /* Minimal accent */
}

header h1 {
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

header p {
    font-size: 1em;
    color: #b3d9d9; /* Soft teal tint */
}

/* Section Styling */
section {
    background: #1c1c2e; /* Matching dark tone */
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #00cc99; /* Clean teal accent */
    transition: border-color 0.2s ease-in-out;
}

section:hover {
    border-left-color: #ff3366; /* Subtle pink shift on hover */
}

section:nth-child(even) {
    border-left-color: #ff3366; /* Alternating pink */
}

section h2 {
    font-size: 1.7em;
    color: #fff;
    text-transform: uppercase;
}

/* Footer Styling */
footer {
    background: #1c1c2e; /* Consistent dark tone */
    color: #cccccc;
    text-align: center;
    padding: 20px;
    border-radius: 6px;
    margin-top: 30px;
    border-top: 4px solid #ff3366; /* Minimal pink accent */
}

footer a {
    color: #00cc99;
    margin: 0 8px;
    transition: color 0.2s ease-in-out;
}

footer a:hover {
    color: #fff;
}

/* Modal Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Clean, semi-dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal {
    background: #1c1c2e; /* Matching minimal dark */
    padding: 25px;
    width: 90%;
    max-width: 380px;
    border-radius: 6px;
    text-align: center;
    border: 2px solid #00cc99; /* Subtle teal outline */
}

.modal h2 {
    color: #00cc99;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.modal button {
    background: #ff3366; /* Minimal pink button */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
    text-transform: uppercase;
}

.modal button:hover {
    background: #00cc99; /* Teal on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    header, footer {
        padding: 30px;
    }
    section {
        padding: 15px;
    }
}

.a {}