.wwe-show-container {
    background: #000;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Impact', 'Arial Black', sans-serif;
    border-top: 5px solid #E50914;
    border-bottom: 5px solid #E50914;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
}

.wwe-show-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    pointer-events: none;
}

.wwe-show-title,
.wwe-show-details {
    position: relative;
    z-index: 2;
}

.wwe-show-title {
    font-size: 4rem;
    font-weight: 900;
    margin: 0 0 20px;
    color: #E50914;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px #fff, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    transform: skew(-5deg);
}

.wwe-show-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .wwe-show-details {
        flex-direction: row;
        gap: 30px;
    }
}

.wwe-show-detail-item {
    font-size: 1.5rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border: 2px solid #fff;
    transform: skew(-5deg);
    display: inline-block;
    box-shadow: 4px 4px 0 rgba(229, 9, 20, 0.6);
}

.wwe-show-detail-item i {
    color: #E50914;
    margin-right: 8px;
}