/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body & Layout */
body {
    font-family: Arial, sans-serif;
    background-color: #f1f1f1;
    color: #333;
    text-align: center;
}

/* Navigation Bar */
nav {
    background-color: #333;
    color: #fff;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-container h1 {
    font-size: 24px;
}

.nav-container ul {
    list-style: none;
    display: flex;
}

.nav-container ul li {
    margin: 0 15px;
}

.nav-container ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.nav-container ul li a:hover {
    text-decoration: underline;
}

/* Welcome Section */
.welcome-section {
    padding: 50px 20px;
    background-color: #282c34;
    color: white;
}

.welcome-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.welcome-section p {
    font-size: 20px;
    margin-bottom: 30px;
}

.welcome-section button {
    background-color: #ff7f50;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
}

.welcome-section button:hover {
    background-color: #ff6347;
}

/* Featured Games Section */
.game-section {
    padding: 50px 20px;
    background-color: #e6e6e6;
}

.game-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.game-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.game-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
}

.game-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.game-card p {
    font-size: 16px;
    margin-bottom: 20px;
}

.game-card .btn {
    background-color: #ff7f50;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.game-card .btn:hover {
    background-color: #ff6347;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 15px;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .game-cards {
        flex-direction: column;
    }

    .game-card {
        width: 100%;
    }

    .welcome-section h2 {
        font-size: 28px;
    }

    .welcome-section p {
        font-size: 18px;
    }
}

#screen-warning {
  display: none;
  text-align: center;
  margin-top: 20%;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
    section, li {
        display: none;
    }
    #screen-warning {
        display: block;
    }

}