body {
    font-family: 'Baloo 2', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures the body takes at least the full height of the viewport */
    color: #000; /* Set the default text color to black */
}

#background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

header {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 0;
    text-align: center;
}

.header-title {
    font-family: 'Baloo 2', sans-serif;
    font-size: 5em;
    color: #39ff14;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.header-container {
    display: flex;
    flex-direction: column; /* Change to column to place image below title */
    align-items: center;
    padding: 0 20px;
}

.header-image img {
    width: 55%;
    height: auto;
}

nav {
    width: 100%;
    background: linear-gradient(90deg, #1e88e5, #42a5f5, #1565c0);
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1em;
    padding: 8px 12px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.container {
    flex: 1; /* Allows the container to grow and fill the available space */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.claim-spot {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 20px auto;
}

.claim-spot h2, .claim-spot h3, .claim-spot p, .claim-spot button, .claim-spot a button {
    color: #000; /* Ensure text color is black */
}

.claim-spot h2 {
    margin-bottom: 20px;
}

.claim-spot p {
    margin-bottom: 20px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.button-container button, .claim-spot a button {
    flex: 1;
    padding: 10px 20px;
    background-color: #7289da;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button-container button:hover, .claim-spot a button:hover {
    background-color: #5a6cb2;
}

.info-field {
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #e9ecef;
    color: #000; /* Ensure info field text is black */
}

footer {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 0;
    text-align: center;
    position: relative; /* Change to relative to ensure it stays at the bottom */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.footer-container p {
    margin: 0;
}

.footer-container a {
    color: white;
    text-decoration: none;
}
