
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #060814;
    color: #F4F4F4;
}

/* --- Header --- */
header {
    background-color: #1A1036;
    color: #F4F4F4;
    padding: 20px 0;
    text-align: center;
    border-bottom: 4px solid #FF6EC7;
}

header h1 {
    font-size: 3em;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

/* --- Navigation --- */
nav {
    background-color: #060814;
    padding: 10px 0;
    text-align: center;
    border-bottom: 2px solid #1A1036;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: #FF6EC7;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

nav ul li a:hover {
    color: #00FFC3;
    text-shadow: 0 0 8px #00FFC3;
}

/* --- Main Content --- */
main {
    padding: 20px;
    max-width: 1000px;
    margin: 20px auto;
}

section {
    background-color: #1A1036;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 16px;
    box-shadow: 0 0 18px rgba(0, 255, 195, 0.15);
    border: 1px solid rgba(255, 110, 199, 0.4);
}

section h2 {
    color: #00FFC3;
    border-bottom: 2px solid #FF6EC7;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(0, 255, 195, 0.5);
}

/* --- Flavor / Game List --- */
.flavor-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.flavor {
    background-color: transparent;
    color: #FFD447;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    border: 1px solid #FFD447;
    box-shadow: 0 0 10px rgba(255, 212, 71, 0.5);
}

/* --- Specials Section --- */
#specials p {
    font-size: 1.2em;
    text-align: center;
    padding: 15px;
    background-color: #060814;
    border: 2px solid #FF6EC7;
    border-radius: 12px;
    box-shadow: 0 0 18px rgba(255, 110, 199, 0.35);
}

#specials strong {
    color: #00FFC3;
}

/* --- Footer --- */
footer {
    background-color: #060814;
    color: #F4F4F4;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9em;
    border-top: 1px solid #1A1036;
}
