/* ==================== */
/* LUXURY ANIMATED BANNER */
/* ==================== */
.nsx-banner {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: radial-gradient(ellipse at bottom, #0a0a12 0%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

/* Background Elements */
.nsx-bg-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><circle cx="10%" cy="15%" r="1" fill="rgba(168,123,255,0.2)"/><circle cx="25%" cy="30%" r="1" fill="rgba(168,123,255,0.2)"/><circle cx="85%" cy="25%" r="1" fill="rgba(168,123,255,0.2)"/><circle cx="70%" cy="40%" r="1" fill="rgba(168,123,255,0.2)"/><circle cx="15%" cy="70%" r="1" fill="rgba(168,123,255,0.2)"/><circle cx="40%" cy="85%" r="1" fill="rgba(168,123,255,0.2)"/><circle cx="90%" cy="75%" r="1" fill="rgba(168,123,255,0.2)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.nsx-bg-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(138,43,226,0.1) 0%, rgba(138,43,226,0) 70%);
    animation: nsx-glow-pulse 8s infinite alternate;
    z-index: 2;
}

/* Bottle Container with Advanced Effects */
.nsx-bottle-container {
    position: relative;
    width: 280px;
    height: 500px;
    margin-right: 50px;
    z-index: 10;
    perspective: 1000px;
}

.nsx-bottle {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 0 20px rgba(168,123,255,0.3));
    transform-style: preserve-3d;
}

.nsx-bottle-highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    z-index: 4;
    border-radius: 5px;
    pointer-events: none;
}

.nsx-liquid-fill {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    background: linear-gradient(to top, rgba(168,123,255,0.3) 0%, rgba(138,43,226,0.1) 100%);
    border-radius: 0 0 5px 5px;
    z-index: 2;
    clip-path: polygon(0% 100%, 100% 100%, 100% 20%, 50% 0%, 0% 20%);
    animation: nsx-liquid-move 12s infinite ease-in-out;
}

/* Scent Emission Effect */
.nsx-scent-emission {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.nsx-scent-particle {
    position: absolute;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0;
}

/* Text Content Styling */
.nsx-text-content {
    position: relative;
    z-index: 10;
    max-width: 500px;
}

.nsx-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: transparent;
    background: linear-gradient(90deg, #ffffff 0%, #d3b7ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    overflow: hidden;
}

.nsx-title-line {
    display: block;
}

.nsx-subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
}

/* CTA Button with Hover Effects */
.nsx-button-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 30px;
}

.nsx-cta-button {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    background: linear-gradient(135deg, rgba(168,123,255,0.2) 0%, rgba(138,43,226,0.2) 100%);
    color: white;
    border: 1px solid rgba(168,123,255,0.5);
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
}

.nsx-cta-button:hover {
    background: linear-gradient(135deg, rgba(168,123,255,0.3) 0%, rgba(138,43,226,0.3) 100%);
    border-color: rgba(168,123,255,0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(138,43,226,0.3);
}

.nsx-arrow-icon {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: transform 0.3s ease;
}

.nsx-cta-button:hover .nsx-arrow-icon {
    transform: translateX(5px);
}

/* Animations */
@keyframes nsx-glow-pulse {
    0% { opacity: 0.3; transform: scale(0.95); }
    100% { opacity: 0.6; transform: scale(1.05); }
}

@keyframes nsx-liquid-move {
    0%, 100% { clip-path: polygon(0% 100%, 100% 100%, 100% 20%, 50% 0%, 0% 20%); }
    50% { clip-path: polygon(0% 100%, 100% 100%, 100% 15%, 50% 5%, 0% 15%); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .nsx-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .nsx-bottle-container {
        margin-right: 0;
        margin-bottom: 40px;
        width: 220px;
        height: 400px;
    }
    
    .nsx-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 576px) {
    .nsx-title {
        font-size: 2.5rem;
    }
    
    .nsx-subtitle {
        font-size: 1rem;
    }
    
    .nsx-cta-button {
        padding: 15px 30px;
    }
}