/* ==================================================
   slots.css
   Nur slot-spezifische Styles
   Globale Basis kommt aus site.css
================================================== */

/* ==========================================
   Body-Anpassung für Slotseite
========================================== */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    padding: 20px 14px;
}

/* ==========================================
   Titel
========================================== */

h1 {
    margin: 0 0 22px 0;
    text-align: center;
    font-size: 1.9rem;
    font-weight: 600;
    color: #e7e1d6;
    letter-spacing: 0.01em;
}

/* ==========================================
   Slotbereich
========================================== */

.slot-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding: 0 10px;
    box-sizing: border-box;
}

/* ==========================================
   Einzelner Slot
========================================== */

.slot {
    width: 100px;
    height: 100px;
    background: #242424;
    border: 2px solid #4a4a4a;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 8px 18px rgba(0,0,0,0.22);
}

.slot-inner {
    position: absolute;
    width: 100%;
    text-align: center;
}

.slot-item {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-sizing: border-box;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
}

/* ==========================================
   Statistik
========================================== */

.slot-stat {
    margin-top: 18px;
    font-size: 0.95rem;
    color: #bdb6aa;
    text-align: center;
}

/* ==========================================
   Sprachbuttons
========================================== */

.language-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 0 0 22px;
}

.lang-button {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #5a5a5a;
    border-radius: 10px;
    background: #3a3a3a;
    color: #e5dfd3;
    text-decoration: none;
    line-height: 1;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        transform 0.12s ease;
}

.lang-button:hover {
    background: #454545;
    border-color: #707070;
}

.lang-button:active {
    transform: translateY(1px);
}

.lang-button.active-language {
    background: #4a4a4a;
    border-color: #787878;
}

/* ==========================================
   Button
========================================== */

button {
    margin-top: 28px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #5a5a5a;
    border-radius: 10px;
    background: #3a3a3a;
    color: #e5dfd3;
    cursor: pointer;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        transform 0.12s ease;
}

button:hover {
    background: #454545;
    border-color: #707070;
}

button:active {
    transform: translateY(1px);
}

/* ==========================================
   Footer
========================================== */

.footer-links {
    margin-top: 22px;
    text-align: center;
    font-size: 0.95rem;
}

/* ==========================================
   Tablet / Desktop
========================================== */

@media (min-width: 600px) {

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

    .slot-item {
        height: 140px;
        font-size: 15px;
    }
}

@media (min-width: 900px) {

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

    .slot-item {
        height: 160px;
        font-size: 16px;
    }
}

/* ==========================================
   Kleine Smartphones
========================================== */

@media (max-width: 360px) {

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

    .slot-item {
        height: 90px;
        font-size: 12px;
        padding: 6px;
    }

    .slot-container {
        gap: 8px;
    }
}