body {
    margin: 0;
    background: #000;
    color: white;
    font-family: Arial, sans-serif;
}

.navbar {
    padding: 20px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    position: fixed;
    top: 0; width: 100%;
}
.logo {
    width: 170px;
}

.container {
    margin-top: 120px;
    padding: 20px;
}

/* ANA SAYFA KARTLARI */
.big-card {
    width: 100%;
    height: 260px;
    border-radius: 16px;
    margin-bottom: 25px;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
    transition: .25s;
}
.big-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255,255,255,0.4);
}
.big-card-title {
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0 0 12px black;
}

/* KATEGORİ SAYFASI GENEL */
.category-title {
    font-size: 32px;
    margin-bottom: 25px;
}

/* STEAM TARZI OYUN KARTI */
.game-card {
    display: flex;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    margin-bottom: 18px;
    cursor: pointer;
    transition: .2s;
    padding: 10px;
}
.game-card:hover {
    background: rgba(255,255,255,0.13);
}

.game-thumb {
    width: 140px;
    height: 90px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
}

.game-info {
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.play-btn {
    margin-top: 8px;
    padding: 6px 12px;
    background: #00e1ff;
    color: #000;
    width: 90px;
    text-align: center;
    border-radius: 6px;
    font-weight: bold;
}

footer {
    margin-top: 50px;
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.05);
}