:root {
    --primary-glow: rgba(157, 80, 187, 0.4);
    --elite-purple: #9d50bb;
    --dark-bg: #050505;
}

.elite-vr-hero {
    background: var(--dark-bg);
    padding: 100px 5%;
    overflow: hidden;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.elite-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Image Side with Glow */
.elite-image-side {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    z-index: 2;
    filter: drop-shadow(0 0 30px var(--primary-glow));
    animation: floating 5s ease-in-out infinite;
}

.glow-sphere {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--elite-purple);
    filter: blur(120px);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.5;
}

/* Content Side */
.elite-content-side {
    flex: 1;
}

.top-label {
    color: var(--elite-purple);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
}

.main-title span {
    background: linear-gradient(to right, #9d50bb, #6e48aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    color: #a0a0a0;
    margin: 25px 0;
    max-width: 500px;
    line-height: 1.8;
}

/* Specs Row */
.stats-row {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item strong {
    display: block;
    font-size: 1.5rem;
}

.stat-item p {
    font-size: 12px;
    color: #666;
}

.ui-values-section{
    background-image: linear-gradient(160deg, #941c97 0%, #337b8b 80%);
}

.ui-value-section{
    background-image: linear-gradient(160deg, #337b8b 0%, #941c97 80%);
}

.mobile-bg{
    background-image: linear-gradient(160deg, #337b8b 0%, #941c97 80%);
}

.mobile-bg p{
    color: #bab5b5;
}


/* CTA */
.action-bar {
    display: flex;
    align-items: center;
    gap: 30px;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
}

.buy-now-btn {
    padding: 15px 40px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s;
}

.buy-now-btn:hover {
    background: var(--elite-purple);
    color: #fff;
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Animations */
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Responsive */
@media (max-width: 992px) {
    .elite-container {
        flex-direction: column;
        text-align: center;
    }
    .elite-content-side {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .stats-row { justify-content: center; }
}