.tower-tapis {
    background: url('/jeux/stair-infernal/assets/background.png') center center no-repeat;
    max-width: 900px;
    padding: 25px;
    border-radius: 25px;
    border: 2px solid black;
    -moz-border-radius: 10px;
    margin: 15px auto;
    box-shadow: 0 0 5px #0ff;
}

/* Messages de résultat */
.slots-result-ok, .slots-result-no {
    margin: 15px auto 10px auto;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    display: none;
    font-weight: bold;
	max-width: 600px;
}
.slots-result-ok { border: dashed lightgreen; color: lightgreen; }
.slots-result-no { border: dashed lightcoral; color: lightcoral; }

#msg-porte {
	margin-top: 20px;
}

#multi {
    margin: 20px auto 20px auto;
    font-size: 20px;
    font-weight: bold;
}

#multi span {
    color: lightgreen;
}

.tower-hint {
    margin: 15px auto 15px auto;
    padding: 10px;
    background: #1F1F1F;
    border-radius: 8px;
    color: #1E90FF;
    font-weight: bold;
    text-align: center;
	max-width: fit-content;
}

.tower-info-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.tower-multipliers h3 {
    text-align: center;
    color: #1E90FF;
    margin-bottom: 20px;
}

.tower-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
}

.tower-card {
    background: #1F1F1F;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    color: #CCCCCC;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
}

.tower-card span {
    display: block;
    margin-top: 8px;
    font-size: 1.2em;
    color: #1E90FF;
}

.tower-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(30,144,255,0.4);
    border-color: #1E90FF;
}

.tower-max {
    background: linear-gradient(135deg, #1E90FF, #00BFFF);
    color: #fff;
}

.tower-max span {
    color: #fff;
}

/* Rules section */

.tower-rules {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rule-card {
    background: #111111;
    padding: 15px;
    border-radius: 10px;
    color: #DDDDDD;
    border-left: 4px solid #1E90FF;
}

.rule-card.danger {
    border-left: 4px solid #FF4C4C;
}

.rule-card.hardcore {
    border-left: 4px solid #FFD700;
}

@media(max-width:500px){
    #steps { display: inline-block !important; }
}