.hypervision-slider-wrapper {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    background: #000;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.hypervision-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hypervision-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hypervision-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.hypervision-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    /* Darken bg slightly to make glass pop */
    filter: brightness(0.6); 
}

/* Glass Card */
.hypervision-glass-card {
    position: relative;
    z-index: 10;
    width: 80%;
    max-width: 800px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-align: center;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: transform 0.1s ease-out; /* Smooth tilt */
}

.hv-heading {
    font-size: 3rem;
    margin: 0 0 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    font-weight: 700;
    transform: translateZ(50px); /* Parallax depth */
    color: #fff;
}

.hv-subheading {
    font-size: 1.2rem;
    margin: 0 0 30px;
    opacity: 0.9;
    transform: translateZ(30px);
}

.hv-button {
    display: inline-block;
    padding: 12px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, box-shadow 0.3s;
    transform: translateZ(40px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hv-button:hover {
    transform: translateZ(50px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Nav */
.hv-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 20px;
}

.hv-prev, .hv-next {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.hv-prev:hover, .hv-next:hover {
    background: rgba(255,255,255,0.3);
}

/* Mobile */
@media (max-width: 768px) {
    .hv-heading { font-size: 2rem; }
    .hypervision-glass-card { width: 90%; padding: 20px; }
}
