.game-container {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.balance-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background: rgba(45, 45, 45, 0.9);
    padding: 1rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.balance {
    font-size: 1.2rem;
    color: #ffd700;
}

.bet-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.bet-label {
    color: #ffd700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.bet-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.bet-button {
    width: 40px;
    height: 40px;
}

.bet-amount {
    min-width: 80px;
    text-align: center;
}

.bet-limits {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Animation for bet changes */
@keyframes betChange {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.bet-amount.changing {
    animation: betChange 0.3s ease;
    color: #ffd700;
}

.slot-machine {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 0 20px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(255, 215, 0, 0.1);
}

.slot-window {
    display: flex;
    gap: 0.5rem;
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.reel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: #ffffff;
    padding: 1rem;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.symbol {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    height: 80px;
    min-height: 80px;
    width: 80px;
    min-width: 80px;
    margin: 0 auto;
    transition: all 0.3s ease;
    background: #ffffff;
}

.spin-button {
    width: 100%;
    padding: 1.2rem;
    margin-top: 2rem;
    background: linear-gradient(145deg, #ffd700, #ffed4a);
    color: #1a1a1a;
    border: none;
    border-radius: 10px;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.spin-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.3);
}

.spin-button:active:not(:disabled) {
    transform: translateY(0);
}

.spin-button:disabled {
    background: linear-gradient(145deg, #666, #444);
    cursor: not-allowed;
    opacity: 0.5;
}

.spin-text {
    display: inline-block;
    transition: transform 0.3s ease;
}

.spin-button:hover:not(:disabled) .spin-text {
    transform: scale(1.1);
}

.win-message {
    font-size: 1.5rem;
    color: #ffd700;
    text-align: center;
    min-height: 2rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes spin {
    0% { transform: translateY(0); }
    100% { transform: translateY(-400px); }
}

.spinning {
    animation: spin 0.5s linear infinite;
}

@media (max-width: 768px) {
    .slot-window {
        padding: 1rem;
        max-width: 400px;
    }

    .symbol {
        height: 60px;
        min-height: 60px;
        width: 60px;
        min-width: 60px;
        font-size: 2.2rem;
    }

    .reel {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .slot-window {
        padding: 0.5rem;
        gap: 0.25rem;
    }

    .symbol {
        height: 50px;
        min-height: 50px;
        width: 50px;
        min-width: 50px;
        font-size: 1.8rem;
    }

    .reel {
        padding: 0.25rem;
    }
}

/* Add these styles for sound controls */
.sound-controls {
    width: 200px;
    flex-shrink: 0;
}

.sound-control-panel {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sound-button {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 1rem;
    color: #ffd700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.sound-button:hover {
    background: rgba(255, 215, 0, 0.2);
}

.sound-button .icon {
    font-size: 1.5rem;
}

.sound-button .status {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.sound-button.muted {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
}

.sound-button.muted .icon {
    text-decoration: line-through;
}

/* Add winning line highlights */
.symbol.winning {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    animation: pulse 1s infinite;
}

/* Winning lines display */
.winning-lines {
    background: rgba(45, 45, 45, 0.9);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.winning-lines h3 {
    color: #ffd700;
    text-align: center;
    margin-bottom: 1rem;
}

.lines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    font-size: 2rem;
    text-align: center;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Logo styling */
.logo-container {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 2rem;
}

.site-logo {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.5),
        0 0 20px rgba(0, 0, 0, 0.8);
    letter-spacing: 4px;
}

.site-slogan {
    color: #ffe666;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Game controls styling */
.game-controls {
    width: 280px;
    flex-shrink: 0;
}

.control-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.balance-box, .bet-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.label {
    color: #999;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.amount {
    color: #ffd700;
    font-size: 2rem;
    font-weight: bold;
    margin: 0.5rem 0;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.currency {
    color: #999;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.bet-increment-controls {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}

.bet-increment {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 5px;
    padding: 0.5rem;
    color: #ffd700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.bet-increment:hover:not(.disabled) {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.bet-increment:active:not(.disabled) {
    transform: translateY(0);
}

.bet-increment.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(100, 100, 100, 0.1);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .game-container {
        flex-direction: column;
        align-items: center;
    }

    .game-controls {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 1200px) {
    .game-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .sound-controls {
        width: 100%;
        max-width: 600px;
        margin-top: 2rem;
    }

    .sound-control-panel {
        flex-direction: row;
        justify-content: center;
    }
} 