.lobby-header {
    text-align: center;
    padding: 50px 5%;
    background: #111;
}

.filter-controls {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.filter-controls input, .filter-controls select {
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #222;
    color: white;
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
    padding: 40px 5%;
    max-width: 1400px;
    margin: auto;
}

.slot-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid #333;
    text-decoration: none;
    color: white;
}

.slot-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.slot-thumb {
    height: 150px;
    background: #333; /* Replace with game images later */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #555;
}

.slot-details { padding: 15px; }

.slot-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-top: 10px;
    color: #888;
}

.rtp-tag { color: var(--primary); font-weight: bold; }