/* =========================================================
   SOLITAIRE - ANİMASYONLU VE GERÇEKÇİ MASA TASARIMI
   ========================================================= */

.game-body {
    background-color: #1e6b3c;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    overflow-x: hidden;
}

.game-header {
    width: 100%;
    max-width: 1000px;
    margin-top: 10px;
    background-color: #ffffff;
    border: 3px solid #000;
    border-radius: 8px;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 4px 4px 0px #000;
    z-index: 10;
}

/* REKLAM VE OYUN DÜZENİ */
.game-layout {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    max-width: 1200px;
    align-items: flex-start;
}

#solitaire-board {
    width: 800px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.top-section {
    display: flex;
    justify-content: space-between;
}

.left-top, .right-top {
    display: flex;
    gap: 15px;
}

.bottom-section {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

/* --- GERÇEKÇİ KART YUVALARI (BOŞLUKLAR) --- */
.card-slot {
    width: 100px;
    height: 140px;
    border-radius: 8px;
    position: relative;
    background-color: rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(0, 0, 0, 0.3);
    box-shadow: inset 3px 3px 6px rgba(0,0,0,0.4);
}

.stock-slot::after {
    content: '↺';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: rgba(0,0,0,0.2);
}

.tableau-col {
    width: 100px;
    min-height: 140px;
    position: relative;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

/* --- KART TASARIMI (ZIPLAMA KALDIRILDI) --- */
.playing-card {
    width: 100px;
    height: 140px;
    background-color: #1e272e;
    background-image: repeating-linear-gradient(45deg, #2f3640 25%, transparent 25%, transparent 75%, #2f3640 75%, #2f3640), 
                      repeating-linear-gradient(45deg, #2f3640 25%, #1e272e 25%, #1e272e 75%, #2f3640 75%, #2f3640);
    background-position: 0 0, 10px 10px;
    background-size: 20px 20px;
    border: 2px solid #000;
    border-radius: 8px;
    position: absolute;
    cursor: grab;
    user-select: none;
    color: transparent;
    transition: transform 0.1s ease;
}

.playing-card:hover {
    transform: translateY(-2px);
}

.playing-card.face-up {
    background-image: none;
    background-color: #fff;
    color: black;
    display: block; 
}

.card-red { color: #e74c3c !important; }
.card-black { color: #2c3e50 !important; }

.card-corner {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.1;
}

.top-left { top: 6px; left: 8px; }
.bottom-right { bottom: 6px; right: 8px; transform: rotate(180deg); }

.card-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 46px;
}

/* OYUN İÇİ REKLAM TASARIMI */
.game-ad {
    margin-top: 0;
    background-color: #fff;
    border: 3px solid #000;
    box-shadow: 4px 4px 0px #000;
}

.bottom-game-ad {
    width: 728px;
    margin-top: 20px;
    background-color: #fff;
    border: 3px solid #000;
    box-shadow: 4px 4px 0px #000;
}