/* Resetting default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #ffffff, #f0f0f0);
    color: #333;
}

header {
    background-color: rgba(40, 44, 52, 0.9);
    padding: 15px 0;
    text-align: center;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

nav ul li a {
    color: #61dafb;
    text-decoration: none;
    font-size: 16px;
}

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

.section {
    flex: 1;
    padding: 80px 20px;
    text-align: center;
}

.section:nth-child(even) {
    background: linear-gradient(to bottom, #f0f0f0, #e0e0e0);
}

.section h2 {
    font-size: 28px;
    color: #282c34;
    margin-bottom: 20px;
}

.section p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.game-gallery {
    display: flex;
    justify-content: center;
}

.game {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.game img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.game h3 {
    margin-top: 15px;
    font-size: 24px;
    color: #333;
}

.game p {
    font-size: 16px;
    color: #666;
}

footer {
    background-color: rgba(40, 44, 52, 0.9);
    color: #61dafb;
    text-align: center;
    padding: 20px 0;
}
