.mirage-hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mirage-hero-section iframe {
    position: absolute;
    width: 180%;
    height: 180%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: brightness(55%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 30, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 750px;
    color: #fff;
    animation: fadeUp 1.2s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 26px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-line3 {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: .9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-btn {
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    transition: .3s;
}

.hero-btn.primary {
    background: #E63946;
}

.hero-btn.primary:hover {
    background: #c02532;
}

.hero-btn.secondary {
    background: rgba(255,255,255,0.25);
}

.hero-btn.secondary:hover {
    background: rgba(255,255,255,0.35);
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
