body {
    background-color: #FAF9F6;
    color: #2C3E50;
    overflow-x: hidden;
}

.glass-nav {
    background: rgba(250, 249, 246, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(120, 191, 221, 0.2);
}

.luxury-card {
    background: #FFFFFF;
    border: 1px solid rgba(120, 191, 221, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-card:hover {
    border-color: rgba(120, 191, 221, 0.5);
    transform: translateY(-5px);
}

/* Abstract Subtle Glows */
.glow-bg {
    position: absolute;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.15;
    border-radius: 50%;
}

/* Hide scrollbar for clean look */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #FAF9F6; 
}
::-webkit-scrollbar-thumb {
    background: #78bfdd; 
    border-radius: 10px;
}

/* Image sepia/warm overlay */
.img-warm-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.6), rgba(120, 191, 221, 0.1));
    mix-blend-mode: multiply;
    transition: opacity 0.7s ease;
}

.luxury-card:hover .img-warm-overlay::after {
    opacity: 0.7;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #ba87ae 0%, #78bfdd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Pulse Animation */
@keyframes premiumPulse {
    0% { box-shadow: 0 0 0 0 rgba(120, 191, 221, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(120, 191, 221, 0); }
    100% { box-shadow: 0 0 0 0 rgba(120, 191, 221, 0); }
}
.btn-pulse {
    animation: premiumPulse 2.5s infinite cubic-bezier(0.66, 0, 0, 1);
}

/* Premium Shine Effect */
.btn-shine {
    position: relative;
    overflow: hidden;
}
.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: all 0.7s ease-in-out;
}
.btn-shine:hover::after {
    left: 140%;
}
