/* Global styles */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure body stretches to at least full viewport height */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

header .logo img {
    height: 50px; /* Adjust size as needed */
    vertical-align: middle;
}

nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ccc;
}

/* Section styles */

.section {
    padding: 50px 0;
    text-align: center;
}

.section .content {
    max-width: 800px;
    margin: 0 auto;
}

/* Games grid styles */

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.game {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: left;
    border-radius: 5px;
    transition: transform 0.2s ease;
}

.game:hover {
    transform: translateY(-5px);
}

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

.coming-soon {
    background-color: #ffcc00;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 5px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.popup {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 300px;
    text-align: center;
}

.popup-content {
    text-align: left;
}

.info-btn, .download-btn {
    display: inline-block;
    margin: 10px 10px 0 0;
    padding: 12px 24px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.info-btn:hover, .download-btn:hover {
    background-color: #555;
}

/* Footer styles */

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: fixed; /* Fixed position */
    bottom: 0; /* Stick to the bottom of the viewport */
    width: 100%; /* Full width */
}
