/* =========================================================
   BALON PATLATMA - TASARIM
   ========================================================= */

.game-body {
    background-color: #f4f4f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.game-header {
    width: 100%;
    max-width: 600px;
    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: 800px;
    align-items: flex-start;
}

/* OYUN ÇERÇEVESİ */
#bubble-wrapper {
    background-color: #ffffff;
    padding: 15px;
    border: 4px solid #000;
    border-radius: 12px;
    box-shadow: 6px 6px 0px #000;
    display: flex;
    justify-content: center;
}

/* 10x10 IZGARA */
#bubble-board {
    display: grid;
    grid-template-columns: repeat(10, 45px);
    grid-template-rows: repeat(10, 45px);
    gap: 4px;
    background-color: #f1f2f6;
    padding: 8px;
    border-radius: 8px;
    border: 2px solid #ccc;
}

/* BALONLAR (BUBBLES) */
.bubble {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #000;
    cursor: pointer;
    box-shadow: 2px 2px 0px rgba(0,0,0,0.5);
    transition: transform 0.1s, top 0.3s ease-in-out;
    position: relative; /* Düşme animasyonu için */
}

.bubble:hover {
    transform: scale(1.1);
}

.bubble:active {
    transform: scale(0.9);
}

/* Balon Renkleri */
.color-red { background-color: #ff4757; }
.color-blue { background-color: #1e90ff; }
.color-green { background-color: #2ed573; }
.color-yellow { background-color: #eccc68; }
.color-purple { background-color: #9b59b6; }

/* Patlama Animasyonu */
@keyframes pop-anim {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.8; }
    100% { transform: scale(0); opacity: 0; }
}

.popping {
    animation: pop-anim 0.2s forwards;
    pointer-events: none; /* Patlarken tekrar tıklanamasın */
}

/* Boşluk (Patlamış Balon Yeri) */
.empty-cell {
    width: 45px;
    height: 45px;
    background-color: transparent;
}

/* Reklam Tasarımı */
.game-ad {
    margin-top: 0; background-color: #fff; border: 3px solid #000; box-shadow: 4px 4px 0px #000;
}