#header,
header,
.header {
    z-index: 10000 !important;
}

footer {
    z-index: 10000 !important;
}

.content-wrapper {
    position: relative;
    min-height: 100vh;
}

.coming-soon-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    pointer-events: all;
}

.coming-soon-text {
    color: white;
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.coming-soon-subtext {
    color: #ffffff;
    font-size: 1.5rem;
    text-align: center;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.main-content {
    position: relative;
    z-index: 1;
}
