.fortune-tiger-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 25px;
    background: linear-gradient(#1a0f00, #3d1f00);
    border: 8px solid #d4af37;
    border-radius: 15px;
    color: #fff;
    text-align: center;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.slot-machine {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 25px 0;
    padding: 20px;
    background: #000;
    border: 8px solid #d4af37;
    border-radius: 12px;
}

.reel {
    width: 110px;
    height: 330px; /* 3 linhas */
    background: #111;
    border: 4px solid #ffd700;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.reel-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.symbol {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    border-bottom: 2px solid #333;
}

.symbol:last-child {
    border-bottom: none;
}

.controls { margin: 20px 0; }

.spin-btn {
    padding: 16px 50px;
    font-size: 22px;
    font-weight: bold;
    background: linear-gradient(#ff4500, #cc0000);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin: 10px;
}

.spin-btn:disabled {
    background: #555;
}

.result {
    margin: 20px 0;
    font-size: 26px;
    min-height: 40px;
    font-weight: bold;
}

.balance, .current-bet {
    font-size: 20px;
    font-weight: bold;
    color: #ffd700;
}