:root {
    --primary: #ffffff;
    --bg: #0a0a0a;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.2);
}

/* GENEL AYARLAR VE İMLEÇ GİZLEME */
body, html {
    cursor: none; /* Windows imlecini kapat */
    margin: 0;
    padding: 0;
    background-color: var(--bg);
    color: var(--primary);
    font-family: 'Rajdhani', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Linkler ve butonlar için de standart imleci gizle */
a, button, .card, .btn {
    cursor: none !important;
}

/* --- BİZİM ÖZEL İMLECİMİZ --- */
.cursor-dot {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none; /* Tıklamayı engelleme */
    z-index: 99999;
    transition: width 0.2s, height 0.2s, background-color 0.2s, transform 0.1s;
    mix-blend-mode: exclusion;
}

/* Etkileşim halindeki imleç */
.cursor-active {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    border-color: transparent;
    mix-blend-mode: normal;
}

/* HEADER & LOGO */
header {
    padding: 40px 0;
    text-align: center;
    width: 100%;
}

header img {
    max-width: 300px; 
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

/* KONTEYNER */
.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 50px;
    max-width: 1200px;
}

/* KART YAPISI */
.card {
    position: relative;
    width: 300px;
    height: 450px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 15px;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.1s;
}

/* Kart Parlaması */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    border-radius: 15px;
    pointer-events: none;
}

.card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    transform: translateZ(50px); /* 3D derinlik */
}

/* GÖRSEL ALANI */
.game-visual {
    flex: 2;
    background-color: rgba(0,0,0,0.3);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(255,255,255,0.1);
}

.game-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BİLGİ ALANI */
.game-info {
    flex: 1;
    text-align: center;
}

.game-info h2 {
    margin: 0;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.game-info p {
    font-size: 0.9rem;
    color: #ccc;
}

/* BUTONLAR */
.btn {
    margin-top: 10px;
    display: inline-block;
    padding: 8px 20px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 20px;
    transition: 0.3s;
}

.btn:hover {
    background: #000;
    color: #fff;
    border: 1px solid #fff;
}