body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #000 0%, #4f8cff 50%, #00ff88 100%);
    color: #222;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}
header {
    background: rgba(79, 140, 255, 0.95);
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    border-radius: 0 0 30px 30px;
    margin-bottom: 2rem;
}
main {
    padding: 2rem 1rem;
    max-width: 600px;
    margin: auto;
    background: rgba(255,255,255,0.85);
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
footer {
    background: rgba(34,34,34,0.95);
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: fixed;
    width: 100%;
    bottom: 0;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}
.game-button {
    display: inline-block;
    background: #000 !important;
    color: #fff !important;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.game-button:hover {
    background: #222 !important;
    color: #fff !important;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}
.main-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0 0.5rem 0;
}
.main-nav a {
    color: #fff;
    background: linear-gradient(90deg, #4f8cff 0%, #00ff88 100%);
    padding: 0.7rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s, transform 0.2s;
}
.main-nav a:hover {
    background: linear-gradient(90deg, #00ff88 0%, #4f8cff 100%);
    transform: scale(1.07);
}
.games-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    margin-top: 2rem;
}
.game-card {
    background: linear-gradient(135deg, #1a237e 0%, #0d133d 60%, #4f8cff 100%);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.game-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 30%, #fff8 1.5px, transparent 2px),
        radial-gradient(circle at 70% 60%, #fff6 1.2px, transparent 2px),
        radial-gradient(circle at 50% 80%, #fff5 1.8px, transparent 2px),
        radial-gradient(circle at 80% 20%, #fff7 1.1px, transparent 2px),
        radial-gradient(circle at 30% 70%, #fff9 1.3px, transparent 2px),
        radial-gradient(circle at 60% 40%, #fff4 1.6px, transparent 2px),
        radial-gradient(circle at 90% 90%, #fff8 1.4px, transparent 2px),
        radial-gradient(circle at 10% 80%, #fff7 1.2px, transparent 2px);
    background-size: 100% 100%;
    opacity: 0.7;
}
.game-card > * {
    position: relative;
    z-index: 1;
}
.game-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.2rem;
    background: #f0f8ff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    image-rendering: auto;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    filter: drop-shadow(0 0 6px #4f8cff44) contrast(1.1) saturate(1.2);
}
.poki-img {
    background: #fff;
    padding: 10px;
    width: 110px;
    height: 110px;
}
