/* ==========================================
   PlayGirl Elite - Luxury 3D Website
   Premium Dating & Social Platform
   ========================================== */

/* CSS Variables */
:root {
    --primary-pink: #ff69b4;
    --primary-magenta: #ff1493;
    --primary-hot: #ff007f;
    --neon-cyan: #00f5ff;
    --neon-blue: #0080ff;
    --gold: #ffd700;
    --rose-gold: #b76e79;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 105, 180, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-script: 'Sacramento', cursive;
    
    --glow-pink: 0 0 20px rgba(255, 105, 180, 0.5), 0 0 40px rgba(255, 105, 180, 0.3), 0 0 60px rgba(255, 105, 180, 0.1);
    --glow-cyan: 0 0 20px rgba(0, 245, 255, 0.5), 0 0 40px rgba(0, 245, 255, 0.3);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
}

/* Custom Cursor */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* Background Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.5;
}

/* Particles Container */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-pink);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-pink);
    animation: float-particle 15s infinite ease-in-out;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Selection */
::selection {
    background: var(--primary-pink);
    color: var(--dark-bg);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-pink), var(--primary-magenta));
    border-radius: 4px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

.neon-text {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-magenta), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(255, 105, 180, 0.5));
}

/* Glass Card Effect */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    border-color: rgba(255, 105, 180, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.1);
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 105, 180, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 2rem;
    background: rgba(10, 10, 15, 0.95);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 45px;
    height: 45px;
    position: relative;
}

.logo-icon.small {
    width: 35px;
    height: 35px;
}

.cat-logo {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.5));
    animation: logo-glow 3s ease-in-out infinite;
}

@keyframes logo-glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 105, 180, 0.8));
    }
}

.logo-text {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--primary-pink);
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
    text-decoration: none;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-pink), var(--neon-cyan));
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.social-btn.twitter {
    background: rgba(255, 105, 180, 0.1);
    color: var(--primary-pink);
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.social-btn.twitter:hover {
    background: var(--primary-pink);
    color: white;
    box-shadow: var(--glow-pink);
}

.social-btn.medium {
    background: rgba(0, 171, 108, 0.1);
    color: #00ab6c;
    border: 1px solid rgba(0, 171, 108, 0.3);
}

.social-btn.medium:hover {
    background: #00ab6c;
    color: white;
    box-shadow: 0 0 20px rgba(0, 171, 108, 0.5);
}

/* Buttons */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-magenta));
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary.large {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-pink);
}

.btn-glow {
    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;
}

.btn-primary:hover .btn-glow {
    left: 100%;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary.large {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

.btn-secondary svg {
    width: 18px;
    height: 18px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-pink);
    color: var(--primary-pink);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--primary-pink);
    transition: all 0.3s ease;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 5% 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(255, 105, 180, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    z-index: 10;
}

.badge-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-pink);
}

.pulse {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
    }
}

.pump-logo {
    height: 30px;
    filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.5));
}

.hero-title {
    margin-bottom: 2.5rem;
    margin-top: 2rem;
}

.title-line {
    display: block;
    font-size: 1.2rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.title-main {
    display: block;
    font-family: var(--font-script);
    font-size: 4.5rem;
    line-height: 1.3;
    margin: 30px 0 35px 0;
    padding: 0;
}

.title-sub {
    display: block;
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 500px;
}

.highlight {
    color: var(--primary-pink);
    font-weight: 600;
}

/* Contract Address Box */
.contract-box {
    background: rgba(255, 105, 180, 0.05);
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.contract-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.contract-address {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#contract-text {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--neon-cyan);
    letter-spacing: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copy-btn {
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--neon-cyan);
}

.copy-btn:hover {
    background: var(--neon-cyan);
    color: var(--dark-bg);
}

.copy-btn svg {
    width: 18px;
    height: 18px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-pink), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255, 105, 180, 0.5), transparent);
}

/* Hero Right - Coin Container */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coin-container {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#coin-3d {
    width: 400px;
    height: 400px;
    position: relative;
    z-index: 10;
}

#coin-3d canvas {
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
}

.coin-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.3) 0%, transparent 70%);
    animation: coin-glow 3s ease-in-out infinite;
}

@keyframes coin-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.coin-rings {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 105, 180, 0.2);
    animation: ring-pulse 4s ease-in-out infinite;
}

.ring-1 {
    width: 350px;
    height: 350px;
    animation-delay: 0s;
}

.ring-2 {
    width: 400px;
    height: 400px;
    animation-delay: 0.5s;
}

.ring-3 {
    width: 450px;
    height: 450px;
    animation-delay: 1s;
}

@keyframes ring-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.6;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--primary-pink);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* ==========================================
   SECTIONS COMMON
   ========================================== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    padding: 120px 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.about-card {
    padding: 2.5rem;
    text-align: center;
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(0, 245, 255, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--primary-pink);
}

.about-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark-bg), var(--darker-bg));
    position: relative;
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: grid;
    grid-template-columns: 100px 1fr 150px;
    gap: 3rem;
    align-items: center;
    padding: 2.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.feature-item:hover {
    border-color: rgba(255, 105, 180, 0.3);
    transform: translateX(10px);
    box-shadow: -10px 0 40px rgba(255, 105, 180, 0.1);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.3), rgba(255, 105, 180, 0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-orb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
}

.orb-1 {
    background: radial-gradient(circle at 30% 30%, #ff69b4, #ff1493);
    box-shadow: 0 0 40px rgba(255, 105, 180, 0.5);
    animation: float 4s ease-in-out infinite;
}

.orb-2 {
    background: radial-gradient(circle at 30% 30%, #00f5ff, #0080ff);
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.5);
    animation: float 4s ease-in-out infinite 0.5s;
}

.orb-3 {
    background: radial-gradient(circle at 30% 30%, #ffd700, #ff8c00);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
    animation: float 4s ease-in-out infinite 1s;
}

.orb-4 {
    background: radial-gradient(circle at 30% 30%, #9400d3, #ff00ff);
    box-shadow: 0 0 40px rgba(148, 0, 211, 0.5);
    animation: float 4s ease-in-out infinite 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

/* ==========================================
   TOKENOMICS SECTION
   ========================================== */
.tokenomics-section {
    padding: 120px 0;
    position: relative;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.token-chart-container {
    display: flex;
    justify-content: center;
}

.token-chart {
    position: relative;
    width: 300px;
    height: 300px;
}

.chart-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.chart-segment {
    transition: all 0.3s ease;
}

.chart-segment:hover {
    filter: brightness(1.2);
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.total-supply {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-pink), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.supply-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.token-distribution {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.distribution-item {
    display: grid;
    grid-template-columns: 15px 1fr;
    gap: 1rem;
    align-items: center;
}

.dist-color {
    width: 15px;
    height: 15px;
    border-radius: 4px;
}

.dist-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.dist-label {
    color: var(--text-secondary);
}

.dist-value {
    font-weight: 600;
    color: var(--text-primary);
}

.dist-bar {
    grid-column: 2;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.dist-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

/* Token Features */
.token-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.token-feature {
    padding: 2rem;
    text-align: center;
}

.tf-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.token-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.token-feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================
   ROADMAP SECTION
   ========================================== */
.roadmap-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--darker-bg), var(--dark-bg));
}

.roadmap-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.timeline-line {
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-pink), var(--neon-cyan), var(--gold), var(--primary-magenta));
}

.roadmap-item {
    position: relative;
    padding-top: 50px;
}

.roadmap-dot {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--dark-bg);
    border: 3px solid var(--primary-pink);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.roadmap-dot.active {
    background: var(--primary-pink);
    box-shadow: var(--glow-pink);
}

.roadmap-content {
    padding: 2rem;
    height: 100%;
}

.phase {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-magenta));
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.roadmap-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.roadmap-content ul {
    list-style: none;
}

.roadmap-content li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.roadmap-content li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-pink);
    font-size: 0.7rem;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 120px 0;
    position: relative;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.cta-orb.orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 105, 180, 0.2);
    top: -100px;
    left: -100px;
}

.cta-orb.orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(0, 245, 255, 0.15);
    bottom: -100px;
    right: -100px;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 105, 180, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-pink);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-pink);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-pink);
    color: white;
    box-shadow: var(--glow-pink);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-description {
        max-width: 600px;
    }
    
    .contract-box {
        max-width: 100%;
    }
    
    .hero-right {
        order: -1;
    }
    
    .coin-container {
        width: 350px;
        height: 350px;
    }
    
    .live-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .live-card.featured-stream {
        grid-row: span 1;
    }
    
    .live-card.featured-stream .stream-preview {
        height: 220px;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .token-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .roadmap-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-line {
        display: none;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .navbar {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-section {
        padding: 100px 1rem 40px;
    }
    
    .title-main {
        font-size: 4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary.large,
    .btn-secondary.large {
        width: 100%;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .live-grid {
        grid-template-columns: 1fr;
    }
    
    .live-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stream-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-number {
        font-size: 2.5rem;
    }
    
    .feature-visual {
        display: none;
    }
    
    .token-features {
        grid-template-columns: 1fr;
    }
    
    .roadmap-timeline {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cta-container {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .coin-container {
        width: 280px;
        height: 280px;
    }
}

/* Animations for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-left > * {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.2s; }
.hero-left > *:nth-child(3) { animation-delay: 0.3s; }
.hero-left > *:nth-child(4) { animation-delay: 0.4s; }
.hero-left > *:nth-child(5) { animation-delay: 0.5s; }
.hero-left > *:nth-child(6) { animation-delay: 0.6s; }

/* ==========================================
   HERO BACKGROUND IMAGE
   ========================================== */

/* Hot Link Animation */
.nav-link.hot-link {
    color: #ff4444 !important;
    animation: hot-pulse 1.5s ease-in-out infinite;
}

@keyframes hot-pulse {
    0%, 100% {
        text-shadow: 0 0 5px #ff4444;
    }
    50% {
        text-shadow: 0 0 20px #ff4444, 0 0 30px #ff0000;
    }
}

/* ==========================================
   HERO CAROUSEL WITH MAGIC EFFECTS
   ========================================== */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide.fade-out {
    opacity: 0;
    transform: scale(1.05);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.6) saturate(1.2);
}

.hero-carousel .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 15, 0.5) 0%,
        rgba(10, 10, 15, 0.3) 30%,
        rgba(10, 10, 15, 0.6) 70%,
        rgba(10, 10, 15, 1) 100%
    );
    z-index: 2;
}

/* Magic sparkles effect */
.magic-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: sparkle-float 3s ease-in-out infinite;
    box-shadow: 0 0 10px #ff69b4, 0 0 20px #ff69b4, 0 0 30px #fff;
}

@keyframes sparkle-float {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-100px) scale(1);
    }
}

@keyframes sparkle-burst {
    0% {
        opacity: 1;
        transform: scale(0) translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: scale(2) translate(var(--tx, 100px), var(--ty, -100px));
    }
}

.sparkle.burst {
    --tx: calc((0.5 - var(--random, 0.5)) * 200px);
    --ty: calc((0.5 - var(--random, 0.5)) * 200px);
}

/* Magic transition effects */
.hero-slide.magic-in {
    animation: magicSlideIn 1.5s ease-out forwards;
}

@keyframes magicSlideIn {
    0% {
        opacity: 0;
        transform: scale(1.2) rotate(2deg);
        filter: blur(20px) brightness(2);
    }
    50% {
        filter: blur(5px) brightness(1.5);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: blur(0) brightness(1);
    }
}

.hero-slide.magic-out {
    animation: magicSlideOut 1.5s ease-in forwards;
}

@keyframes magicSlideOut {
    0% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
    100% {
        opacity: 0;
        transform: scale(0.95);
        filter: blur(10px) brightness(0.5);
    }
}

/* Glitter overlay during transition */
.hero-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255,105,180,0.1) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Legacy support - hide old bg-image */
.hero-bg-image {
    display: none;
}

.hero-bg-image .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.4;
}

/* ==========================================
   LIVE CAMS SECTION
   ========================================== */ */
.livecams-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--darker-bg), #0f0010, var(--darker-bg));
    position: relative;
    overflow: hidden;
}

.livecams-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0000, #ff69b4, #ff0000, transparent);
    animation: live-line 3s linear infinite;
}

@keyframes live-line {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.live-header {
    text-align: center;
    margin-bottom: 3rem;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ff4444;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #ff0000;
    border-radius: 50%;
    animation: live-pulse 1s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
}

.live-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.live-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.live-card:hover {
    transform: translateY(-5px);
    border-color: #ff69b4;
    box-shadow: 0 20px 50px rgba(255, 0, 100, 0.3);
}

.live-card.featured-stream {
    grid-row: span 2;
}

.stream-preview {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.live-card.featured-stream .stream-preview {
    height: 400px;
}

.stream-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.live-card:hover .stream-preview img {
    transform: scale(1.05);
}

.stream-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.8) 100%);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.live-badge-stream {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    width: fit-content;
    animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 0, 0, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 0, 0, 0.8); }
}

.red-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

.viewer-count {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.8rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    font-size: 0.8rem;
    color: white;
    width: fit-content;
    margin-top: 0.5rem;
}

.viewer-count svg {
    width: 16px;
    height: 16px;
}

.stream-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.tip-btn, .private-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tip-btn {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
}

.tip-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.private-btn {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
}

.private-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.5);
}

/* Stream Wave Animation */
.stream-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    display: flex;
    gap: 2px;
    padding: 0 1rem;
    background: rgba(0, 0, 0, 0.5);
}

.stream-wave span {
    flex: 1;
    background: #ff69b4;
    animation: wave 0.5s ease-in-out infinite alternate;
}

.stream-wave span:nth-child(1) { animation-delay: 0s; }
.stream-wave span:nth-child(2) { animation-delay: 0.1s; }
.stream-wave span:nth-child(3) { animation-delay: 0.2s; }
.stream-wave span:nth-child(4) { animation-delay: 0.3s; }
.stream-wave span:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
    0% { height: 2px; }
    100% { height: 8px; }
}

.stream-info {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.streamer-avatar {
    position: relative;
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}

.streamer-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff69b4;
}

.online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #00ff88;
    border-radius: 50%;
    border: 2px solid var(--dark-bg);
    animation: pulse 2s infinite;
}

.streamer-details {
    flex: 1;
    min-width: 0;
}

.streamer-details h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #00f5ff;
    border-radius: 50%;
    font-size: 0.6rem;
    color: #000;
}

.stream-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.streamer-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.2rem 0.5rem;
    background: rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 10px;
    font-size: 0.7rem;
    color: var(--primary-pink);
}

.stream-price {
    text-align: right;
    flex-shrink: 0;
}

.price-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.price-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffd700;
}

/* Live CTA */
.live-cta {
    text-align: center;
}

.live-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

.live-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #ff69b4;
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
}

.stat-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Live Card Placeholder Gradients */
.stream-preview {
    background: linear-gradient(135deg, #2a1a2e, #1a0a1e);
}

.live-card:nth-child(1) .stream-preview {
    background: linear-gradient(135deg, #ff69b4, #c71585, #1a0a1e);
}

.live-card:nth-child(2) .stream-preview {
    background: linear-gradient(135deg, #00f5ff, #0066cc, #1a0a1e);
}

.live-card:nth-child(3) .stream-preview {
    background: linear-gradient(135deg, #ffd700, #ff6600, #1a0a1e);
}

.live-card:nth-child(4) .stream-preview {
    background: linear-gradient(135deg, #9400d3, #ff00ff, #1a0a1e);
}

.live-card:nth-child(5) .stream-preview {
    background: linear-gradient(135deg, #ff1493, #dc143c, #1a0a1e);
}

/* Avatar placeholders */
.streamer-avatar img {
    background: linear-gradient(135deg, #ff69b4, #9400d3);
}

/* ==========================================
   MODELS GALLERY SECTION
   ========================================== */
.models-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark-bg), var(--darker-bg));
    position: relative;
}

.models-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-pink), transparent);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.model-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.model-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-pink);
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3);
}

.model-card.featured {
    grid-row: span 2;
}

.model-card.featured .model-image {
    height: 100%;
}

.model-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.model-card.featured .model-image {
    height: calc(100% - 100px);
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.model-card:hover .model-image img {
    transform: scale(1.1);
}

.model-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 50%,
        rgba(10, 10, 15, 0.9) 100%
    );
    display: flex;
    align-items: flex-start;
    padding: 1rem;
}

.online-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid rgba(0, 255, 136, 0.5);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #00ff88;
}

.online-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.online-status.offline {
    background: rgba(255, 165, 0, 0.2);
    border-color: rgba(255, 165, 0, 0.5);
    color: #ffa500;
}

.online-status.offline::before {
    background: #ffa500;
    animation: none;
}

.model-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.model-badge.vip {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
}

.model-badge.new {
    background: linear-gradient(135deg, #00f5ff, #0080ff);
    color: #000;
}

.model-badge.hot {
    background: linear-gradient(135deg, #ff1493, #ff0000);
    color: #fff;
}

.model-badge.verified {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
}

.model-info {
    padding: 1.25rem;
}

.model-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.model-location {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.75rem;
}

.model-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.model-stats span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.models-cta {
    text-align: center;
}

.members-count {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==========================================
   SHOWCASE BANNER
   ========================================== */
.showcase-banner {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.banner-image {
    position: relative;
    overflow: hidden;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-banner:hover .banner-image img {
    transform: scale(1.05);
}

.banner-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: linear-gradient(90deg, transparent, var(--darker-bg));
}

.banner-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: var(--darker-bg);
}

.banner-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2), rgba(255, 20, 147, 0.2));
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
    width: fit-content;
}

.banner-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.banner-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 450px;
}

/* ==========================================
   FEATURED BANNER
   ========================================== */
.featured-banner {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 3rem;
}

.featured-item {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(30%);
}

.featured-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 50%,
        rgba(10, 10, 15, 0.95) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-item:hover .featured-overlay {
    opacity: 1;
}

.featured-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
}

.featured-text {
    text-align: center;
}

.featured-text h3 {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--primary-pink);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(255, 105, 180, 0.5);
}

.featured-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ==========================================
   IMAGE PLACEHOLDERS (beautiful gradients when no image)
   ========================================== */

/* Model card gradient backgrounds */
.model-image {
    background: linear-gradient(135deg, #2a1a2e 0%, #1a0a1e 100%);
    position: relative;
}

.model-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 105, 180, 0.3);
    border-radius: 50%;
    animation: placeholder-pulse 2s ease-in-out infinite;
}

.model-image::after {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: rgba(255, 105, 180, 0.5);
}

/* Hide placeholders when image loads */
.model-image img:not([src=""]):not([src*="undefined"]) ~ *,
.model-image img[src*=".jpg"]:not([onerror]) ~ * {
    display: none;
}

@keyframes placeholder-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

/* Unique gradients for each card */
.model-card:nth-child(1) .model-image {
    background: linear-gradient(135deg, #ff69b4 0%, #c71585 50%, #1a0a1e 100%);
}

.model-card:nth-child(2) .model-image {
    background: linear-gradient(135deg, #00f5ff 0%, #0080ff 50%, #1a0a1e 100%);
}

.model-card:nth-child(3) .model-image {
    background: linear-gradient(135deg, #ffd700 0%, #ff4500 50%, #1a0a1e 100%);
}

.model-card:nth-child(4) .model-image {
    background: linear-gradient(135deg, #9400d3 0%, #ff00ff 50%, #1a0a1e 100%);
}

.model-card:nth-child(5) .model-image {
    background: linear-gradient(135deg, #ff1493 0%, #dc143c 50%, #1a0a1e 100%);
}

.model-card:nth-child(6) .model-image {
    background: linear-gradient(135deg, #00ff88 0%, #008080 50%, #1a0a1e 100%);
}

/* Featured item placeholders */
.featured-item {
    background: linear-gradient(135deg, #2a1a2e 0%, #1a0a1e 100%);
}

.featured-item:nth-child(1) {
    background: linear-gradient(135deg, #ff69b4, #c71585, #1a0a1e);
}

.featured-item:nth-child(2) {
    background: linear-gradient(135deg, #00f5ff, #0066cc, #1a0a1e);
}

.featured-item:nth-child(3) {
    background: linear-gradient(135deg, #ffd700, #ff6600, #1a0a1e);
}

.featured-item:nth-child(4) {
    background: linear-gradient(135deg, #9400d3, #ff00ff, #1a0a1e);
}

/* Banner image placeholder */
.banner-image {
    background: linear-gradient(135deg, #ff69b4 0%, #9400d3 50%, #1a0a1e 100%);
}

/* Hero background placeholder */
.hero-bg-image {
    background: linear-gradient(135deg, 
        rgba(255, 105, 180, 0.3) 0%, 
        rgba(148, 0, 211, 0.2) 50%, 
        rgba(10, 10, 15, 1) 100%
    );
}

/* Silhouette placeholder icons */
.model-image img,
.banner-image img,
.featured-item img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.model-image img[src=""],
.model-image img:not([src]),
.banner-image img[src=""],
.banner-image img:not([src]),
.featured-item img[src=""],
.featured-item img:not([src]) {
    opacity: 0;
}

/* ==========================================
   RESPONSIVE ADJUSTMENTS FOR NEW SECTIONS
   ========================================== */
@media (max-width: 1200px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .model-card.featured {
        grid-row: span 1;
    }
    
    .model-card.featured .model-image {
        height: 300px;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
    }
    
    .banner-image {
        height: 400px;
    }
    
    .banner-image::after {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        background: linear-gradient(180deg, transparent, var(--darker-bg));
    }
}

@media (max-width: 768px) {
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-item {
        height: 250px;
    }
    
    .banner-text {
        padding: 2rem;
    }
    
    .banner-text h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-item {
        height: 300px;
    }
}

/* Launch Modal Styles */
.launch-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.launch-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 105, 180, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.9), rgba(255, 20, 147, 0.85));
    border-radius: 25px;
    padding: 60px 80px;
    text-align: center;
    box-shadow: 0 25px 80px rgba(255, 105, 180, 0.5), 0 0 100px rgba(255, 105, 180, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: modalPop 0.4s ease-out;
}

@keyframes modalPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.modal-close:hover {
    opacity: 1;
}

.modal-body h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
}

.modal-body .launch-date {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .modal-body h2 {
        font-size: 1.75rem;
    }
    
    .modal-body .launch-date {
        font-size: 1.2rem;
    }
}
