/* Grunddesign für den Slot-Screen */
.slot-body {
    background-color: #0d0d0d;
    color: white;
    font-family: 'Anton', sans-serif; /* Ein fetter, passender Font wäre gut, aber Segoe UI reicht */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

/* Der goldene Rahmen um das Spiel */
.slot-frame {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    border: 4px solid #b8860b;
    width: 100%;
    max-width: 900px; /* Breiter für 5 Rollen */
    text-align: center;
}

.slot-title {
    color: #ffd700;
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0 #000;
}

/* Rollen-Layout */
.slot-reels-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 gleich breite Spalten */
    gap: 10px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #333;
}

.reel {
    background: #fff;
    color: #000;
    font-size: 4rem;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.4);
    border: 3px solid #666;
}

/* Kontroll-Leiste (Wie im Bild) */
.controls-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.5);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #444;
    margin-bottom: 20px;
}

.control-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.control-group.wager {
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.control-group .label {
    font-size: 0.8rem;
    color: #aaa;
    font-weight: bold;
}

.control-group .value {
    font-size: 1.5rem;
    color: #ffd700;
    font-weight: bold;
}

/* SPIN Button groß */
.spin-btn-big {
    background: linear-gradient(to bottom, #ffd700, #b8860b);
    border: 4px solid #fff;
    border-radius: 50%; /* Rund wie im Bild */
    width: 90px;
    height: 90px;
    font-size: 1.2rem;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    transition: transform 0.2s;
}

.spin-btn-big:hover { transform: scale(1.05); }
.spin-btn-big:disabled { background: #555; border-color: #777; }

/* Profil-Bereich & Gratis-Button */
.user-profile { background: #2a2a2a; padding: 10px; border-radius: 8px; font-size: 0.9rem;}
.user-profile h3 { color: #ffd700; }

.btn-getcoins {
    background: #28a745; border: none; padding: 10px; border-radius: 5px; color: white; cursor: pointer; margin-top: 10px; font-size: 0.8rem; width: auto;
}
.paytable {
    background: rgba(0, 0, 0, 0.7);
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ffd700;
}

.paytable h3 {
    font-size: 1rem;
    color: #ffd700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.pay-grid {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    margin-bottom: 10px;
}

.pay-item {
    background: #333;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    border: 1px solid #444;
}

.pay-item strong {
    color: #28a745;
}

.symbol-list {
    font-size: 1.2rem;
    letter-spacing: 5px;
    color: #fff;
    margin-top: 5px;
}