/* Hero Wrapper Layout */
.hero-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* The Background Image with subtle zoom/blur */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(2px) brightness(0.7); /* Controlled blur and darkness */
    z-index: -2;
    transform: scale(1.05); /* Prevents white edges from blur */
}

/* Gradient Overlay for extra depth */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(10, 10, 10, 0.9) 0%, 
        rgba(10, 10, 10, 0.4) 100%
    );
    z-index: -1;
}

/* The Frosted Glass Content Card */
.hero-content-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px); /* This creates the modern glass effect */
    -webkit-backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Custom Text Accents */
.text-accent {
    color: #ff0055; /* The Pink from the screenshot */
    text-shadow: 0 0 15px rgba(255, 0, 85, 0.4);
}

.fw-black { font-weight: 900; }

.badge {
    background: rgba(255, 0, 85, 0.1);
    color: #ff0055;
    border: 1px solid #ff0055;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 15px;
}

/* Simple Animation */
.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}