/* --- Basic Reset & Base Styling --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #ffffff;
    background-color: #0f172a; /* Fallback dark color */
}

/* --- Hero Background & Layout --- */
.hero-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    /* Replace 'background.jpg' with your image filename */
    background: url('img_home.png') no-repeat center center/cover; 
}

/* Dark semi-transparent overlay to keep text high contrast */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75); 
    z-index: 1;
}

/* --- Content Box Styling --- */
.content-card {
    position: relative;
    z-index: 2;
    max-width: 650px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px); /* Glassmorphism effect */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Badge Header */
.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    color: #ffffff;
}

.tagline {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.divider {
    height: 1px;
    width: 80px;
    background: #38bdf8;
    margin: 0 auto 30px auto;
}

/* Coming Soon Highlight Block */
.coming-soon-box {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #38bdf8;
    text-align: left;
    margin-bottom: 30px;
}

.coming-soon-box h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 8px;
}

.coming-soon-box p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.5;
}

/* Footer Note */
.footer-note p {
    font-size: 0.85rem;
    color: #64748b;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .content-card {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 0.95rem;
    }
}