@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;700&family=Space+Grotesk:wght@300;400;700&family=Orbitron:wght@400;700;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

:root {
    --primary: #ff0080;
    --secondary: #00ff88;
    --accent: #00aaff;
    --gold: #FFD700;
    --purple: #8A2BE2;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --border: rgba(255, 255, 255, 0.1);
    --danger: #ff3030;
    --success: #00ff88;
    --warning: #ffa500;
}

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

body {
    font-family: 'Space Grotesk', sans-serif;
    background: radial-gradient(circle at 20% 80%, #1a0033 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, #330066 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, #001a33 0%, transparent 50%),
                linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    min-height: 100vh;
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

/* CYBERPUNK GRID BACKGROUND */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 0, 128, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 128, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -2;
    animation: grid-pulse 8s ease-in-out infinite;
}

@keyframes grid-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

/* FLOATING PARTICLES */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float-particles 8s ease-in-out infinite;
    opacity: 0.6;
}

.particle:nth-child(odd) {
    background: radial-gradient(circle, var(--primary), transparent);
    width: 4px;
    height: 4px;
}

.particle:nth-child(even) {
    background: radial-gradient(circle, var(--secondary), transparent);
    width: 3px;
    height: 3px;
}

@keyframes float-particles {
    0%, 100% { transform: translateY(100vh) scale(0) rotate(0deg); opacity: 0; }
    50% { transform: translateY(-10vh) scale(1) rotate(180deg); opacity: 1; }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(25px);
    border-bottom: 2px solid var(--primary);
    box-shadow: var(--glow-pink);
    padding: 15px 0;
    z-index: 2000;
    transition: all 0.4s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--gold), var(--primary), transparent);
    animation: nav-scan 4s ease-in-out infinite;
}

@keyframes nav-scan {
    0%, 100% { opacity: 0.5; transform: translateX(-100%); }
    50% { opacity: 1; transform: translateX(100%); }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary), var(--gold), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    text-shadow: var(--glow-pink);
    transition: all 0.3s ease;
    position: relative;
}

.nav-logo::before {
    content: '✨';
    margin-right: 10px;
    animation: sparkle 2s ease-in-out infinite;
}

.nav-logo:hover {
    transform: scale(1.1);
    text-shadow: 0 0 40px var(--primary);
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    perspective: 1000px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform-style: preserve-3d;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 0, 128, 0.1), 
        rgba(0, 255, 136, 0.1), 
        rgba(0, 170, 255, 0.1));
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateZ(-1px) scale(0.8);
    border-radius: 12px;
}

.nav-link:hover {
    transform: translateY(-5px) rotateX(15deg) rotateY(5deg) scale(1.05);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 
        0 10px 30px rgba(255, 0, 128, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 20px var(--primary);
}

.nav-link:hover::before {
    opacity: 1;
    transform: translateZ(-1px) scale(1);
}

.nav-link.active {
    background: rgba(255, 0, 128, 0.15);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--glow-pink);
    transform: translateY(-2px) scale(1.02);
}

.mobile-toggle {
    display: none;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--glow-pink);
}

/* ===== SOCIAL LINKS BAR ===== */
.social-bar {
    position: fixed;
    top: 73px;
    margin-top: 5px;
    margin-bottom: 5px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 0, 128, 0.3);
    padding: 10px 0;
    z-index: 1500;
    transition: all 0.3s ease;
}

.social-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::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.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 5px 20px rgba(255, 0, 128, 0.3);
}

.social-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px currentColor);
}

/* ===== VIP ACCESS BANNER ===== */
.vip-banner {
    position: fixed;
    top: 80px;
    margin-top: 50px;
    margin-bottom: 50px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: white;
    text-align: center;
    padding: 12px 20px;
    z-index: 1400;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: vip-pulse 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

@keyframes vip-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 128, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 0, 128, 0.8); }
}

.vip-banner:hover {
    transform: scale(1.02);
    box-shadow: 0 0 60px rgba(255, 0, 128, 1) !important;
}

/* ===== VERIFICATION BADGES ===== */
.verification-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
    padding-top: 160px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.badge.verified {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.badge.recent {
    background: linear-gradient(135deg, var(--primary), #e6007a);
    color: white;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.4);
}

.badge.premium {
    background: linear-gradient(135deg, var(--gold), #ffc700);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.badge:hover {
    transform: translateY(-2px) scale(1.05);
}

/* ===== QUICK ACCESS FLOATING BAR ===== */
.quick-access-bar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2000;
}

.quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.quick-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.quick-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #005f99);
}

.quick-btn.onlyfans {
    background: linear-gradient(135deg, #00aaff, #0088cc);
}

.quick-btn.vip-access {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    animation: vip-access-pulse 3s ease-in-out infinite;
}

@keyframes vip-access-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 0, 128, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(255, 0, 128, 0.6); }
}

.quick-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

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

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

/* ===== MAIN CONTAINER ===== */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

/* ===== GALLERY TITLE ===== */
.gallery-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.preview-section {
    background: linear-gradient(145deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.05));
    backdrop-filter: blur(25px);
    border: 2px solid var(--secondary);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.preview-section::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--secondary), var(--gold), var(--secondary));
    border-radius: 23px;
    opacity: 0.2;
    animation: preview-pulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes preview-pulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

.preview-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.preview-text {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
}

.preview-highlight {
    color: var(--gold);
    font-weight: 700;
    background: rgba(255, 215, 0, 0.1);
    padding: 2px 8px;
    border-radius: 5px;
}

/* ===== GALLERY GRID - NOVA VERSÃO RESPONSIVA ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* BREAKPOINTS ESPECÍFICOS PARA MELHOR CONTROLE */

/* Desktop Grande (1400px+) - 5 colunas */
@media (min-width: 1400px) {
    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
    }
}

/* Desktop Médio (1200px - 1399px) - 4 colunas */
@media (min-width: 1200px) and (max-width: 1399px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 22px;
    }
}

/* Desktop Pequeno/Tablet Landscape (992px - 1199px) - 3 colunas */
@media (min-width: 992px) and (max-width: 1199px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Tablet Portrait (768px - 991px) - 2 colunas */
@media (min-width: 768px) and (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

/* Mobile Grande (576px - 767px) - 2 colunas */
@media (min-width: 576px) and (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Mobile Pequeno (até 575px) - 1 coluna */
@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
}

.photo-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(25px);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 12px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    width: 100%;
    cursor: pointer;
    min-height: 200px;
}

.photo-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--primary), var(--gold), var(--secondary));
    border-radius: 23px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.photo-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
}

.photo-card:hover::before {
    opacity: 0.3;
    filter: blur(15px);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.photo-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.free-badge, .locked-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.free-badge {
    background: var(--secondary);
    color: #000;
    animation: free-pulse 2s ease-in-out infinite;
}

.locked-badge {
    background: var(--primary);
    color: white;
}

@keyframes free-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.free-photo:hover {
    border-color: var(--secondary);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.3);
}

.locked-photo .photo-preview {
    filter: blur(6px);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 0, 128, 0.8), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 12px;
    cursor: pointer;
}

.locked-photo:hover .photo-overlay {
    opacity: 1;
}

.photo-icon {
    font-size: 2rem;
    color: white;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: lightboxFadeIn 0.3s ease-out;
}

.lightbox.active {
    display: flex;
}

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

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(255, 0, 128, 0.5);
    animation: lightboxImageIn 0.4s ease-out;
}

@keyframes lightboxImageIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 25px;
    margin-top: 20px;
    text-align: center;
}

.lightbox-title {
    color: var(--primary);
    font-family: 'JetBrains Mono', monospace;
    font-weight: bold;
    margin-bottom: 5px;
}

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

.lightbox-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(145deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.05));
    backdrop-filter: blur(25px);
    border: 2px solid var(--secondary);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--secondary), var(--gold), var(--secondary));
    border-radius: 23px;
    opacity: 0.2;
    animation: cta-pulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes cta-pulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

.cta-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--secondary);
    text-transform: uppercase;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.cta-highlight {
    color: var(--gold);
    font-weight: 700;
    background: rgba(255, 215, 0, 0.1);
    padding: 2px 8px;
    border-radius: 5px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold), var(--accent), var(--gold));
    border-radius: 22px;
    opacity: 0.2;
    animation: testimonial-glow 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes testimonial-glow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

.testimonials h3 {
    color: var(--gold);
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.testimonial {
    background: rgba(0, 255, 136, 0.1);
    border-left: 4px solid var(--secondary);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateX(5px);
    background: rgba(0, 255, 136, 0.15);
}

.testimonial p {
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.5;
}

.testimonial-author {
    color: var(--secondary);
    font-weight: bold;
    font-size: 0.9rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 180px 20px 50px;
}

.hero-split-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
    z-index: 10;
    position: relative;
}

.hero-content-left {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.hero-photo-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.vanessa-photo {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 0 40px rgba(255, 0, 128, 0.6));
    transition: all 0.5s ease;
    animation: photo-glow 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes photo-glow {
    0%, 100% { 
        filter: drop-shadow(0 0 40px rgba(255, 0, 128, 0.6));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 60px rgba(255, 215, 0, 0.8));
        transform: scale(1.02);
    }
}

.vanessa-photo:hover {
    filter: drop-shadow(0 0 80px rgba(255, 215, 0, 1));
    transform: scale(1.05);
}

.photo-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid transparent;
    border-radius: 25px;
    background: linear-gradient(45deg, var(--primary), var(--gold), var(--secondary), var(--accent));
    background-size: 400% 400%;
    z-index: 1;
    animation: frame-rotate 10s linear infinite;
}

@keyframes frame-rotate {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 136, 0.2);
    border: 2px solid var(--secondary);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 30px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
    animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(0, 255, 136, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 50px rgba(0, 255, 136, 0.8); }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, 
        var(--primary), 
        var(--secondary), 
        var(--gold), 
        var(--accent), 
        var(--primary));
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: hero-gradient-flow 4s ease-in-out infinite;
    text-shadow: 0 0 60px rgba(255, 0, 128, 0.5);
    line-height: 1.1;
}

@keyframes hero-gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--text-primary);
    max-width: 500px;
}

.hero-cta-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
}

.hero-cta::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.6s ease;
}

.hero-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(255, 0, 128, 0.5),
        0 0 60px rgba(255, 0, 128, 0.4);
    border-color: var(--gold);
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta.secondary {
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.hero-cta.secondary:hover {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--text-primary);
}

/* ===== STREET SECTION ===== */
.street-section {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.3);
}

.street-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.street-photo-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.street-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.4);
    object-fit: cover;
}

.street-content {
    flex: 1;
    max-width: 600px;
}

.street-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(45deg, var(--secondary), var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.street-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.street-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: #1a9059;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.street-button:hover {
    background-color: #63f385;
    color: #142fdd;
}

/* ===== VIP CTA SECTION ===== */
.vip-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, 
        rgba(255, 0, 128, 0.1), 
        rgba(255, 215, 0, 0.1));
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.vip-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary), var(--gold), var(--primary));
    opacity: 0.1;
    animation: vip-bg-flow 6s ease-in-out infinite;
}

@keyframes vip-bg-flow {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

.vip-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.vip-cta-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vip-cta-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-weight: 300;
}

.vip-cta-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vip-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--primary), var(--gold), var(--secondary));
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.4);
    position: relative;
    overflow: hidden;
    animation: vip-cta-pulse 4s ease-in-out infinite;
}

@keyframes vip-cta-pulse {
    0%, 100% { 
        box-shadow: 0 15px 40px rgba(255, 0, 128, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 20px 60px rgba(255, 0, 128, 0.6);
        transform: scale(1.02);
    }
}

.vip-cta-button::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.6s ease;
}

.vip-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 25px 60px rgba(255, 0, 128, 0.8),
        0 0 80px rgba(255, 215, 0, 0.6);
}

.vip-cta-button:hover::before {
    left: 100%;
}

/* ===== PLATFORMS SECTION ===== */
.platforms-section {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.3);
}

.platforms-container {
    max-width: 1400px;
    margin: 0 auto;
}

.platforms-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(45deg, var(--secondary), var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.platform-card {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.08), 
        rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(25px);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--secondary), var(--gold), var(--primary), var(--accent));
    border-radius: 23px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.platform-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 0 60px rgba(0, 255, 136, 0.4),
        0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: var(--secondary);
}

.platform-card:hover::before {
    opacity: 0.3;
    filter: blur(15px);
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.platform-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.platform-card:hover .platform-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px currentColor);
}

.platform-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.platform-info .verified {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.platform-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    position: relative;
    overflow: hidden;
}

.platform-button::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.6s ease;
}

.platform-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(0, 255, 136, 0.5),
        0 0 60px rgba(0, 255, 136, 0.4);
    border-color: var(--gold);
}

.platform-button:hover::before {
    left: 100%;
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.2);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== GALLERY PREVIEW ===== */
.gallery-preview {
    padding: 80px 20px;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.gallery-item {
    position: relative;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.08), 
        rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(25px);
    border: 2px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--primary), var(--gold), var(--secondary));
    border-radius: 23px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
}

.gallery-item:hover::before {
    opacity: 0.4;
    filter: blur(15px);
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.gallery-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

.gallery-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
}

.gallery-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 0, 128, 0.5);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, 
        rgba(5, 5, 5, 0.98), 
        rgba(10, 10, 20, 0.95));
    backdrop-filter: blur(25px);
    border-top: 2px solid var(--primary);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary), 
        var(--gold), 
        var(--secondary), 
        var(--primary), 
        transparent);
    animation: footer-scan 6s ease-in-out infinite;
}

@keyframes footer-scan {
    0%, 100% { opacity: 0.6; transform: translateX(-100%); }
    50% { opacity: 1; transform: translateX(100%); }
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px 40px;
}

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

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

.footer-section h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    transform: scale(1.2);
}

.footer-social-extended {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social-link::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.5s ease;
}

.footer-social-link:hover::before {
    left: 100%;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 5px 20px rgba(255, 0, 128, 0.3);
}

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}

.contact-info h4 {
    color: var(--primary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.contact-item i {
    color: var(--primary);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    
    .nav-menu {
        position: fixed;
        top: 73px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 73px);
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 15px;
        transition: right 0.4s ease;
        border-left: 2px solid var(--primary);
        z-index: 2100;
    }
    
    .nav-menu.active { right: 0; }

    .social-bar {
        top: 73px;
        padding: 8px 0;
    }
    
    .social-container {
        padding: 0 15px;
        gap: 8px;
    }
    
    .social-link {
        padding: 6px 10px;
        font-size: 0.7rem;
        gap: 6px;
    }
    
    .social-icon {
        width: 16px;
        height: 16px;
    }

    .vip-banner {
        top: 110px;
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .verification-badges {
        gap: 10px;
        padding-top: 160px;
    }

    .badge {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .quick-access-bar {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }

    .quick-btn {
        width: 50px;
        height: 50px;
    }

    .hero-section {
        padding-top: 180px;
    }

    .hero-split-container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .vip-cta-title {
        font-size: 2rem;
    }

    .platforms-title,
    .gallery-title {
        font-size: 2rem;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
    }

    /* Gallery specific mobile adjustments */
    .photo-card {
        padding: 8px;
        border-radius: 15px;
        min-height: 180px;
    }
    
    .photo-placeholder {
        border-radius: 10px;
    }
    
    .photo-preview {
        border-radius: 10px;
    }
    
    .free-badge, .locked-badge {
        top: 6px;
        right: 6px;
        padding: 3px 6px;
        font-size: 0.6rem;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: -60px;
    }

    .lightbox-next {
        right: -60px;
    }

    .street-container {
        flex-direction: column;
        gap: 40px;
    }

    .street-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 0 10px 40px;
    }

    .header-title {
        font-size: 2rem;
    }

    .photo-card {
        padding: 6px;
        border-radius: 12px;
        min-height: 250px;
    }

    .lightbox-nav {
        display: none;
    }

    .lightbox-close {
        top: -50px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .vip-cta-title {
        font-size: 1.5rem;
    }

    .street-title {
        font-size: 1.8rem;
    }

    .platforms-title,
    .gallery-title {
        font-size: 1.5rem;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary), var(--gold));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--gold), var(--primary));
}

::selection {
    background: rgba(255, 0, 128, 0.3);
    color: var(--text-primary);
}

/* ===== LOADING ===== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ===== UTILITY CLASSES ===== */
.privacy-policy {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    margin-bottom: 30px;
    max-width: 800px;   
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.right {
    text-align: right;
}

.ul {
    list-style: none;
    align-items: center;
    justify-content: center;
}


/* ===== start new here  ===== */

        /* STATS */
        .stats-sectioon {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 40px auto;
            max-width: 1400px;
            padding: 0 20px;
        }

        .stat-carrd {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-carrd:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 15px 35px rgba(255, 0, 128, 0.3);
        }

        .statt-number {
            font-family: 'Orbitron', monospace;
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary);
            display: block;
            margin-bottom: 5px;
        }

        .statt-label {
            color: var(--text-secondary);
            font-size: 0.9rem;
            text-transform: uppercase;
            font-weight: 600;
        }

        /* MAIN CONTAINER */
        .mainn-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px 40px;
        }

        /* GALLERY */
        .galeria-title {
            font-family: 'Orbitron', monospace;
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 30px;
            background: linear-gradient(45deg, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .preview-sectioon {
            background: linear-gradient(145deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.05));
            backdrop-filter: blur(25px);
            border: 2px solid var(--secondary);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .preview-sectioon::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(45deg, var(--secondary), var(--gold), var(--secondary));
            border-radius: 23px;
            opacity: 0.2;
            animation: preview-pulse 4s ease-in-out infinite;
            z-index: -1;
        }

        @keyframes preview-pulse {
            0%, 100% { opacity: 0.2; }
            50% { opacity: 0.4; }
        }

        .preview-titlee {
            font-family: 'Orbitron', monospace;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .preview-textt {
            color: var(--text-primary);
            font-size: 1rem;
            line-height: 1.6;
        }

        .preview-highlightt {
            color: var(--gold);
            font-weight: 700;
            background: rgba(255, 215, 0, 0.1);
            padding: 2px 8px;
            border-radius: 5px;
        }

        /* GALLERY GRID */
        .galeria-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .photoo-card {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
            backdrop-filter: blur(25px);
            border: 2px solid var(--border);
            border-radius: 20px;
            padding: 12px;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            aspect-ratio: 3/4;
            width: 100%;
            cursor: pointer;
        }

        .photoo-card::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(45deg, var(--primary), var(--gold), var(--secondary));
            border-radius: 23px;
            opacity: 0;
            transition: all 0.5s ease;
            z-index: -1;
        }

        .photoo-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: var(--primary);
        }

        .photo-card:hover::before {
            opacity: 0.3;
            filter: blur(15px);
        }

        .photoo-placeholder {
            width: 100%;
            height: 100%;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
        }

        .photoo-preview {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .free-badgee, .loocked-badge {
            position: absolute;
            top: 8px;
            right: 8px;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: bold;
            z-index: 2;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .free-badgee {
            background: var(--secondary);
            color: #000;
            animation: free-pulse 2s ease-in-out infinite;
        }

        .loocked-badge {
            background: var(--primary);
            color: white;
        }

        @keyframes free-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .free-photoo:hover {
            border-color: var(--secondary);
            box-shadow: 0 15px 35px rgba(0, 255, 136, 0.3);
        }

        .loocked-photoo .photo-preview {
            filter: blur(6px);
        }

        .photoo-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255, 0, 128, 0.8), rgba(0, 0, 0, 0.5));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
            border-radius: 12px;
            cursor: pointer;
        }

        .loocked-photoo:hover .photo-overlay {
            opacity: 1;
        }

        .photoo-icon {
            font-size: 2rem;
            color: white;
            animation: shake 0.5s ease-in-out;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-3px); }
            75% { transform: translateX(3px); }
        }

        /* LIGHTBOX */
        .lightboxok {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            animation: lightboxFadeIn 0.3s ease-out;
        }

        .lightboxok.active {
            display: flex;
        }

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

        .lightboxok-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .lightboxok-image {
            max-width: 100%;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 15px;
            box-shadow: 0 0 50px rgba(255, 0, 128, 0.5);
            animation: lightboxImageIn 0.4s ease-out;
        }

        @keyframes lightboxImageIn {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .lightboxok-info {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 15px 25px;
            margin-top: 20px;
            text-align: center;
        }

        .lightboxok-title {
            color: var(--primary);
            font-family: 'JetBrains Mono', monospace;
            font-weight: bold;
            margin-bottom: 5px;
        }

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

        .lightboxok-close {
            position: absolute;
            top: -60px;
            right: 0;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .lightboxok-close:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: scale(1.1);
        }

        .lightboxok-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .lightboxok-nav:hover {
            background: var(--secondary);
            border-color: var(--secondary);
            transform: translateY(-50%) scale(1.1);
        }

        .lightboxok-prev {
            left: -80px;
        }

        .lightboxok-next {
            right: -80px;
        }

        /* CTA SECTION */
        .cta-section {
            background: linear-gradient(145deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.05));
            backdrop-filter: blur(25px);
            border: 2px solid var(--secondary);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(45deg, var(--secondary), var(--gold), var(--secondary));
            border-radius: 23px;
            opacity: 0.2;
            animation: cta-pulse 4s ease-in-out infinite;
            z-index: -1;
        }

        @keyframes cta-pulse {
            0%, 100% { opacity: 0.2; }
            50% { opacity: 0.4; }
        }

        .cta-title {
            font-family: 'Orbitron', monospace;
            font-size: 1.8rem;
            font-weight: 900;
            margin-bottom: 15px;
            color: var(--secondary);
            text-transform: uppercase;
        }

        .cta-text {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--text-primary);
        }

        .cta-highlight {
            color: var(--gold);
            font-weight: 700;
            background: rgba(255, 215, 0, 0.1);
            padding: 2px 8px;
            border-radius: 5px;
        }
