/**
 * LINEA EROTICA 67 - SENSUAL DARK PASSION
 * Design Erotico Professionale con Animazioni
 * Tema: Dark + Rosso + Viola + Sensuale
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    /* Colori Sensuali */
    --crimson: #dc143c;
    --crimson-dark: #a01030;
    --crimson-glow: rgba(220, 20, 60, 0.6);
    --purple: #8b008b;
    --purple-dark: #4a0050;
    --purple-light: #9932cc;
    --violet: #7b2d8e;
    --magenta: #ff1493;
    --hot-pink: #ff69b4;
    --gold: #d4af37;
    --gold-light: #f0d060;

    /* Sfondi Dark */
    --bg-dark: #080810;
    --bg-darker: #040408;
    --bg-card: #0f0f18;
    --bg-card-hover: #18182a;

    /* Gradienti Sensuali */
    --gradient-passion: linear-gradient(135deg, var(--crimson) 0%, var(--purple) 100%);
    --gradient-sensual: linear-gradient(135deg, var(--crimson) 0%, var(--magenta) 50%, var(--purple) 100%);
    --gradient-hot: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    --gradient-violet: linear-gradient(135deg, var(--purple) 0%, var(--violet) 100%);
    --gradient-glow: radial-gradient(ellipse, var(--crimson-glow) 0%, transparent 70%);

    /* Testi */
    --text-primary: #ffffff;
    --text-secondary: #c0c0d0;
    --text-muted: #707080;

    /* Effetti */
    --glow-red: 0 0 40px var(--crimson-glow);
    --glow-purple: 0 0 40px rgba(139, 0, 139, 0.5);
    --shadow-card: 0 15px 50px rgba(0, 0, 0, 0.6);
    --shadow-hover: 0 25px 80px rgba(220, 20, 60, 0.35);

    /* Layout */
    --radius: 20px;
    --radius-lg: 30px;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

/* === RESET === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

/* === SFONDO ANIMATO SENSUALE === */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(220, 20, 60, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(139, 0, 139, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(123, 45, 142, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
    animation: bgBreath 10s ease-in-out infinite;
}

@keyframes bgBreath {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* Particelle fluttuanti */
body::after {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(220, 20, 60, 0.3), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(139, 0, 139, 0.3), transparent),
        radial-gradient(2px 2px at 50% 20%, rgba(255, 20, 147, 0.2), transparent),
        radial-gradient(2px 2px at 80% 50%, rgba(220, 20, 60, 0.3), transparent),
        radial-gradient(2px 2px at 70% 80%, rgba(139, 0, 139, 0.2), transparent);
    animation: sparkle 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes sparkle {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100vh); }
}

/* === TIPOGRAFIA === */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.text-crimson {
    color: var(--crimson);
    text-shadow: 0 0 30px var(--crimson-glow);
}

.text-gold {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* === VERIFICA ETA - SENSUALE === */
.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 4, 8, 0.98);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.age-modal {
    background:
        linear-gradient(145deg, rgba(15, 15, 24, 0.95) 0%, rgba(139, 0, 139, 0.1) 100%);
    border: 2px solid transparent;
    border-image: var(--gradient-passion) 1;
    border-radius: var(--radius-lg);
    padding: 60px 50px;
    max-width: 520px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: modalFloat 3s ease-in-out infinite, fadeInUp 0.8s ease;
}

.age-modal::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-sensual);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.5;
    filter: blur(20px);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

@keyframes modalFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.age-modal h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--gradient-sensual);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { filter: drop-shadow(0 0 10px var(--crimson-glow)); }
    50% { filter: drop-shadow(0 0 25px var(--crimson-glow)); }
}

.age-modal p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.age-modal .warning {
    background: linear-gradient(90deg, rgba(220, 20, 60, 0.2), rgba(139, 0, 139, 0.2));
    border: 1px solid var(--crimson);
    border-radius: var(--radius);
    padding: 18px;
    margin: 25px 0;
    color: var(--hot-pink);
    font-weight: 600;
    font-size: 1.05rem;
}

.age-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.btn-age {
    flex: 1;
    padding: 20px 35px;
    border: none;
    border-radius: var(--radius);
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
}

.btn-age::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.btn-age:hover::before {
    transform: translateX(100%);
}

.btn-age.yes {
    background: var(--gradient-sensual);
    color: white;
    box-shadow: var(--glow-red);
}

.btn-age.yes:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 50px var(--crimson-glow);
}

.btn-age.no {
    background: transparent;
    border: 2px solid var(--text-muted);
    color: var(--text-muted);
}

.btn-age.no:hover {
    border-color: var(--text-secondary);
    color: var(--text-secondary);
}

/* === HEADER ELEGANTE === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 25px 0;
    background: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(8, 8, 16, 0.95);
    backdrop-filter: blur(25px);
    padding: 18px 0;
    border-bottom: 1px solid rgba(220, 20, 60, 0.3);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-sensual);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px var(--crimson-glow));
}

.nav {
    display: flex;
    align-items: center;
    gap: 45px;
}

.nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.5px;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-sensual);
    transition: width 0.4s ease;
}

.nav a:hover,
.nav a.active {
    color: var(--text-primary);
    text-shadow: 0 0 15px var(--crimson-glow);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-sensual) !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    color: white !important;
    font-weight: 600 !important;
    box-shadow: var(--glow-red);
    animation: ctaHeartbeat 2s ease-in-out infinite;
    border: none !important;
}

@keyframes ctaHeartbeat {
    0%, 100% { transform: scale(1); box-shadow: var(--glow-red); }
    50% { transform: scale(1.05); box-shadow: 0 0 60px var(--crimson-glow); }
}

.nav-cta::after {
    display: none !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: 2px solid var(--crimson);
    color: var(--crimson);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.mobile-toggle:hover {
    background: var(--crimson);
    color: white;
}

/* === HERO SENSUALE === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 140px 40px 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 25%, rgba(220, 20, 60, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 75%, rgba(139, 0, 139, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 90%, rgba(123, 45, 142, 0.25) 0%, transparent 50%);
    animation: heroBreath 12s ease-in-out infinite;
}

@keyframes heroBreath {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.15) rotate(3deg); opacity: 0.8; }
}

/* Effetto onde sensuali */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    z-index: 1;
}

/* Cerchi fluttuanti */
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--gradient-passion);
    filter: blur(150px);
    opacity: 0.15;
    top: 10%;
    right: -10%;
    animation: floatCircle 15s ease-in-out infinite;
}

@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-50px, 50px) scale(1.1); }
    66% { transform: translate(30px, -30px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
}

.overline {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
    position: relative;
    padding: 0 30px;
    animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.overline::before,
.overline::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.overline::before { right: 100%; background: linear-gradient(90deg, transparent, var(--gold)); }
.overline::after { left: 100%; }

.hero h1 {
    font-size: clamp(3.5rem, 10vw, 6rem);
    margin-bottom: 30px;
    animation: titleReveal 1.2s ease forwards;
    letter-spacing: -2px;
}

@keyframes titleReveal {
    0% { opacity: 0; transform: translateY(50px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-numbers {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.hero-number {
    background: linear-gradient(145deg, rgba(15, 15, 24, 0.9), rgba(220, 20, 60, 0.15));
    border: 2px solid rgba(220, 20, 60, 0.4);
    border-radius: var(--radius-lg);
    padding: 40px 50px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.hero-number::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-sensual);
    opacity: 0;
    transition: var(--transition);
}

.hero-number::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(220, 20, 60, 0.3), transparent);
    animation: borderRotate 6s linear infinite;
    opacity: 0;
    transition: var(--transition);
}

@keyframes borderRotate {
    100% { transform: rotate(360deg); }
}

.hero-number:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--crimson);
    box-shadow: var(--shadow-hover);
}

.hero-number:hover::before {
    opacity: 0.15;
}

.hero-number:hover::after {
    opacity: 1;
}

.hero-number .label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.hero-number .number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.hero-number:hover .number {
    color: var(--hot-pink);
    text-shadow: 0 0 30px var(--crimson-glow);
}

.hero-number .price {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 25px;
    animation: fadeInUp 1s ease 0.8s forwards;
    opacity: 0;
}

/* === BOTTONI SENSUALI === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 42px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-sensual);
    color: white;
    box-shadow: var(--glow-red);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px var(--crimson-glow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--crimson);
    color: var(--crimson);
}

.btn-outline:hover {
    background: var(--gradient-passion);
    color: white;
    border-color: transparent;
    box-shadow: var(--glow-red);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-dark);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-lg {
    padding: 22px 52px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 25px 60px;
    font-size: 1.2rem;
}

.btn-sm {
    padding: 12px 28px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.w-100 { width: 100%; }

/* === SEZIONI === */
.section {
    padding: 120px 0;
    position: relative;
}

.section-alt {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(139, 0, 139, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, rgba(220, 20, 60, 0.02) 0%, transparent 100%);
}

.section-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 20px;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* === CARD PROFILI SENSUALI === */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
}

.profiles-grid-lg {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.profile-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid rgba(220, 20, 60, 0.15);
    transition: var(--transition);
    display: block;
    cursor: pointer;
}

.profile-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-sensual);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    transition: var(--transition);
}

.profile-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--crimson);
}

.profile-card:hover::before {
    opacity: 0.5;
}

.profile-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: brightness(0.95);
}

.profile-card:hover .profile-image img {
    transform: scale(1.15);
    filter: brightness(1);
}

/* Overlay gradiente sensuale */
.profile-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 8, 16, 1) 0%,
        rgba(8, 8, 16, 0.7) 30%,
        rgba(220, 20, 60, 0.1) 60%,
        transparent 100%
    );
    transition: var(--transition);
}

.profile-card:hover .profile-image::after {
    background: linear-gradient(
        to top,
        rgba(8, 8, 16, 0.95) 0%,
        rgba(139, 0, 139, 0.4) 40%,
        rgba(220, 20, 60, 0.2) 70%,
        transparent 100%
    );
}

.profile-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.profile-card:hover .profile-overlay {
    opacity: 1;
}

.profile-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 3;
}

.profile-info h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.profile-card:hover .profile-info h3 {
    color: var(--hot-pink);
    text-shadow: 0 0 20px var(--crimson-glow);
}

.profile-age {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
}

.profile-dispo {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 8px;
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.tag {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.3), rgba(139, 0, 139, 0.3));
    border: 1px solid rgba(220, 20, 60, 0.5);
    color: var(--hot-pink);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.profile-card:hover .tag {
    background: var(--gradient-passion);
    color: white;
    border-color: transparent;
    box-shadow: 0 3px 15px var(--crimson-glow);
}

/* === FEATURES SENSUALI === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.feature-card {
    background: linear-gradient(145deg, var(--bg-card), rgba(139, 0, 139, 0.08));
    border: 1px solid rgba(220, 20, 60, 0.1);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-sensual);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-passion);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: rgba(220, 20, 60, 0.4);
    box-shadow: var(--shadow-hover);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 0.08;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
    position: relative;
    z-index: 1;
    animation: iconPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px var(--crimson-glow));
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* === PRICING === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(220, 20, 60, 0.15);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid var(--crimson);
    box-shadow: var(--glow-red);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-sensual);
}

.pricing-badge {
    position: absolute;
    top: 25px;
    right: -35px;
    background: var(--gradient-sensual);
    color: white;
    padding: 10px 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: var(--crimson);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px var(--crimson-glow));
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.pricing-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-sensual);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
}

.pricing-features li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    position: relative;
    padding-left: 35px;
}

.pricing-features li::before {
    content: '♥';
    position: absolute;
    left: 0;
    color: var(--crimson);
    font-size: 1.1rem;
}

.pricing-info {
    background: linear-gradient(145deg, var(--bg-card), rgba(212, 175, 55, 0.08));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    padding: 50px;
}

.pricing-info h3 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.pricing-info p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    line-height: 1.8;
}

/* === CTA SECTION === */
.cta-section {
    background:
        radial-gradient(ellipse at center, rgba(220, 20, 60, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 80%, rgba(139, 0, 139, 0.15) 0%, transparent 50%);
}

.cta-numbers {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* === PAGE HEADER === */
.page-header {
    padding: 180px 40px 100px;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 20%, rgba(220, 20, 60, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(139, 0, 139, 0.2) 0%, transparent 50%),
        var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='rgba(220,20,60,0.05)' stroke-width='1'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-header h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 25px;
    position: relative;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.3rem;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}

/* === PROFILO SINGOLO === */
.profile-single {
    padding-top: 160px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 500;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--crimson);
    transform: translateX(-5px);
}

.profile-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.profile-detail-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 2px solid rgba(220, 20, 60, 0.3);
}

.profile-detail-image::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-sensual);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.5;
    filter: blur(20px);
}

.profile-detail-image img {
    width: 100%;
    display: block;
    cursor: pointer;
    transition: var(--transition);
}

.profile-detail-image:hover img {
    transform: scale(1.05);
}

.profile-detail-info h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: var(--gradient-sensual);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-meta {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.profile-dispo-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.profile-tags-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.profile-tags-detail .tag {
    padding: 12px 24px;
    font-size: 0.95rem;
}

.profile-description {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 50px;
}

.profile-cta {
    background: linear-gradient(145deg, var(--bg-card), rgba(220, 20, 60, 0.15));
    border: 2px solid rgba(220, 20, 60, 0.4);
    border-radius: var(--radius-lg);
    padding: 45px;
    position: relative;
    overflow: hidden;
}

.profile-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-sensual);
    opacity: 0.05;
}

.profile-cta h3 {
    color: var(--hot-pink);
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
    position: relative;
}

.profile-numbers {
    display: flex;
    gap: 20px;
    position: relative;
}

.profile-numbers .btn {
    flex: 1;
    flex-direction: column;
    padding: 25px;
}

.profile-numbers .num {
    font-size: 1.5rem;
    font-weight: 700;
}

.profile-numbers .price {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* Gallery */
.profile-gallery {
    margin-top: 100px;
}

.profile-gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-passion);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.08);
    border-color: var(--crimson);
    box-shadow: var(--shadow-hover);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item:hover::after {
    opacity: 0.3;
}

/* === FAQ SENSUALE === */
.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(220, 20, 60, 0.1);
    border-radius: var(--radius);
    margin-bottom: 18px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--crimson);
    box-shadow: 0 5px 30px rgba(220, 20, 60, 0.15);
}

.faq-question {
    padding: 28px 35px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--hot-pink);
}

.faq-toggle {
    font-size: 1.8rem;
    color: var(--crimson);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 350px;
}

.faq-answer > div,
.faq-answer-inner {
    padding: 0 35px 30px;
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* === ABOUT === */
.about-content {
    max-width: 950px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 70px;
}

.about-section h2 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-sensual);
    border-radius: 2px;
}

.about-section p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 25px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 35px;
    margin: 60px 0;
}

.stat-card {
    background: linear-gradient(145deg, var(--bg-card), rgba(220, 20, 60, 0.12));
    border: 2px solid rgba(220, 20, 60, 0.25);
    border-radius: var(--radius-lg);
    padding: 50px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-sensual);
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-red);
}

.stat-card:hover::before {
    opacity: 0.1;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-sensual);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.stat-label {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--bg-card);
    border-left: 5px solid var(--crimson);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 35px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--gradient-passion);
    opacity: 0.1;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateX(15px);
}

.value-card:hover::before {
    width: 100%;
}

.value-card h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
    position: relative;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
    line-height: 1.8;
    position: relative;
}

/* === LEGAL PAGES === */
.legal-content {
    max-width: 850px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--gold);
    margin-bottom: 15px;
}

.legal-content h3 {
    color: var(--crimson);
    margin: 50px 0 20px;
    font-size: 1.4rem;
}

.legal-content h4 {
    color: var(--text-primary);
    margin: 30px 0 15px;
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    line-height: 1.9;
    font-size: 1.05rem;
}

.legal-content ul {
    color: var(--text-secondary);
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-table th {
    color: var(--gold);
    font-weight: 600;
    background: rgba(220, 20, 60, 0.1);
}

.cookie-table td {
    color: var(--text-secondary);
}

/* === FOOTER ELEGANTE === */
.footer {
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-darker));
    border-top: 1px solid rgba(220, 20, 60, 0.3);
    padding: 100px 0 40px;
    margin-top: 100px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at 50% 0%, rgba(220, 20, 60, 0.1), transparent);
    pointer-events: none;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 70px;
    margin-bottom: 70px;
}

.footer-brand .logo {
    font-size: 1.8rem;
    margin-bottom: 25px;
    display: inline-block;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 320px;
    line-height: 1.8;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 15px;
}

.footer-col a {
    color: var(--text-muted);
    transition: var(--transition);
    display: inline-block;
}

.footer-col a:hover {
    color: var(--hot-pink);
    transform: translateX(8px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 35px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--crimson);
}

/* === UTILITIES === */
.text-center { text-align: center; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .profile-detail {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: linear-gradient(180deg, var(--bg-darker), var(--bg-dark));
        flex-direction: column;
        justify-content: center;
        gap: 35px;
        transition: var(--transition);
        border-left: 2px solid rgba(220, 20, 60, 0.3);
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        font-size: 1.3rem;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-numbers {
        flex-direction: column;
        gap: 25px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .profile-numbers {
        flex-direction: column;
    }

    .cta-numbers {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 80px 0;
    }

    .section-inner {
        padding: 0 25px;
    }

    .hero {
        padding: 120px 25px 80px;
    }

    .page-header {
        padding: 150px 25px 80px;
    }

    .age-modal {
        padding: 40px 25px;
        margin: 25px;
    }

    .age-buttons {
        flex-direction: column;
    }

    .btn {
        padding: 16px 32px;
    }

    .btn-lg {
        padding: 18px 38px;
    }
}

/* === ANIMAZIONI EXTRA === */
@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.15); }
    30% { transform: scale(1); }
    45% { transform: scale(1.1); }
    60% { transform: scale(1); }
}

.heartbeat {
    animation: heartBeat 1.5s infinite;
}

/* Effetto shimmer sexy */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.shimmer {
    background: linear-gradient(
        90deg,
        var(--bg-card) 25%,
        rgba(220, 20, 60, 0.15) 50%,
        var(--bg-card) 75%
    );
    background-size: 200% auto;
    animation: shimmer 4s infinite;
}

/* Glow pulsante */
@keyframes glowPulsate {
    0%, 100% {
        box-shadow: 0 0 20px var(--crimson-glow);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 0 50px var(--crimson-glow), 0 0 80px rgba(139, 0, 139, 0.3);
        filter: brightness(1.1);
    }
}

.glow-pulse {
    animation: glowPulsate 3s ease-in-out infinite;
}
