﻿.danger-strip {
    width: 100%;
    height: 60px;
    background: #ffcc00;
    position: absolute;
    top: 45%;
    left: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 95;
    border-bottom: 7px solid black;
    border-top: 7px solid black;
}

.danger-symbols {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 36px;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    user-select: none;
    letter-spacing: -8px;
    position: absolute;
    top: 0;
    left: 0;
}

.symbol {
    display: inline-block;
    line-height: 1;
}

    .symbol.inverted {
        transform: rotate(180deg);
    }

    .symbol.inverted {
        transform: rotate(180deg) translateX(-10px); /* 50px verso destra */
        transition: transform 0.5s ease; /* transizione fluida */
    }

.danger-text {
    text-align:center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.65);
    color: orange;
    padding: 8px 20px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #ffcc00;
    z-index: 10000;
}
