/* ==========================================================================
   Exposure Club Dark Theme Design System
   ========================================================================== */
:root {
    /* Colors */
    --bg-color: #060606;
    --card-bg: #111111;
    --text-main: #ffffff;
    --text-muted: #888888;
    --border-color: #222222;
    
    --primary-red: #ff2020;
    --primary-red-glow: rgba(255, 32, 32, 0.4);
    --primary-red-hover: #ff4040;
    
    /* Typography */
    --font-sans: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Layout */
    --container-width: 1000px;
    
    /* Transitions */
    --transition: 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

.section-padding {
    padding: 100px 5%;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px; /* Slightly rounded edges, not pill */
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-red);
    color: #ffffff;
    border: 1px solid var(--primary-red);
}

.btn-glow {
    box-shadow: 0 0 20px var(--primary-red-glow);
}

.btn-primary:hover {
    background-color: var(--primary-red-hover);
    border-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 32, 32, 0.6);
}

/* ==========================================================================
   Header & Logo
   ========================================================================== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 5%;
    display: flex;
    justify-content: flex-start;
    z-index: 100;
}

.logo {
    font-family: var(--font-sans);
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -2px;
    display: flex;
    align-items: center;
    user-select: none;
    cursor: pointer;
    transition: var(--transition);
}

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

.logo-n {
    color: var(--text-main);
}

.logo-s {
    color: var(--primary-red);
    text-shadow: 0 0 15px var(--primary-red-glow);
    position: relative;
    left: -2px;
}

.logo::before {
    content: '//';
    color: var(--primary-red);
    font-family: var(--font-mono);
    font-size: 1rem;
    margin-right: 10px;
    font-weight: 700;
    opacity: 0.8;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid var(--primary-red);
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--primary-red);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-red);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.text-glitch {
    color: var(--primary-red);
    text-shadow: 0 0 30px var(--primary-red-glow);
    display: block;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

.text-highlight {
    color: var(--primary-red);
    font-weight: 800;
    text-shadow: 0 0 10px var(--primary-red-glow);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.no-cc {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Shorts Showcase (Hero)
   ========================================================================== */
.shorts-showcase {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.short-container {
    width: 220px; /* 9:16 approx ratio */
    height: 390px;
    border-radius: 16px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.short-container:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--primary-red-glow);
}

/* Style for any iframe or video added inside */
.short-container video,
.short-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.short-mockup {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    gap: 15px;
}

.play-svg {
    width: 40px;
    height: 40px;
    color: var(--primary-red);
    opacity: 0.8;
}

.mouse-icon {
    width: 24px;
    height: 36px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    opacity: 0.6;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--text-muted);
    border-radius: 2px;
    margin-top: 6px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* ==========================================================================
   VIP Section
   ========================================================================== */
.vip-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: radial-gradient(circle at center, #110000 0%, var(--bg-color) 70%);
}

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

.lock-icon {
    margin-bottom: 15px;
}

.vip-mono {
    font-family: var(--font-mono);
    color: var(--primary-red);
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.vip-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    text-shadow: 0 0 20px var(--primary-red-glow);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.vip-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

.vip-subtitle strong {
    color: var(--text-main);
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    width: 100%;
}

.vip-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
}

.vip-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(255, 32, 32, 0.1);
    transform: translateY(-5px);
}

.card-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 32, 32, 0.05);
    border-radius: 8px;
}

.card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   Success Stories Section
   ========================================================================== */
.success-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-color);
    overflow: hidden;
}

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

.success-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-red);
    text-shadow: 0 0 20px var(--primary-red-glow);
    margin-bottom: 15px;
}

.success-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.success-gallery {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px 0;
    overflow: hidden;
    display: flex;
}

.success-gallery::before,
.success-gallery::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.success-gallery::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}
.success-gallery::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.success-marquee {
    display: flex;
    gap: 30px;
    padding: 0 15px; /* Half of gap to balance */
    width: max-content;
    animation: scrollGallery 30s linear infinite;
}

.success-marquee:hover {
    animation-play-state: paused;
}

@keyframes scrollGallery {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 15px)); /* Half of max-width minus half gap */
    }
}

.success-img {
    height: 350px;
    width: auto;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    background-color: var(--card-bg);
}

.success-img:hover {
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(255, 32, 32, 0.15);
    transform: translateY(-5px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 5% 40px;
    text-align: center;
}

.footer-warning {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--primary-red);
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.footer-btn {
    padding: 12px 30px;
    margin-bottom: 30px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #444444;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .vip-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}
