/* =========================================================
   MAHJONG - OYUN TASARIMI
   ========================================================= */

.game-body {
    background-color: #1e6b3c; /* Klasik oyun yeşili */
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.game-header {
    width: 100%;
    max-width: 900px;
    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;
}

.game-layout {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    max-width: 1200px;
    align-items: flex-start;
}

/* OYUN ÇERÇEVESİ VE MASA */
#mahjong-wrapper {
    background-color: rgba(0, 0, 0, 0.2);
    border: 4px solid #000;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 6px 6px 0px #000;
    width: 800px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#mahjong-board {
    position: relative;
    width: 100%;
    height: 100%;
}

/* MAHJONG TAŞLARI (TILES) */
.mahjong-tile {
    position: absolute;
    width: 50px;
    height: 70px;
    background-color: #fff9e6; /* Fildişi kemik rengi */
    border: 2px solid #000;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    user-select: none;
    
    /* 3D Kalınlık Efekti */
    box-shadow: 
        -4px 4px 0px #d1ccc0, /* Taşın yan yüzeyi */
        -6px 6px 0px #000;    /* Taşın siyah gölgesi */
        
    transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.2s;
}

/* Kilitli/Alttaki taşlar biraz daha karanlık görünür (Seçilemez hissiyatı) */
.mahjong-tile.locked {
    filter: brightness(0.7);
    cursor: not-allowed;
}

/* Seçili Taş (Aktif) */
.mahjong-tile.selected {
    transform: translate(2px, -2px);
    background-color: #ffeaa7; /* Seçilince tatlı bir sarı olur */
    border-color: #e1b12c;
    box-shadow: 
        -4px 4px 0px #e1b12c, 
        -6px 6px 0px #000,
        0px 0px 15px rgba(225, 177, 44, 0.8); /* Etrafa parlama saçılır */
    z-index: 999 !important; /* Seçilen taş en üste çıksın */
}

/* Simgelere göre renk ayarlamaları */
.tile-bamboo { color: #27ae60; } /* Yeşil */
.tile-character { color: #c0392b; } /* Kırmızı */
.tile-circle { color: #2980b9; } /* Mavi */

/* REKLAM */
.game-ad {
    margin-top: 0; background-color: #fff; border: 3px solid #000; box-shadow: 4px 4px 0px #000;
}