body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

.header {
    width: 100%;
    height: 100px;
    background-color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.login-button {
    background-color: black;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}
.time-item {
    margin-top: 40px;
    font-weight: bold;
}

.background {
    background: linear-gradient(to right, blue, red);
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.center-image {
    max-width: 100%;
    height: auto;
}

.intro-text {
    margin-top: 20px;
    max-width: 800px;
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
}

.menu {
    background-color: black;
    color: white;
    padding: 40px 20px;
    text-align: left;
}

.menu h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid gray;
    font-size: 20px;
}

.menu h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 28px;
}

.game-pics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.game {
    text-align: center;
}

.game img {
    max-width: 100%;
    height: auto;
}

.game p {
    margin-top: 10px;
    font-size: 18px;
}

hr {
    border: 0;
    height: 1px;
    background: gray;
    margin: 20px 0;
}

.chervon-border {
    border-bottom: 1px solid gray;
    padding: 20px;
    text-align: center;
}

.material-icons {
    font-size: 24px;
    color: gray;
}

.chervon-gap {
    margin-right: 15px;
}

.contact-section {
    background-color: white;
    color: black;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.location-info, .contact-info {
    width: 48%;
    box-sizing: border-box;
}

.location-info h3, .contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.location-info p, .contact-info p {
    margin: 10px 0;
    font-size: 18px;
}

.contact-info {
    margin-top: 30px; /* Move contact info down slightly */
    text-align: right;
}

.live-in-game {
    font-size: 24px;
    margin-top: 40px;
}
.contact-section {
    display: flex;               /* Use flexbox to align items */
    justify-content: center;     /* Center horizontally */
    align-items: center;         /* Center vertically */
    min-height: 100vh;           /* Full viewport height to ensure centering */
    padding: 40px 20px;          /* Existing padding */
    background-color: white;     /* Existing background color */
}
.contact-form {
    width: 50%;
    box-sizing: border-box;
    text-align: center;
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid gray;
    border-radius: 4px;
}

.contact-form button {
    padding: 10px;
    font-size: 18px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
}

/* Responsive styling */
@media (max-width: 768px) {
    .header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }

    .logo {
        font-size: 20px;
        text-align: left; /* Ensures logo is left-aligned */
    }

    .login-button {
        font-size: 14px;
        padding: 8px 16px;
        margin-top: 0; /* Remove top margin to align right */
        text-align: right; /* Ensures button is right-aligned */
    }

    .menu h2 {
        font-size: 28px;
    }

    .menu-item {
        font-size: 18px;
    }

    .menu h3 {
        font-size: 24px;
    }

    .game-pics {
        grid-template-columns: 1fr;
    }

    .location-info, .contact-info {
        width: 100%;
        text-align: center;
    }

    .contact-form {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }

    .logo {
        font-size: 18px;
        text-align: left; /* Ensures logo is left-aligned */
    }

    .login-button {
        font-size: 12px;
        padding: 6px 12px;
        text-align: right; /* Ensures button is right-aligned */
    }

    .menu h2 {
        font-size: 24px;
    }

    .menu-item {
        font-size: 16px;
    }

    .menu h3 {
        font-size: 20px;
    }

    .game-pics {
        grid-template-columns: 1fr;
    }

    .contact-form {
        width: 100%;
    }
}
.footer {
    background-color: white;
    color: black;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

.footer-content {
    margin-bottom: 10px;
}

.footer-link {
    color: black;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-copyright p {
    margin: 5px 0;
}
.login-button {
    background-color: black;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}

/* Policy Background */
.policy-background {
    background: linear-gradient(to right, blue, red);
    color: white;
    padding: 50px 20px;
    min-height: 100vh; /* Ensures the section covers the full height of the viewport */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.policy-content {
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
    padding: 20px;
    border-radius: 10px;
}


