/* General Reset */
body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Oswald', serif;
    overflow: hidden;
    /* Prevents scrollbars from breaking the effect */
    color: white;
}



/* Navigation Bar */
.navbar {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    /* Space items evenly across the navbar */
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex: 1;
    /* Ensures items take up equal space */
    justify-content: space-evenly;
    /* Equal spacing between items */
    align-items: center;
    /* Align items vertically */
}

.navbar li {
    display: inline-block;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.navbar a:hover {
    background: #4c9eaf;
    color: white;
}


.profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* Ensures the icon stays circular */
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    /* Prevents any content from spilling out */
}

.profile-icon:hover {
    transform: scale(1.1);
    /* Smooth scaling on hover */
    border: 2px solid #4c9eaf;
    /* Adds a clear hover border effect */
}

/* Game Setup Content */
.game-setup {
    height: calc(100vh - 70px);
    /* Subtract navbar height */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.game-container {
    background: rgba(0, 0, 0, 0.9);
    /* Increase opacity to ensure content stands out */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
    /* Make the shadow darker for better visibility */
    z-index: 10;
    /* Bring the game container above the particles/background */
    position: relative;
    /* Ensure it respects the z-index */
}


.game-container h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.game-container p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.selection {
    margin-bottom: 15px;
}

.selection label {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

#country,
#purpose {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    color: #263aaa;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Start Button */
.start-button {
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    background: #4c9eaf;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s;
}

.start-button:hover {
    background: #263aaa;
    transform: scale(1.1);
}

/* Particle Background */
#particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle, rgba(166, 215, 246, 0.6), rgba(7, 47, 82, 0.9));
}