:root {
    --bg-color: #0b0f19;
    --card-bg: rgba(20, 25, 40, 0.9);
    --primary: #4cc9f0;
    --secondary: #f72585;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    -webkit-user-select: none; user-select: none;
    -webkit-touch-callout: none; -webkit-tap-highlight-color: transparent;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background-image: 
        linear-gradient(rgba(76, 201, 240, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(76, 201, 240, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

body::-webkit-scrollbar { display: none; }

.header {
    padding: 40px 20px 20px; text-align: left;
    position: sticky; top: 0;
    background: linear-gradient(180deg, var(--bg-color) 70%, transparent);
    z-index: 10;
}

.header h1 {
    font-size: 2.2rem; font-weight: 800; line-height: 1.1;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.header p { color: var(--text-muted); font-size: 0.9rem; margin-top: 5px; }

.game-list { display: flex; flex-direction: column; gap: 15px; padding: 0 20px 40px; }

.card {
    background: var(--card-bg); border-radius: 20px; padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex; align-items: center; gap: 15px;
    text-decoration: none; color: white; transition: transform 0.1s ease;
    position: relative;
}

.card.active-card:active {
    transform: scale(0.96); background: rgba(30, 38, 55, 0.9);
    border-color: var(--primary);
}

.icon-box {
    width: 70px; height: 70px; border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    display: flex; justify-content: center; align-items: center;
    font-size: 2.5rem; flex-shrink: 0;
}

.active-card .icon-box {
    box-shadow: 0 0 15px rgba(76, 201, 240, 0.3);
    border: 1px solid rgba(76, 201, 240, 0.5);
}

.card-content { flex-grow: 1; }
.card h2 { font-size: 1.2rem; margin-bottom: 4px; }
.card p {
    color: var(--text-muted); font-size: 0.8rem; line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}

.card.locked {
    opacity: 0.6; border-style: dashed; pointer-events: none;
    background: rgba(15, 20, 30, 0.6);
}

.locked .icon-box { filter: grayscale(80%); opacity: 0.7; }

.status-badge {
    font-size: 0.7rem; font-weight: 600; padding: 3px 8px;
    border-radius: 10px; display: inline-block; margin-top: 8px;
}

.badge-active { background: var(--primary); color: #000; }
.badge-locked { background: #475569; color: #fff; }


/* =========================================
   TELİF HAKKI (COPYRIGHT) FOOTER TASARIMI
   ========================================= */
.footer-copyright {
    text-align: center;
    padding: 10px 20px 40px 20px; /* Mobilde ekranın en altına yapışmasın diye alt boşluk bırakıldı */
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-copyright p {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.6;
}

.footer-copyright .sub-copy {
    font-size: 0.65rem;
    color: var(--secondary); /* Vurgulamak için sitenin pembe temasından ufak bir dokunuş */
    opacity: 0.8;
}

/* Sitedeki hiçbir yazının ve resmin fareyle sürüklenip seçilmesini / kopyalanmasını engeller */
body {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* =========================================
   YENİ OYUN ROZETİ VE ANİMASYONU
   ========================================= */
.new-badge {
    position: absolute;
    top: -10px;    /* Kartın sağ üst köşesinden hafifçe dışarı taşar */
    right: -10px;  /* Tasarıma harika bir 3D derinlik katar */
    background: linear-gradient(135deg, #f72585, #ff3366); /* Sitenin pembe temasına uygun */
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(247, 37, 133, 0.5);
    letter-spacing: 1px;
    z-index: 5;
    /* Nefes alma (kalp atışı) animasyonu */
    animation: badgePulse 1.5s infinite;
}

@keyframes badgePulse {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.08); }
    100% { transform: translateY(0) scale(1); }
}