* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #000; /* Fallback */
    overflow: hidden;
}

.landing-container {
    position: relative;
    height: 100vh;
    width: 100%;
    /* Replace 'background.jpg' with your actual stage background image */
    background: url('background.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Subtle dark overlay to ensure text readability */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
}

/* Coming Soon SVG - Positioned behind the main logo */
.coming-soon-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0.3; /* Adjust for the "ghosted" outline look */
    z-index: -1;
}

.svg-coming-soon {
    width: 100%;
    height: auto;
    max-width: 600px;
}

/* Brand Logo and Text */
.brand-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 100%;
    max-width: 300px; /* Adjust based on your SVG size */
    height: auto;
    margin-bottom: 20px;
}

.tagline {
    color: #ffffff;
    font-size: 0.98rem;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: none;
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logo {
        max-width: 200px;
    }
    .tagline {
        font-size: 0.9rem;
        padding: 0 20px;
    }
    .svg-coming-soon {
        max-width: 80%;
    }
}