/* Base Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0f0f0f;
    color: #fff;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #1a1a1a;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.site-name {
    font-size: 1.5rem;
    color: #ff9e0f;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-link {
    color: #ff9e0f;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff5f5f;
}

.balance-display {
    color: #fff;
    font-size: 1rem;
}

/* Game Area Layout */
.game-area {
    padding-top: 100px;
    display: flex;
    justify-content: center;
}

.game-wrapper {
    display: flex;
    gap: 30px;
}

/* Slot Machine */
/* Removed the full transparent overlay from the slot-machine container */
.slot-machine {
    padding: 30px;
    /* Removed background: rgba(0, 0, 0, 0.8); */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    position: relative;
    width: 500px;
    height: 500px;
}

.background-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.background {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slots-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Slot Box: Only the slot boxes have a dark background */
.slot-box {
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 8px;
}

.slot {
    width: 80px;
    height: 80px;
}

/* Controls (Bet and Spin) */
.controls-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 20px;
}

/* Winnings Display Section */
.winnings-display {
    padding: 20px;
    background: #1a1a1a;
    border-radius: 10px;
    width: 300px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #0d0d0d;
    color: #ccc;
}
