body {
    --bg: #222;
    --text-color: #fff;
    --icon-color: #8e00aa;
    background: var(--bg);
    color: var(--text-color);
    font-family: 'Arial', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #333;
    color: var(--text-color);
}

.icons span {
    font-size: 1.5em;
    margin: 0 10px;
    color: var(--icon-color);
}

.time {
    font-size: 2em;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.games {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px;
}

.games .item {
    width: 150px;
    height: 150px;
    border: 2px solid #444;
    background: #555;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.games .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

nav {
    margin-top: 20px;
}

nav a {
    background: #444;
    color: var(--text-color);
    padding: 10px 15px;
    border-radius: 20px;
    text-decoration: none;
    margin: 0 10px;
    transition: background 0.3s;
}

nav a:hover {
    background: var(--icon-color);
}

footer {
    background: #333;
    color: var(--text-color);
    text-align: center;
    padding: 10px;
}

