body {
    background-color: #0a0a0f;
    color: #e8e4dc;
    overflow-x: hidden;
}

.glass-card {
    background: rgba(18, 18, 30, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(30, 30, 46, 0.8);
}
.glass-card:hover {
    border-color: rgba(201, 169, 110, 0.3);
    box-shadow: 0 0 40px rgba(201, 169, 110, 0.1);
}

.gradient-text {
    background: linear-gradient(135deg, #c9a96e, #e0c38c, #d4a5a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-overlay {
    background: linear-gradient(180deg, rgba(10,10,15,0.3) 0%, rgba(10,10,15,0.8) 50%, rgba(10,10,15,1) 100%);
}

.image-reveal { position: relative; overflow: hidden; }
.image-reveal::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,10,15,0.9) 100%);
}

.nav-blur {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
}

.btn-primary {
    background: linear-gradient(135deg, #c9a96e, #a0844e);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(201, 169, 110, 0.4);
}

.btn-outline {
    border: 1px solid rgba(201, 169, 110, 0.4);
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background: rgba(201, 169, 110, 0.1);
    border-color: #c9a96e;
}

.card-hover { transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.card-hover:hover { transform: translateY(-8px) scale(1.02); }

.model-card { position: relative; overflow: hidden; border-radius: 1rem; }
.model-card img { transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.model-card:hover img { transform: scale(1.1); }

.model-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10,10,15,0.95) 100%);
    opacity: 0; transition: opacity 0.4s ease;
    display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
}
.model-card:hover .model-overlay { opacity: 1; }

.stats-number {
    background: linear-gradient(135deg, #c9a96e, #e0c38c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.review-star { color: #c9a96e; }
.section-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent); }

.testimonial-card {
    background: linear-gradient(145deg, rgba(18,18,30,0.9), rgba(15,15,26,0.9));
}

.pricing-popular { position: relative; }
.pricing-popular::before {
    content: ''; position: absolute; inset: -2px; border-radius: 1.5rem;
    background: linear-gradient(135deg, #c9a96e, #d4a5a5, #c9a96e);
    z-index: -1; opacity: 0.6;
}

.marquee-container { overflow: hidden; white-space: nowrap; }
.marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.floating-badge { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

@keyframes fadeUp { 0% { opacity: 0; transform: translateY(40px); } 100% { opacity: 1; transform: translateY(0); } }
.animate-fade-up { animation: fadeUp 0.8s ease-out forwards; }
@keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } }
.animate-fade-in { animation: fadeIn 1s ease-out forwards; }

/* Content Protection */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-user-select: none;
}

body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection in specific areas */
p, h1, h2, h3, h4, h5, h6, span, li, a, label, input, textarea, select, button {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}
