/* ===== LDX9Q HERO (IZOLE CSS) ===== */

.ldx9q-hero-wrap {
    width: 1420px;
    max-width: 100%;
    height: 848px;
    display: flex;
    /*background: radial-gradient(circle at top, #0e0e0e 0%, #000 70%);*/
    overflow: hidden;
    margin: auto;
    isolation: isolate;
}

.ldx9q-hero-video {
    width: 30%;
    height: 100%;
}

.ldx9q-hero-video video {
    width: 100%;
    height: 100%;
    /*object-fit: cover;*/
  	margin-left: 30px;
}

/* CONTENT */
.ldx9q-hero-content {
    width: 70%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    justify-content: center;
    align-items: center;
}

/* NEON TITLE */
.ldx9q-hero-title {
font-size: 42px;
    font-weight: 800;
    color: #bb03fa;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow: 0 0 6px #bb03fa00, 0 0 14px rgb(187 3 250),
}

/* NEON TEXT */
.ldx9q-hero-text {
    font-size: 20px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow:
        0 0 6px rgba(255,0,255,.6),
        0 0 14px rgba(180,0,180,.7);
}

/* NEON BUTTON */
.ldx9q-hero-btn {
    align-self: center;
    padding: 14px 32px;
    border-radius: 40px;
    background: #bb03fa;
    color: #fbfbfb;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 12px #bb03fa, 0 0 28px rgba(0, 255, 242, .9);
    transition: transform .25s ease, box-shadow .25s ease;
}




/* RESPONSIVE (SADE VE GÜVENLİ) */
@media (max-width: 900px) {
    .ldx9q-hero-wrap {
        flex-direction: column;
        height: auto;
    }
    .ldx9q-hero-video,
    .ldx9q-hero-content {
        width: 100%;
        height: 280px;
    }
}