/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: rgba(18, 18, 26, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #b8b8c8;
    --accent-purple: #a855f7;
    --accent-pink: #ec4899;
    --accent-rose: #f472b6;
    --accent-blue: #3b82f6;
    --glow-purple: rgba(168, 85, 247, 0.3);
    --glow-pink: rgba(236, 72, 153, 0.4);
    --glow-rose: rgba(244, 114, 182, 0.3);
    --glow-blue: rgba(59, 130, 246, 0.3);
    --border-color: rgba(236, 72, 153, 0.2);
    --gradient-primary: linear-gradient(135deg, #ec4899 0%, #f472b6 50%, #ec4899 100%);
    --gradient-secondary: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
    --gradient-light: linear-gradient(135deg, rgba(236, 72, 153, 0.12) 0%, rgba(244, 114, 182, 0.12) 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Static background grid - reactive to light - MORE VISIBLE */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(236, 72, 153, 0.0792) 1px, transparent 1px),
        linear-gradient(90deg, rgba(236, 72, 153, 0.0792) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.792;
    /* Mask réactif à la lumière - plus visible là où il y a de la lumière (bas droite, haut droite, haut gauche) */
    mask-image: 
        radial-gradient(ellipse 1200px 900px at 80% 80%, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7) 30%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.1) 70%, transparent 100%),
        radial-gradient(ellipse 800px 800px at 92% 15%, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.5) 30%, rgba(255,255,255,0.2) 50%, transparent 80%),
        radial-gradient(ellipse 800px 800px at 8% 15%, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.5) 30%, rgba(255,255,255,0.2) 50%, transparent 80%);
    -webkit-mask-image: 
        radial-gradient(ellipse 1200px 900px at 80% 80%, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7) 30%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.1) 70%, transparent 100%),
        radial-gradient(ellipse 800px 800px at 92% 15%, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.5) 30%, rgba(255,255,255,0.2) 50%, transparent 80%),
        radial-gradient(ellipse 800px 800px at 8% 15%, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.5) 30%, rgba(255,255,255,0.2) 50%, transparent 80%);
    mask-composite: add;
    -webkit-mask-composite: add;
}

/* Decorative light element - bottom right (refined, smaller) */
body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(ellipse at bottom right, rgba(236, 72, 153, 0.18) 0%, rgba(236, 72, 153, 0.12) 30%, rgba(244, 114, 182, 0.06) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

/* Decorative light element - top right (rose) */
.decorative-light-top-right {
    position: fixed;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(ellipse at top right, rgba(236, 72, 153, 0.2) 0%, rgba(236, 72, 153, 0.15) 30%, rgba(236, 72, 153, 0.08) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

/* Decorative light element - top left (rose) */
.decorative-light-top-left {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(ellipse at top left, rgba(236, 72, 153, 0.2) 0%, rgba(236, 72, 153, 0.15) 30%, rgba(236, 72, 153, 0.08) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

/* Decorative light element - bottom left (rose foncé, animé) */
.decorative-light-bottom-left {
    position: fixed;
    bottom: 5%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.135) 0%, rgba(217, 70, 239, 0.108) 30%, rgba(168, 85, 247, 0.09) 50%, rgba(139, 92, 246, 0.054) 70%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(50px);
    animation: lightFloat 25s ease-in-out infinite;
}

@keyframes lightFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(5%, -8%) scale(1.05);
    }
    50% {
        transform: translate(-5%, -5%) scale(0.95);
    }
    75% {
        transform: translate(8%, -10%) scale(1.02);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-bottom-color 0.4s ease;
}

.header.has-background {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(236, 72, 153, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.32rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin-left: 1.5rem;
}

.logo-text {
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.4));
    display: inline-block;
}

.logo:hover .logo-text {
    filter: drop-shadow(0 0 30px var(--glow-pink));
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 1.584rem;
    filter: drop-shadow(0 0 15px var(--glow-pink));
    animation: iconPulse 3s ease-in-out infinite;
}

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

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.836rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--glow-pink);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--glow-purple);
}

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

.nav-link.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
}

.nav-link.coming-soon:hover {
    opacity: 0.8;
}

.nav-link.coming-soon::after {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(236, 72, 153, 0.2);
    border-color: var(--accent-purple);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 0 15px var(--glow-purple);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Modern button style */
.btn-primary {
    background: #f472b6;
    color: #4a4a4a;
    border: 2px solid rgba(244, 114, 182, 0.6);
    padding: 0.65rem 1.3rem;
    border-radius: 12px;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.792rem;
    box-shadow: 0 4px 15px rgba(244, 114, 182, 0.4), 0 0 20px rgba(236, 72, 153, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary span {
    color: #4a4a4a;
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #4a4a4a;
    stroke: #4a4a4a;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    border-color: rgba(160, 30, 90, 1);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.6), 0 4px 20px rgba(236, 72, 153, 0.4);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    left: 0;
}

.user-btn {
    background: rgba(236, 72, 153, 0.15);
    border: 1px solid rgba(236, 72, 153, 0.4);
    color: var(--text-primary);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.2);
}

.user-btn:hover {
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
    background: rgba(236, 72, 153, 0.25);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.user-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(30, 20, 50, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 16px;
    padding: 1rem;
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px var(--glow-purple);
    animation: dropdownFadeIn 0.3s ease;
}

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

.user-menu {
    position: relative;
}

.token-balance {
    padding: 0.75rem;
    background: rgba(236, 72, 153, 0.15);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    text-align: center;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.balance-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.balance-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-settings {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(236, 72, 153, 0.3);
    color: var(--text-primary);
    padding: 0.75rem;
    border-radius: 12px;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.btn-settings:hover {
    background: rgba(236, 72, 153, 0.15);
    border-color: var(--accent-pink);
    box-shadow: 0 0 15px var(--glow-pink);
}

.btn-logout {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(236, 72, 153, 0.3);
    color: var(--text-primary);
    padding: 0.75rem;
    border-radius: 12px;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: rgba(236, 72, 153, 0.15);
    border-color: var(--accent-pink);
    box-shadow: 0 0 15px var(--glow-pink);
}

.hidden {
    display: none !important;
}

/* ============================================
   HOME PAGE
   ============================================ */

.home-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.home-content {
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
    z-index: 1;
    position: relative;
}

.home-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    animation: titleFadeIn 1s ease;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: titleFadeIn 1s ease 0.2s forwards;
}

.home-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(236, 72, 153, 0.0005) 0%, rgba(244, 114, 182, 0.0003) 10%, transparent 20%);
    z-index: -1;
    pointer-events: none;
    opacity: 0.01;
    animation: none;
}

@keyframes titleGlow {
    0%, 100% {
        opacity: 0.05;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.08;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.title-line {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
}

.title-line:first-child {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 35%, #f0f0f0 60%, #e0e0e0 75%, #d0d0d0 85%, #b8b8c8 95%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.6), 0 0 80px rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
}

.gradient-text {
    background: linear-gradient(90deg, #ec4899 0%, #d946ef 30%, #a855f7 70%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.5));
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        filter: drop-shadow(0 0 30px var(--glow-purple)) hue-rotate(0deg);
    }
    50% {
        filter: drop-shadow(0 0 40px var(--glow-pink)) hue-rotate(10deg);
    }
}

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

.home-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 4rem;
    line-height: 1.6;
    animation: subtitleFadeIn 1s ease 0.4s both;
    opacity: 0;
    transform: translateY(30px);
}

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

.home-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    flex-wrap: wrap;
    animation: buttonsFadeIn 0.8s ease 0.6s both;
    opacity: 0;
    transform: translateY(30px);
}

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

.btn-start-now,
.btn-view-features {
    padding: 1.3rem 2rem;
    border-radius: 12px;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-view-features {
    border: none;
}

.btn-start-now svg,
.btn-view-features svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-start-now {
    background: #f472b6;
    color: #a855f7;
    border: 2px solid rgba(244, 114, 182, 0.6);
    box-shadow: 0 0 15px rgba(244, 114, 182, 0.4), 0 0 25px rgba(236, 72, 153, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-start-now span {
    position: relative;
    z-index: 1;
    color: #4a4a4a;
    display: inline-block;
    font-weight: 700;
}

.btn-start-now:hover {
    border-color: rgba(244, 114, 182, 0.8);
    background: #ec4899;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(244, 114, 182, 0.5), 0 0 35px rgba(236, 72, 153, 0.4);
}

.btn-start-now svg {
    color: #4a4a4a;
    stroke: #4a4a4a;
}

.btn-start-now:active {
    transform: translateY(-1px);
}

.btn-view-features {
    background: rgba(255, 255, 255, 0.015   );
    color: #b8b8c8;
    border: 2px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    position: relative;
    border-radius: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn-view-features span {
    position: relative;
    z-index: 1;
    color: #b8b8c8;
    display: inline-block;
}

.btn-view-features svg {
    color: #b8b8c8;
}

.btn-view-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(168, 85, 247, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
    border-radius: 24px;
}

.btn-view-features:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.btn-view-features:hover span,
.btn-view-features:hover svg {
    color: #d0d0d0;
}

.btn-view-features:hover::before {
    width: 100%;
}

.btn-view-features:active {
    transform: translateY(-1px);
}

/* ============================================
   FULLSCREEN SEARCH ANIMATION
   ============================================ */

.fullscreen-search {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fullscreenFadeIn 0.5s ease;
}

@keyframes fullscreenFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.search-animation-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.search-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20% 30%, rgba(236, 72, 153, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(236, 72, 153, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(59, 130, 246, 0.3), transparent);
    background-size: 200% 200%;
    animation: particleMove 10s linear infinite;
}

@keyframes particleMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.search-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.search-spinner-large {
    width: 120px;
    height: 120px;
    border: 4px solid rgba(236, 72, 153, 0.2);
    border-top-color: var(--accent-purple);
    border-right-color: var(--accent-pink);
    border-radius: 50%;
    margin: 0 auto 2rem;
    animation: spinLarge 1.5s linear infinite;
    box-shadow: 0 0 40px var(--glow-purple);
}

@keyframes spinLarge {
    to {
        transform: rotate(360deg);
    }
}

.search-scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.scan-line-1,
.scan-line-2,
.scan-line-3 {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: 0 0 20px var(--glow-pink);
    animation: scanLineMove 2s ease-in-out infinite;
}

.scan-line-1 {
    top: 20%;
    animation-delay: 0s;
}

.scan-line-2 {
    top: 50%;
    animation-delay: 0.7s;
}

.scan-line-3 {
    top: 80%;
    animation-delay: 1.4s;
}

@keyframes scanLineMove {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

.search-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 30px var(--glow-purple));
    animation: titlePulse 2s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        filter: drop-shadow(0 0 30px var(--glow-purple));
    }
    50% {
        filter: drop-shadow(0 0 50px var(--glow-pink));
    }
}

.search-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.search-progress {
    width: 300px;
    max-width: 80%;
    height: 4px;
    background: rgba(236, 72, 153, 0.2);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    width: 0%;
    animation: progressFill 2s ease-in-out infinite;
    box-shadow: 0 0 20px var(--glow-pink);
}

@keyframes progressFill {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.main-content {
    margin-top: 0;
    min-height: 100vh;
    padding: 0;
    position: relative;
    z-index: 1;
}

.page {
    animation: fadeIn 0.5s ease;
    padding: 4rem 0;
}

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

/* Scroll fade out animations - applied to ALL text elements */
.fade-on-scroll {
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.fade-on-scroll.faded {
    opacity: 0.2;
    transform: translateY(20px);
}

.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Initial page load animation */
body.loading {
    overflow: hidden;
}

.page-load-animation {
    opacity: 0;
    transform: translateY(30px);
    animation: pageLoadFadeIn 0.8s ease forwards;
}

.page-load-animation:nth-child(1) { animation-delay: 0.1s; }
.page-load-animation:nth-child(2) { animation-delay: 0.2s; }
.page-load-animation:nth-child(3) { animation-delay: 0.3s; }
.page-load-animation:nth-child(4) { animation-delay: 0.4s; }
.page-load-animation:nth-child(5) { animation-delay: 0.5s; }

@keyframes pageLoadFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-top: 1rem;
}

.page-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px var(--glow-pink));
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(236, 72, 153, 0.08) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
}

/* ============================================
   MODAL
   ============================================ */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: rgba(30, 20, 50, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(236, 72, 153, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--glow-purple);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--text-primary);
    background: rgba(236, 72, 153, 0.1);
}

.modal-body {
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group .input-field {
    width: 100%;
    margin-bottom: 0;
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.form-switch {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-switch a {
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.form-switch a:hover {
    color: var(--accent-rose);
    text-decoration: underline;
}

.auth-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
}

.auth-message.success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.auth-message.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.auth-message.info {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

/* ============================================
   FEATURES PAGE
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-block {
    background: rgba(18, 18, 26, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(236, 72, 153, 0.25);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

.feature-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    box-shadow: 0 0 15px var(--glow-pink);
}

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

.feature-block:hover {
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.3), 0 0 30px rgba(244, 114, 182, 0.2);
    transform: translateY(-5px);
    background: rgba(18, 18, 26, 0.8);
    min-height: auto;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 15px var(--glow-pink));
    transition: transform 0.3s ease;
}

.feature-block:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 25px var(--glow-pink));
}

.feature-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-short-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.feature-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, margin-top 0.4s ease;
    opacity: 0;
    margin-top: 0;
}

.feature-block:hover .feature-expanded {
    max-height: 300px;
    opacity: 1;
    margin-top: 1.5rem;
}

.feature-full-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(236, 72, 153, 0.2);
}

/* ============================================
   LOOKUP PAGE - NEW DESIGN
   ============================================ */

.lookup-page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
}

/* Trust Badge */
.trust-badge {
    background: rgba(40, 40, 50, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.6rem 1.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Eye Icon Container */
.eye-icon-container {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.eye-icon {
    width: 200px;
    height: 200px;
    color: rgba(255, 255, 255, 0.95);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
    animation: eyePulse 3s ease-in-out infinite;
}

@keyframes eyePulse {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.5));
        transform: scale(1.05);
    }
}

/* Description Text */
.lookup-description {
    max-width: 800px;
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.lookup-description p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Universal Search Wrapper */
.universal-search-wrapper {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.search-input-wrapper {
    display: flex;
    gap: 0;
    align-items: stretch;
    background: rgba(18, 18, 26, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(236, 72, 153, 0.25);
    border-radius: 20px;
    padding: 0.6rem;
    position: relative;
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
}

.search-icon-wrapper {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(236, 72, 153, 0.6);
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.universal-search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 0.95rem;
    padding: 0.9rem 1rem 0.9rem 3rem;
    outline: none;
    border-radius: 18px;
}

.universal-search-input::placeholder {
    color: rgba(184, 184, 200, 0.6);
}

.universal-search-input:focus {
    outline: none;
}

.btn-search-universal {
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    border-radius: 18px;
    padding: 0.9rem 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Comfortaa', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4), 0 0 20px rgba(236, 72, 153, 0.3);
}

.btn-search-universal:hover {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.5), 0 0 30px rgba(236, 72, 153, 0.4);
}

.btn-search-universal svg {
    width: 18px;
    height: 18px;
}

/* Popular Searches */
.popular-searches {
    margin-top: 1rem;
    text-align: center;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.popular-searches-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.popular-tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    justify-content: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex: 0 1 auto;
    min-width: 0;
}

.popular-tags::-webkit-scrollbar {
    height: 4px;
}

.popular-tags::-webkit-scrollbar-track {
    background: transparent;
}

.popular-tags::-webkit-scrollbar-thumb {
    background: rgba(236, 72, 153, 0.3);
    border-radius: 2px;
}

.popular-tag {
    background: rgba(18, 18, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(236, 72, 153, 0.25);
    border-radius: 15px;
    padding: 0.4rem 0.9rem;
    color: var(--text-primary);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: 'Comfortaa', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
}

.popular-tag:hover {
    background: rgba(18, 18, 26, 0.8);
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
    transform: translateY(-1px);
}

/* Stats Separator */
.stats-separator {
    width: 100%;
    max-width: 700px;
    height: 2px;
    background: rgba(236, 72, 153, 0.15);
    margin: 3rem auto 0;
}

/* Statistics */
.lookup-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 0 0 auto;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lookup-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.lookup-level {
    animation: fadeInUp 0.4s ease;
}

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

.lookup-breadcrumb {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.btn-back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(18, 18, 26, 0.6);
    border: 2px solid rgba(236, 72, 153, 0.25);
    color: var(--text-primary);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-back:hover {
    border-color: rgba(236, 72, 153, 0.5);
    background: rgba(18, 18, 26, 0.8);
    transform: translateX(-3px);
}

.btn-back svg {
    width: 18px;
    height: 18px;
}

.breadcrumb-path {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.lookup-subcategories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.lookup-search-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lookup-search-card {
    background: rgba(18, 18, 26, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(236, 72, 153, 0.25);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.search-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.search-input-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
    position: relative;
}

.search-icon-wrapper {
    position: absolute;
    left: 1.2rem;
    color: var(--text-secondary);
    pointer-events: none;
    z-index: 1;
}

.search-input-wrapper .input-field {
    width: 100%;
    padding-left: 3.5rem;
}

.search-input-wrapper .universal-search-input {
    width: 100%;
    padding-left: 3.5rem;
    font-size: 1.1rem;
}

.search-input-wrapper .btn-search {
    white-space: nowrap;
    flex-shrink: 0;
}

.search-hint {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 1rem;
    text-align: center;
    opacity: 0.7;
}

/* Locked/Premium category styles */
.category-card.locked {
    opacity: 0.8;
    cursor: pointer;
    position: relative;
    filter: grayscale(0.8);
    transition: all 0.3s ease;
    overflow: hidden;
    background: rgba(30, 30, 40, 0.85) !important;
}

/* Overlay avec chaînes entrelacées en arrière-plan */
.category-card.locked::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Pattern de chaînes SVG entrelacées - design réaliste et visible */
        url("data:image/svg+xml,%3Csvg width='250' height='250' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='chainLink' x='0' y='0' width='25' height='25' patternUnits='userSpaceOnUse'%3E%3Cellipse cx='12.5' cy='8' rx='7' ry='5' stroke='rgba(255,255,255,0.7)' stroke-width='2' fill='none'/%3E%3Cellipse cx='12.5' cy='17' rx='7' ry='5' stroke='rgba(255,255,255,0.7)' stroke-width='2' fill='none'/%3E%3Cpath d='M5.5,8 L5.5,17 M19.5,8 L19.5,17' stroke='rgba(255,255,255,0.6)' stroke-width='2'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23chainLink)'/%3E%3Cpath d='M0,70 Q50,30 100,70 Q150,110 200,70 Q250,30 250,70' stroke='rgba(255,255,255,0.6)' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3Cpath d='M0,140 Q50,100 100,140 Q150,180 200,140 Q250,100 250,140' stroke='rgba(255,255,255,0.6)' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3Cpath d='M70,0 Q110,50 70,100 Q30,150 70,200 Q110,250 70,250' stroke='rgba(255,255,255,0.55)' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3Cpath d='M180,0 Q220,50 180,100 Q140,150 180,200 Q220,250 180,250' stroke='rgba(255,255,255,0.55)' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3Cpath d='M0,35 Q125,15 250,35' stroke='rgba(255,255,255,0.5)' stroke-width='2.5' fill='none'/%3E%3Cpath d='M0,185 Q125,165 250,185' stroke='rgba(255,255,255,0.5)' stroke-width='2.5' fill='none'/%3E%3C/svg%3E"),
        /* Overlay moins sombre */
        rgba(0, 0, 0, 0.15);
    background-size: 250px 250px, 100% 100%;
    background-position: 0 0, center;
    border-radius: 16px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.75;
}

/* Icône de serrure centrale */
.category-card.locked .lock-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card.locked .lock-icon::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.category-card.locked .lock-icon::after {
    content: '';
    position: relative;
    width: 40px;
    height: 40px;
    z-index: 4;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

/* Texte "PREMIUM REQUIS" au-dessus de l'icône */
.category-card.locked .lock-text {
    position: absolute;
    top: calc(50% - 70px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
}

/* Texte explicatif en bas */
.category-card.locked .lock-description {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
    color: rgba(200, 200, 200, 0.85);
    font-size: 0.65rem;
    text-align: center;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    padding: 0 10px;
    line-height: 1.1;
    max-width: 92%;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.category-card.locked .lock-description > span {
    display: block;
    line-height: 1.15;
    white-space: nowrap;
}

.category-card.locked .lock-description .plan-highlight {
    color: #ffd700;
    font-weight: 600;
}

/* Masquer le contenu original quand verrouillé */
.category-card.locked .category-icon,
.category-card.locked h3,
.category-card.locked p {
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.category-card.locked:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: translateY(-2px);
    border-color: rgba(34, 197, 94, 0.8);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
    background: rgba(18, 18, 26, 0.9) !important;
}

/* Masquer le verrou et les chaînes au survol */
.category-card.locked:hover::before {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card.locked:hover .lock-icon {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card.locked:hover .lock-text {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card.locked:hover .lock-description {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Afficher le contenu original au survol */
.category-card.locked:hover .category-icon,
.category-card.locked:hover h3,
.category-card.locked:hover p {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.category-card.locked:hover .lock-icon::before {
    border-color: rgba(34, 197, 94, 0.9);
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.4), inset 0 0 20px rgba(0, 0, 0, 0.5);
}


.category-card {
    background: rgba(18, 18, 26, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(236, 72, 153, 0.25);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transition: width 0.4s ease, height 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.category-card:hover::after {
    width: 200%;
    height: 200%;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    box-shadow: 0 0 20px var(--glow-pink);
}

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

.category-card:hover {
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.3), 0 0 30px rgba(244, 114, 182, 0.2);
    transform: translateY(-8px);
    background: rgba(18, 18, 26, 0.8);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px var(--glow-pink));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.category-card:hover .category-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 25px var(--glow-pink));
}

.category-card h3 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.category-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.category-input {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.input-field {
    background: rgba(18, 18, 26, 0.6);
    border: 2px solid rgba(236, 72, 153, 0.25);
    border-radius: 12px;
    padding: 0.85rem 1.2rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.input-field:focus {
    outline: none;
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.4), inset 0 0 20px rgba(244, 114, 182, 0.1);
}

.btn-search {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(236, 72, 153, 0.5);
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-search:hover {
    border-color: rgba(236, 72, 153, 0.7);
    box-shadow: 0 0 25px rgba(236, 72, 153, 0.5);
    transform: translateY(-2px);
}

.btn-search:hover::before {
    left: 0;
}

.btn-search:active {
    transform: translateY(0);
}

/* ============================================
   RESULTS
   ============================================ */

.results-container {
    margin-top: 2rem;
}

.results-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-modern {
    background: transparent;
    border: 2px solid rgba(236, 72, 153, 0.5);
    color: var(--text-primary);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-modern:hover {
    border-color: var(--accent-pink);
    box-shadow: 0 0 25px var(--glow-pink);
    transform: translateY(-2px);
}

.btn-modern:hover::before {
    left: 0;
}

.export-buttons {
    display: flex;
    gap: 1rem;
}

.btn-export {
    padding: 0.85rem 1.5rem;
}

.result-card {
    background: rgba(18, 18, 26, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(236, 72, 153, 0.25);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    animation: resultFadeIn 0.5s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(236, 72, 153, 0.2);
}

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

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.result-export-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-export-result {
    background: rgba(18, 18, 26, 0.6);
    border: 2px solid rgba(236, 72, 153, 0.4);
    color: var(--text-primary);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.btn-export-result:hover {
    border-color: rgba(236, 72, 153, 0.7);
    background: rgba(18, 18, 26, 0.8);
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.3);
    transform: translateY(-2px);
}

.btn-export-result span:first-child {
    font-size: 1rem;
}

.result-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    filter: drop-shadow(0 0 15px var(--glow-pink));
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.result-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(236, 72, 153, 0.06) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.search-time {
    font-size: 0.6em;
    color: var(--text-secondary);
    font-weight: 500;
    opacity: 0.8;
    -webkit-text-fill-color: var(--text-secondary);
    background: none;
    filter: none;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.result-item {
    background: rgba(15, 10, 26, 0.6);
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(236, 72, 153, 0.2);
    transition: all 0.3s ease;
}

.result-item:hover {
    border-color: var(--accent-pink);
    box-shadow: 0 0 20px var(--glow-pink);
    transform: translateY(-3px);
}

.result-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.result-value {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.no-data-card {
    background: rgba(30, 20, 50, 0.4);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(236, 72, 153, 0.3);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    animation: resultFadeIn 0.5s ease;
}

.no-data-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
    filter: drop-shadow(0 0 20px var(--glow-purple));
}

.no-data-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.no-data-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ============================================
   TOKEN PAGE
   ============================================ */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
}

/* Billing Toggle */
.billing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
    padding: 1rem;
}

.billing-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.billing-discount {
    color: var(--accent-pink);
    font-size: 0.85rem;
}

.billing-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.billing-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(236, 72, 153, 0.2);
    transition: 0.4s;
    border-radius: 30px;
    border: 2px solid rgba(236, 72, 153, 0.4);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 3px;
    background-color: var(--accent-pink);
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 0 10px var(--glow-pink);
}

.billing-toggle input:checked + .toggle-slider {
    background-color: rgba(236, 72, 153, 0.3);
    border-color: var(--accent-pink);
}

.billing-toggle input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

/* Billing Toggle */
.billing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
    padding: 1rem;
}

.billing-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.billing-discount {
    color: var(--accent-pink);
    font-size: 0.85rem;
}

.billing-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.billing-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(236, 72, 153, 0.2);
    transition: 0.4s;
    border-radius: 30px;
    border: 2px solid rgba(236, 72, 153, 0.4);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 3px;
    background-color: var(--accent-pink);
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 0 10px var(--glow-pink);
}

.billing-toggle input:checked + .toggle-slider {
    background-color: rgba(236, 72, 153, 0.3);
    border-color: var(--accent-pink);
}

.billing-toggle input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.pricing-card {
    background: rgba(18, 18, 26, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(236, 72, 153, 0.25);
    border-radius: 20px;
    padding: 2rem 1.8rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    box-shadow: 0 0 25px var(--glow-pink);
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card:hover {
    border-color: var(--accent-pink);
    box-shadow: 0 25px 70px var(--glow-pink), 0 0 50px rgba(236, 72, 153, 0.4), inset 0 0 30px rgba(236, 72, 153, 0.1);
    transform: translateY(-15px) scale(1.02);
    background: rgba(25, 18, 42, 0.8);
}

.pricing-card.featured {
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 20px 60px var(--glow-pink), 0 0 40px rgba(236, 72, 153, 0.4), inset 0 0 40px rgba(236, 72, 153, 0.08);
    transform: scale(1.02);
    background: rgba(18, 18, 26, 0.75);
    position: relative;
}

.pricing-card.featured::before {
    transform: scaleX(1);
    height: 6px;
    box-shadow: 0 0 30px var(--glow-pink);
}

.pricing-card.featured::after {
    opacity: 1;
}

.pricing-card.featured .plan-badge {
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 20px var(--glow-pink);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 35px var(--glow-pink), 0 0 50px rgba(236, 72, 153, 0.5);
        transform: scale(1.05);
    }
}

.plan-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 0 25px var(--glow-pink), 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.plan-badge::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: left 0.5s ease;
}

.pricing-card:hover .plan-badge::before {
    left: 100%;
}

.plan-price {
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 5rem;
    align-items: center;
}

.price-amount.hidden,
.price-period.hidden,
.searches-count.hidden,
.annual-price-wrapper.hidden {
    display: none;
}

.price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    min-height: 3.5rem;
    justify-content: flex-start;
    position: relative;
    width: 100%;
}

.price-wrapper.annual-mode {
    align-items: center;
    gap: 0.5rem;
}

.annual-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.annual-price-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.25rem;
}

.monthly-price {
    line-height: 1;
    display: inline-block;
}

.price-original {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: line-through;
    opacity: 0.6;
}

.price-discount {
    font-size: 0.8rem;
    font-weight: 700;
    color: #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.15) 100%);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    border: 1px solid rgba(16, 185, 129, 0.4);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

.annual-price {
    margin-top: 0.25rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 25px var(--glow-purple));
    line-height: 1;
    position: relative;
    display: inline-block;
}

.pricing-card.featured .price-amount {
    animation: priceGlow 3s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% {
        filter: drop-shadow(0 0 25px var(--glow-purple));
    }
    50% {
        filter: drop-shadow(0 0 40px var(--glow-pink));
    }
}

.price-period {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 0.3rem;
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.plan-price.annual-mode .price-period {
    left: 50%;
    transform: translateX(-50%);
}

.plan-searches {
    margin-bottom: 1.5rem;
    padding: 1.2rem 1.2rem;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(244, 114, 182, 0.12) 100%);
    border-radius: 16px;
    border: 2px solid rgba(236, 72, 153, 0.3);
    position: relative;
    overflow: hidden;
}

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

.pricing-card:hover .plan-searches::before {
    left: 100%;
}

.searches-count {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    filter: drop-shadow(0 0 20px var(--glow-purple));
}

.searches-label {
    display: block;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 0.75rem;
    font-weight: 500;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.plan-features li {
    padding: 0.65rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(236, 72, 153, 0.15);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.8rem;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.plan-features li:not(.disabled)::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-pink);
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 0 8px var(--glow-pink);
}

.plan-features li.disabled::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: none;
}

.plan-features li:last-child {
    border-bottom: none;
}

.pricing-card:hover .plan-features li {
    color: var(--text-primary);
    transform: translateX(5px);
}

.btn-buy {
    width: 100%;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(236, 72, 153, 0.6);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-buy::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-buy:hover {
    border-color: var(--accent-pink);
    box-shadow: 0 0 40px var(--glow-pink), 0 8px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px) scale(1.02);
    color: white;
}

.btn-buy:hover::before {
    left: 0;
}

.btn-buy:hover::after {
    width: 300px;
    height: 300px;
}

.btn-buy:active {
    transform: translateY(-2px) scale(1);
}

.pricing-card.featured .btn-buy {
    border-color: var(--accent-pink);
    box-shadow: 0 0 30px var(--glow-pink), 0 4px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
}

.pricing-card.featured .btn-buy::before {
    background: var(--gradient-primary);
}

.purchase-confirmation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    animation: modalFadeIn 0.3s ease;
}

.confirmation-content {
    background: rgba(30, 20, 50, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(236, 72, 153, 0.3);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--glow-purple);
    animation: modalSlideIn 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.confirmation-actions {
    margin-top: auto;
    padding-top: 2rem;
    display: flex;
    justify-content: flex-end;
}

.btn-close-confirmation {
    margin-left: auto;
}

.subscription-key-display {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(18, 18, 26, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.subscription-key-display label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.key-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.key-display code {
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--accent-pink);
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.btn-copy {
    padding: 0.75rem 1.5rem;
    background: rgba(236, 72, 153, 0.2);
    border: 1px solid rgba(236, 72, 153, 0.4);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-copy:hover {
    background: rgba(236, 72, 153, 0.3);
    border-color: var(--accent-pink);
    transform: translateY(-2px);
}

.subscription-key-display small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.confirmation-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 40px var(--glow-pink);
    animation: iconBounce 0.6s ease;
}

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

.confirmation-content h3 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.confirmation-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(236, 72, 153, 0.2);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.4));
    display: inline-block;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--accent-pink);
    text-shadow: 0 0 10px var(--glow-pink);
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-links .social-link {
    width: 36px;
    height: 36px;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(236, 72, 153, 0.2);
    align-items: start;
}

.footer-copyright {
    text-align: left;
}

.footer-copyright p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.footer-disclaimer {
    text-align: center;
    max-width: none;
}

.footer-disclaimer p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.footer-tech {
    text-align: right;
}

.footer-tech p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 1rem;
    }
    
    .home-categories {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .lookup-categories {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card {
        padding: 2.5rem 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-copyright,
    .footer-disclaimer,
    .footer-tech {
        text-align: center;
    }
    
    .result-grid {
        grid-template-columns: 1fr;
    }
    
    .results-actions {
        flex-direction: column;
    }
    
    .export-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    /* Lookup page responsive */
    .lookup-page-wrapper {
        padding: 2rem 1rem;
    }
    
    .eye-icon {
        width: 150px;
        height: 150px;
    }
    
    .lookup-description p {
        font-size: 1rem;
    }
    
    .universal-search-wrapper {
        max-width: 100%;
    }
    
    .search-input-wrapper {
        flex-direction: column;
        border-radius: 20px;
        padding: 0.4rem;
    }
    
    .universal-search-input {
        padding: 0.7rem 1rem 0.7rem 2.8rem;
        border-radius: 15px;
        font-size: 0.9rem;
    }
    
    .btn-search-universal {
        width: 100%;
        justify-content: center;
        border-radius: 15px;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .popular-tags {
        justify-content: center;
    }
    
    .lookup-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* ============================================
   SETTINGS PAGE
   ============================================ */

.settings-content {
    margin-top: 2rem;
}

.settings-section {
    background: rgba(30, 20, 50, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.settings-section h2 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.stat-card {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.stat-card-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.stat-card-value {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.users-list {
    margin-top: 1rem;
}

.user-item {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info {
    flex: 1;
}

.user-ip {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.user-details {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.user-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-blacklist {
    padding: 0.5rem 1rem;
    background: rgba(255, 71, 87, 0.2);
    border: 1px solid rgba(255, 71, 87, 0.4);
    border-radius: 8px;
    color: #ff4757;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-blacklist:hover {
    background: rgba(255, 71, 87, 0.3);
    border-color: #ff4757;
}

.btn-kick-user {
    padding: 0.5rem 1rem;
    background: rgba(255, 152, 0, 0.2);
    border: 1px solid rgba(255, 152, 0, 0.4);
    border-radius: 8px;
    color: #ff9800;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-kick-user:hover {
    background: rgba(255, 152, 0, 0.3);
    border-color: #ff9800;
}

.user-limit-control {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(236, 72, 153, 0.2);
}

.user-limit-control label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.user-limit-control input {
    width: 100px;
    padding: 0.5rem;
    background: rgba(18, 18, 26, 0.8);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    margin-right: 0.5rem;
}

.user-limit-control button {
    padding: 0.5rem 1rem;
    background: rgba(236, 72, 153, 0.2);
    border: 1px solid rgba(236, 72, 153, 0.4);
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-limit-control button:hover {
    background: rgba(236, 72, 153, 0.3);
    border-color: var(--accent-pink);
}

.blacklisted-user {
    opacity: 0.5;
    border-color: rgba(255, 71, 87, 0.5);
}

.blacklisted-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 71, 87, 0.2);
    border: 1px solid rgba(255, 71, 87, 0.4);
    border-radius: 4px;
    color: #ff4757;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

/* ============================================
   FAQ PAGE
   ============================================ */

.faq-content {
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(30, 20, 50, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 5px 20px rgba(236, 72, 153, 0.2);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(236, 72, 153, 0.1);
}

.faq-question h3 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-pink);
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-content {
    margin-top: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-card {
    background: rgba(30, 20, 50, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 5px 20px rgba(236, 72, 153, 0.2);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-info-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.contact-link {
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    word-break: break-all;
}

.contact-link:hover {
    color: var(--accent-purple);
    text-decoration: underline;
}

.contact-form-section {
    display: flex;
    flex-direction: column;
}

.contact-form-card {
    background: rgba(30, 20, 50, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 16px;
    padding: 2rem;
}

.contact-form-card h2 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(18, 18, 26, 0.8);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.form-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.form-message.success {
    background: rgba(46, 213, 115, 0.2);
    border: 1px solid rgba(46, 213, 115, 0.4);
    color: #2ed573;
}

.form-message.error {
    background: rgba(255, 71, 87, 0.2);
    border: 1px solid rgba(255, 71, 87, 0.4);
    color: #ff4757;
}

.btn-submit {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-faq-section {
    background: rgba(30, 20, 50, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.contact-faq-section h2 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-faq-section p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.inline-link {
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: var(--accent-purple);
    text-decoration: underline;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.25rem;
    }
}

/* ============================================
   NOTIFICATION SYSTEM
   ============================================ */

.notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    width: 100%;
    pointer-events: none;
}

.notification {
    background: rgba(30, 20, 50, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--glow-purple);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    pointer-events: all;
    animation: notificationSlideIn 0.3s ease;
    position: relative;
    overflow: hidden;
}

.notification::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
}

.notification.success::before {
    background: linear-gradient(180deg, #2ed573 0%, #1e8e4a 100%);
}

.notification.error::before {
    background: linear-gradient(180deg, #ff4757 0%, #c44569 100%);
}

.notification.warning::before {
    background: linear-gradient(180deg, #ff9800 0%, #e65100 100%);
}

.notification.info::before {
    background: var(--gradient-primary);
}

@keyframes notificationSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification.hiding {
    animation: notificationSlideOut 0.3s ease forwards;
}

@keyframes notificationSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notification-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.notification-message {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.notification-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.2s ease;
    margin-top: -2px;
}

.notification-close:hover {
    color: var(--text-primary);
}

.notification.success .notification-icon {
    color: #2ed573;
}

.notification.error .notification-icon {
    color: #ff4757;
}

.notification.warning .notification-icon {
    color: #ff9800;
}

.notification.info .notification-icon {
    color: var(--accent-pink);
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(236, 72, 153, 0.3);
    transform-origin: left;
    animation: notificationProgress linear forwards;
}

.notification.success .notification-progress {
    background: rgba(46, 213, 115, 0.3);
}

.notification.error .notification-progress {
    background: rgba(255, 71, 87, 0.3);
}

.notification.warning .notification-progress {
    background: rgba(255, 152, 0, 0.3);
}

@keyframes notificationProgress {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

@media (max-width: 768px) {
    .notification-container {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .notification {
        padding: 0.875rem 1rem;
    }
    
    .notification-title {
        font-size: 0.95rem;
    }
    
    .notification-message {
        font-size: 0.85rem;
    }
}

/* ============================================
   PRIVACY POLICY PAGE
   ============================================ */

.privacy-content {
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-section {
    background: rgba(30, 20, 50, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-section h2 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-section h3 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.privacy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.privacy-section li {
    margin-bottom: 0.75rem;
}

.privacy-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.privacy-update {
    text-align: center;
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(236, 72, 153, 0.2);
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 1.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .category-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .home-hero {
        padding: 2rem 0;
    }
}

/* ============================================
   MANDATORY LOGIN PAGE
   ============================================ */

.login-page {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    overflow: hidden;
}

.login-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(236, 72, 153, 0.0792) 1px, transparent 1px),
        linear-gradient(90deg, rgba(236, 72, 153, 0.0792) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
}

.login-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    padding: 2rem;
}

.login-content {
    background: rgba(30, 20, 50, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(236, 72, 153, 0.3);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--glow-purple);
    animation: loginSlideIn 0.5s ease;
}

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

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.login-logo .logo-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px var(--glow-pink));
}

.login-logo .logo-text {
    font-family: 'Comfortaa', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.login-form-container {
    margin-top: 2rem;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.login-form .input-field {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.2em;
    text-align: center;
    transition: all 0.3s ease;
}

.login-form .input-field:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 20px var(--glow-pink);
    background: rgba(0, 0, 0, 0.5);
}

.login-form .form-hint {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-align: center;
}

.btn-login-submit {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.login-page .auth-message {
    margin-top: 1rem;
    text-align: center;
}

/* Hide site content when login page is shown */
.site-content.hidden {
    display: none !important;
}

.login-page.hidden {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .login-container {
        padding: 1rem;
    }
    
    .login-content {
        padding: 2rem 1.5rem;
    }
    
    .login-title {
        font-size: 1.5rem;
    }
    
    .login-logo .logo-text {
        font-size: 1.5rem;
    }
}
