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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    min-width: 320px;
    max-width: 800px;
    background: transparent;
    border-radius: 0;
    padding: 60px 40px;
    box-shadow: none;
    text-align: center;
}

h1 {
    font-size: 3em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.games-section {
    margin-top: 40px;
}

.games-section h2 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.game-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.game-item {
    padding: 0;
    border-radius: 0;
    width: 100%;
    max-width: 800px;
    transition: none;
    cursor: default;
}

.game-item:hover {
    transform: none;
    box-shadow: none;
}

.game-item h3 {
    color: #333;
    font-size: 1.3em;
    margin-bottom: 5px;
}

.game-item p {
    color: #888;
    font-size: 0.9em;
}

.coming-soon-label {
    font-size: 1.2em;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 10px;
}

.game-banner {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.game-description {
    text-align: left;
}

footer {
    margin-top: 60px;
    color: #555;
    font-size: 0.9em;
    text-align: left;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

footer h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1em;
}

.divider {
    width: 100%;
}

