@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&family=Poppins:wght@400;600&display=swap');

/* GENEL AYARLAR */
body {
    margin: 0;
    padding: 0;
    background-color: #121212;
    /* Çok koyu gri (Lüks hissi) */
    background-image: radial-gradient(circle at top, #1b5e20 0%, #0d3311 60%, #051406 100%);
    /* Yeşil Spot Işığı */
    color: #fff;
    font-family: 'Poppins', sans-serif;
    /* Ana sayfa için daha modern font */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.main-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

/* HEADER */
header {
    margin-bottom: 40px;
}

.logo-area {
    font-size: 50px;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 10px;
    animation: float 3s infinite ease-in-out;
}

h1 {
    font-family: 'Patrick Hand', cursive;
    /* Başlık el yazısı kalsın */
    font-size: 42px;
    margin: 0;
    letter-spacing: 2px;
    color: #fff;
}

p {
    margin: 5px 0 0;
    color: #a5d6a7;
    font-size: 14px;
    opacity: 0.8;
}

/* OYUN KARTLARI */
.games-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.game-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    /* Cam Efekti */
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

/* AKTİF OYUN (101) */
.active-game {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    /* Altın çerçeve */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.active-game:hover {
    transform: translateY(-5px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
}

.active-game .card-icon {
    color: #ffd700;
    font-size: 32px;
    width: 50px;
}

.active-game .arrow {
    margin-left: auto;
    color: #ffd700;
    font-size: 20px;
    transition: transform 0.3s;
}

.active-game:hover .arrow {
    transform: translateX(5px);
}

/* PASİF OYUNLAR */
.disabled-game {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(100%);
}

.card-info {
    text-align: left;
    margin-left: 15px;
}

.card-info h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.card-info span {
    font-size: 12px;
    color: #ccc;
}

/* FOOTER */
footer {
    margin-top: 50px;
    font-size: 12px;
    color: #555;
}

/* ANİMASYONLAR */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}