/* ================================
   Game Screen
   ================================ */

#game-screen {
    background: transparent;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
}

.game-area {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px;
    padding-top: 60px;
}

.back-btn {
    font-size: 48px;
}

.hint-btn {
    /* Styles handled by global header now */
    background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
    color: #2c3e50;
    font-size: 28px;
    border: 3px solid #d68910;
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.4);
    transition: all 0.2s ease;
}

.hint-btn:hover {
    box-shadow: 0 8px 25px rgba(241, 196, 15, 0.6);
    background: linear-gradient(135deg, #f4d03f 0%, #f1c40f 100%);
}

.hint-btn:active {
    transform: scale(0.95);
    box-shadow: 0 2px 10px rgba(241, 196, 15, 0.4);
}

.coin-container {
    /* Adjust coins if needed, maybe simpler */
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    background: #2c3e50;
    padding: 5px 15px;
    border-radius: 20px;
    color: #f1c40f;
    font-weight: bold;
    font-size: 80px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.coin-icon {
    width: 80px;
    height: 80px;
    margin-right: 10px;
}

.level-name {
    font-size: 60px;
    font-weight: bold;
    color: #000000;
    margin: 5px 0 15px 0;
    text-align: center;
    width: 90%;
    z-index: 10;
    font-family: 'Segoe UI Black', sans-serif;
    line-height: 1.2;
}

#puzzle-board {
    margin: auto;
}