body {
    background-image: url(images/website.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #202124;
    color: white;
    font-family:Arial, Helvetica, sans-serif;
    margin: 0 ;
    padding: 20px;
}

 h1 {
    text-align: center;
    color: #202124;
    font-size: 48px;
}

p {
    text-align:center;
    color: #00ffaa;
    font-size: 18px;
    }

.game-card {
    flex: 1 1 380px;
    max-width: 400px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(145deg, #262a32 85%, #1e1f22); 
    border: 2px solid #00d9ff;
    border-radius: 20px;
    padding: 26px 28px 32px 28px;
    margin-bottom:2vh;
    box-shadow: 0 8px 32px #00d9ff33,0 0 68px #00d9ff22;
    position: relative;
    transition: all 0.35s cubic-bezier(.4,2,.46,.71);
   }
.card-container {
    display:flex;
    flex-wrap:wrap;
    justify-content: center;
    gap: 36px;
    margin-top: 30px;
    margin-bottom: 40px;
}
.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0,5),
                0 0 60px rgba(0, 217, 255, 0,5);
    border-color: #00ffaa  
}

.card-image {
    width: 100%;
    height: 225px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 18px;
    display: block;
    border: 1.5px solid rgba(0, 217, 255, 0.23);
    transition: box-shadow 0.2s;
}

.card-image:hover {
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

a {
    display: inline-block;
    color: #000;
    text-decoration: none;
    background: linear-gradient(145deg, #00d9ff, #00ffaa);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4);
    margin-top: 10px;
    animation: glow-pulse 2s ease-in-out infinite;
} 

a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 255, 170, 0.6);
    background: linear-gradient(135deg, #00ffaa, #00d9ff);
}

a:visited {
    color: #000;
}

.card-counter {
    position: absolute;
    top: 10px;
    right: 18px;
    background: #1a1a1a;
    color: #00d9ff;
    border-radius: 10px;
    padding: 4px 12px;
    font-size: 16px;
    font-weight: bold;
    opacity: 0.8;
    pointer-events: none;
}
.banner {
    text-align:center;
    color: #00d9ff;
    font-size: 8px;
    line-height: 1.1;
    margin: 20px auto 30px;
    font-family: monospace;
    text-shadow: 0 0 10px #00d9ff, 0 0 20px #00d9ff;
    animation: glow-pulse 2s ease-in-out infinite;
    background: linear-gradient(145deg, #262a32 85%, #1e1f22); 
    border: 2px solid #00d9ff;
    border-radius: 20px;
    padding: 32px 28px 32px 28px;
    box-shadow: 0 8px 32px #00d9ff33,0 0 68px #00d9ff22;
    transition: all 0.35s cubic-bezier(.4,2,.46,.71);
    display: block;
    width: fit-content;
    max-width: 950px;
    text-align: center;
}

.gaming-icon {
    position: fixed;
    bottom: 15px;
    left: 0;
    font-size: 48px;
    animation: move-right-left 20s linear infinite;
}
@keyframes move-right-left {
    0% {
        left: 0%;
    }
    50% {
        left: calc(100% - 50px);
    }
    100% {
        left: 0%;
    }
}

@keyframes glow-pulse {
    0%, 100% {
        text-shadow: 0 0 10px #00d9ff, 0 0 20px #00d9ff;
    }
    50% {
        text-shadow: 0 0 20px #00d9ff, 0 0 30px #00d9ff, 0 0 40px #00d9ff;   
    }
}
.game-card h2 {
    color: #00d9ff;
}

.about-button {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00d9ff, #00ffaa);
    color: #000;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}
.about-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.4);
    background: linear-gradient(135deg, #00ffaa, #00d9ff);
}

.back-button {
    display: inline-block;
    background: linear-gradient(135deg, #00d9ff, #00ffaa);
    color: #000;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4);
    transition: all 0.3s ease;
    position: fixed;
    top: 20px;
    right: 20px;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.4);
    background: linear-gradient(135deg, #00ffaa, #00d9ff);
}
