/* ============================================
   HYPERION LANDING PAGE - PROTOTYPE DESIGN
   Based on React prototype reference
   ============================================ */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    --hy-bg: #06080d;
    --hy-bg-elevated: #0a0e16;
    --hy-panel: rgba(14, 20, 30, 0.72);
    --hy-accent: #ff7a26;
    --hy-accent-glow: rgba(255, 122, 38, 0.4);
    --hy-accent-soft: rgba(255, 192, 0, 0.15);
    --hy-accent-2: #22d3ee;
    --hy-success: #3ddc84;
    --hy-warn: #fbbf24;
    --hy-danger: #ef4444;
    --hy-ink: #e7eef7;
    --hy-ink-2: #9aa8bd;
    --hy-ink-3: #5e6b80;
    --hy-border: rgba(255, 122, 38, 0.22);
    --hy-border-strong: rgba(255, 122, 38, 0.5);
    --hy-border-soft: rgba(255, 255, 255, 0.06);
    --hy-font-display: 'Michroma', 'Orbitron', sans-serif;
    --hy-font-title: 'Orbitron', sans-serif;
    --hy-font-body: 'Inter', 'Segoe UI', sans-serif;
    --hy-font-mono: 'JetBrains Mono', 'Consolas', monospace;
    --container-max: 1280px;
}

/* ============================================
   Animations
   ============================================ */
@keyframes hy-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes hy-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes hy-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes hy-sweep {
    from { transform: translateX(-100%); }
    to { transform: translateX(300%); }
}

@keyframes hy-glow-pulse {
    0%, 100% { box-shadow: 0 0 20px var(--hy-accent-glow); }
    50% { box-shadow: 0 0 40px var(--hy-accent-glow); }
}

/* ============================================
   Base Reset
   ============================================ */
.landing-page {
    position: relative;
    z-index: 1;
    animation: hy-fade-in 0.25s;
    min-height: 100vh;
    background: var(--hy-bg);
}

/* ============================================
   Header / Navigation
   ============================================ */
.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    background: linear-gradient(to bottom, rgba(6, 8, 13, 0.95), transparent);
    transition: all 0.3s ease;
}

.lp-header.scrolled {
    background: rgba(6, 8, 13, 0.98);
    backdrop-filter: blur(12px);
    padding: 12px 40px;
    border-bottom: 1px solid var(--hy-border);
}

.lp-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
}

.lp-nav-links {
    display: flex;
    gap: 48px;
}

.lp-nav-link {
    font-family: var(--hy-font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--hy-ink-2);
    transition: color 0.15s;
    padding: 8px 0;
    position: relative;
}

.lp-nav-link:hover,
.lp-nav-link.active {
    color: var(--hy-accent);
}

.lp-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--hy-accent);
    transition: width 0.3s;
}

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

.lp-nav-login {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--hy-font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--hy-ink-2);
    padding: 10px 20px;
    border: 1px solid #ffc000;
    background: var(--hy-accent-soft);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    transition: all 0.3s;
}

.lp-nav-login:hover {
    color: var(--hy-accent);
    border-color: var(--hy-accent);
    background: rgba(255, 192, 0, 0.2);
}

.lp-nav-login svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   HERO Section
   ============================================ */
.lp-hero {
    position: relative;
    min-height: 1280px;
    padding: 120px 36px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background media (video/image) */
.lp-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lp-hero-video,
.lp-hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.5) saturate(0.8);
}

.lp-hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.lp-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(6, 8, 13, 0.7) 100%);
    z-index: 1;
}

/* Big background HYPERION text */
.lp-hero-bg-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hy-font-display);
    font-size: clamp(80px, 18vw, 260px);
    color: transparent;
    -webkit-text-stroke: 1px var(--hy-border-soft);
    letter-spacing: 0.15em;
    opacity: 0.3;
    pointer-events: none;
    user-select: none;
    z-index: 2;
}

/* Radial nebula */
.lp-hero-nebula {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 38, 0.13), transparent 60%);
    pointer-events: none;
    z-index: 3;
}

/* Orbital rings */
/*.lp-hero-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
}

.lp-hero-ring--outer {
    width: 480px;
    height: 480px;
    border: 1px dashed rgba(255, 122, 38, 0.2);
    animation: hy-rotate 80s linear infinite;
}

.lp-hero-ring--inner {
    width: 320px;
    height: 320px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 122, 38, 0.13);
}*/

/* Hero content */
.lp-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Tagline */
.lp-hero-tagline {
    font-family: var(--hy-font-mono);
    font-size: 11px;
    color: var(--hy-accent);
    letter-spacing: 0.5em;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.lp-hero-tagline-line {
    width: 40px;
    height: 1px;
    background: var(--hy-accent);
}

/* Title */
.lp-hero-title {
    margin: 0 0 8px;
    font-family: var(--hy-font-display);
    font-size: clamp(28px, 5vw, 64px);
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--hy-ink);
    text-shadow: 0 0 30px var(--hy-accent-glow);
    line-height: 1;
}

.lp-hero-subtitle {
    margin: 0 0 32px;
    font-family: var(--hy-font-title);
    font-size: clamp(16px, 2.4vw, 26px);
    font-weight: 400;
    letter-spacing: 0.4em;
    color: var(--hy-accent);
}

/* Description */
.lp-hero-desc {
    max-width: 580px;
    text-align: center;
    font-size: 14px;
    color: var(--hy-ink-2);
    line-height: 1.7;
    margin-bottom: 36px;
}

/* CTA buttons */
.lp-hero-cta-group {
    display: flex;
    gap: 12px;
    margin-bottom: 50px;
}

.lp-btn {
    position: relative;
    padding: 14px 28px;
    font-family: var(--hy-font-display);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.22em;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 500px;
    height: 80px;

}

.lp-btn--primary {
    background: var(--hy-accent);
    color: #0a0a0a;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    box-shadow: 0 0 32px var(--hy-accent-glow);
}

.lp-btn--primary:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 48px var(--hy-accent-glow);
}

.lp-btn--secondary {
    background: transparent;
    color: var(--hy-ink);
    border: 1px solid var(--hy-border-strong);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.lp-btn--secondary:hover {
    border-color: var(--hy-accent);
    background: var(--hy-accent-soft);
}

/* Stats row */
.lp-hero-stats {
    display: flex;
    gap: 40px;
    font-family: var(--hy-font-mono);
}

.lp-hero-stat {
    text-align: center;
}

.lp-hero-stat-value {
    font-family: var(--hy-font-display);
    font-size: 26px;
    color: var(--hy-ink);
    letter-spacing: 0.05em;
}

.lp-hero-stat-label {
    font-size: 9px;
    color: var(--hy-ink-3);
    letter-spacing: 0.25em;
    margin-top: 2px;
    text-transform: uppercase;
}

/* ============================================
   Section Header Component
   ============================================ */
.lp-section {
    padding: 40px 36px;
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

.lp-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.lp-section-kicker {
    font-family: var(--hy-font-mono);
    font-size: 10px;
    color: var(--hy-accent);
    letter-spacing: 0.3em;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-section-kicker::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--hy-accent);
}

.lp-section-title {
    margin: 0;
    font-family: var(--hy-font-display);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--hy-ink);
}

.lp-section-subtitle {
    font-family: var(--hy-font-body);
    font-size: 12px;
    color: var(--hy-ink-2);
    margin-top: 6px;
}

.lp-section-right {
    font-family: var(--hy-font-mono);
    font-size: 10px;
    color: var(--hy-ink-3);
    letter-spacing: 0.18em;
}

/* ============================================
   Section 04: Prochaines Operations
   ============================================ */
.lp-ops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.lp-op-card {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px;
    background: var(--hy-panel);
    border: 1px solid var(--hy-border-soft);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    backdrop-filter: blur(8px);
    cursor: pointer;
    transition: all 0.15s;
}

.lp-op-card:hover {
    transform: translateY(-2px);
    border-color: var(--card-color, var(--hy-accent));
}

.lp-op-date {
    width: 56px;
    padding: 10px 0;
    text-align: center;
    flex-shrink: 0;
    background: rgba(255, 122, 38, 0.1);
    border: 1px solid rgba(255, 122, 38, 0.33);
}

.lp-op-card[data-color="orange"] .lp-op-date { background: rgba(255, 122, 38, 0.1); border-color: rgba(255, 122, 38, 0.33); }
.lp-op-card[data-color="yellow"] .lp-op-date { background: rgba(251, 191, 36, 0.1); border-color: rgba(251, 191, 36, 0.33); }
.lp-op-card[data-color="green"] .lp-op-date { background: rgba(61, 220, 132, 0.1); border-color: rgba(61, 220, 132, 0.33); }
.lp-op-card[data-color="cyan"] .lp-op-date { background: rgba(34, 211, 238, 0.1); border-color: rgba(34, 211, 238, 0.33); }
.lp-op-card[data-color="red"] .lp-op-date { background: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.33); }

.lp-op-date-day {
    font-family: var(--hy-font-display);
    font-size: 22px;
    line-height: 1;
    display: block;
}

.lp-op-card[data-color="orange"] .lp-op-date-day { color: var(--hy-accent); }
.lp-op-card[data-color="yellow"] .lp-op-date-day { color: var(--hy-warn); }
.lp-op-card[data-color="green"] .lp-op-date-day { color: var(--hy-success); }
.lp-op-card[data-color="cyan"] .lp-op-date-day { color: var(--hy-accent-2); }
.lp-op-card[data-color="red"] .lp-op-date-day { color: var(--hy-danger); }

.lp-op-date-month {
    font-family: var(--hy-font-mono);
    font-size: 9px;
    color: var(--hy-ink-2);
    letter-spacing: 0.2em;
    margin-top: 2px;
    display: block;
}

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

.lp-op-tag {
    font-family: var(--hy-font-mono);
    font-size: 8px;
    letter-spacing: 0.18em;
    padding: 2px 6px;
    margin-bottom: 4px;
    display: inline-block;
}

.lp-op-card[data-color="orange"] .lp-op-tag { color: var(--hy-accent); border: 1px solid rgba(255, 122, 38, 0.4); background: rgba(255, 122, 38, 0.06); }
.lp-op-card[data-color="yellow"] .lp-op-tag { color: var(--hy-warn); border: 1px solid rgba(251, 191, 36, 0.4); background: rgba(251, 191, 36, 0.06); }
.lp-op-card[data-color="green"] .lp-op-tag { color: var(--hy-success); border: 1px solid rgba(61, 220, 132, 0.4); background: rgba(61, 220, 132, 0.06); }
.lp-op-card[data-color="cyan"] .lp-op-tag { color: var(--hy-accent-2); border: 1px solid rgba(34, 211, 238, 0.4); background: rgba(34, 211, 238, 0.06); }
.lp-op-card[data-color="red"] .lp-op-tag { color: var(--hy-danger); border: 1px solid rgba(239, 68, 68, 0.4); background: rgba(239, 68, 68, 0.06); }

.lp-op-title {
    font-family: var(--hy-font-title);
    font-size: 13px;
    color: var(--hy-ink);
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-op-subtitle {
    font-family: var(--hy-font-mono);
    font-size: 10px;
    color: var(--hy-ink-3);
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.lp-op-arrow {
    color: var(--hy-ink-3);
    font-size: 14px;
}

.lp-btn--outline {
    background: transparent;
    border: 1px solid var(--hy-border-soft);
    color: var(--hy-ink-2);
    padding: 6px 14px;
    font-family: var(--hy-font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    cursor: pointer;
    transition: all 0.15s;
}

.lp-btn--outline:hover {
    border-color: var(--hy-accent);
    color: var(--hy-accent);
}

/* ============================================
   Section 05: Creators
   ============================================ */
.lp-creators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.lp-creator-card {
    position: relative;
    background: var(--hy-panel);
    border: 1px solid var(--hy-border-soft);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    backdrop-filter: blur(10px);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s cubic-bezier(0.2, 0.7, 0.3, 1.2);
}

.lp-creator-card:hover {
    transform: translateY(-3px);
    border-color: var(--card-color, var(--hy-accent));
    box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 24px rgba(255, 122, 38, 0.2);
}

/* Creator visual area */
.lp-creator-visual {
    position: relative;
    height: 120px;
    overflow: hidden;
    border-bottom: 1px solid var(--hy-border-soft);
}

.lp-creator-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, var(--card-color, var(--hy-accent)) 0%, transparent 70%);
    opacity: 0.3;
}

/* Bannière YouTube */
.lp-creator-banner {
    position: absolute;
    inset: 0;
    background-image: var(--banner-url);
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: 0;
}

.lp-creator-visual.has-banner::before {
    background: linear-gradient(to bottom, rgba(6, 8, 13, 0.3) 0%, rgba(6, 8, 13, 0.8) 100%);
    opacity: 1;
    z-index: 1;
}

/* Tech grid overlay */
.lp-creator-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(var(--hy-border-soft) 1px, transparent 1px),
        linear-gradient(90deg, var(--hy-border-soft) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.4;
}

/* Large initials */
.lp-creator-initials {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--card-color, var(--hy-accent)), rgba(255, 122, 38, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hy-font-display);
    font-size: 22px;
    color: #000;
    font-weight: 700;
    letter-spacing: 0.05em;
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
    box-shadow: 0 0 24px rgba(255, 122, 38, 0.5);
    z-index: 2;
}

/* Tag pill */
.lp-creator-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 3px 9px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 122, 38, 0.4);
    color: var(--card-color, var(--hy-accent));
    font-family: var(--hy-font-mono);
    font-size: 9px;
    letter-spacing: 0.22em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.lp-creator-tag.live {
    background: var(--hy-danger);
    border-color: var(--hy-danger);
    color: #fff;
    box-shadow: 0 0 14px rgba(239, 68, 68, 0.5);
}

.lp-creator-tag .live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: hy-pulse 1.5s infinite;
}

/* Play button for live */
.lp-creator-play {
    position: absolute;
    right: 14px;
    bottom: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--card-color, var(--hy-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--card-color, var(--hy-accent));
    font-size: 12px;
    padding-left: 3px;
    z-index: 2;
}

/* Creator body */
.lp-creator-body {
    padding: 14px 16px;
}

.lp-creator-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
}

.lp-creator-name {
    font-family: var(--hy-font-title);
    font-size: 14px;
    color: var(--hy-ink);
    letter-spacing: 0.04em;
}

.lp-creator-role {
    font-family: var(--hy-font-mono);
    font-size: 9px;
    color: var(--hy-ink-3);
    letter-spacing: 0.18em;
    margin-top: 3px;
    text-transform: uppercase;
}

.lp-creator-stats {
    text-align: right;
}

.lp-creator-platform {
    font-family: var(--hy-font-mono);
    font-size: 9px;
    color: var(--card-color, var(--hy-accent));
    letter-spacing: 0.18em;
}

.lp-creator-followers {
    font-family: var(--hy-font-display);
    font-size: 14px;
    color: var(--hy-ink);
    letter-spacing: 0.03em;
    margin-top: 2px;
}

/* Latest content */
.lp-creator-latest {
    padding: 8px 10px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--hy-border-soft);
    font-family: var(--hy-font-mono);
    font-size: 10px;
    color: var(--hy-ink-2);
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 8px;
    clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
    margin-bottom: 10px;
}

.lp-creator-latest-icon {
    color: var(--card-color, var(--hy-accent));
    font-size: 11px;
}

.lp-creator-latest-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lp-creator-latest-link {
    color: var(--hy-ink-2);
    text-decoration: none;
    transition: color 0.15s;
}

.lp-creator-latest-link:hover {
    color: var(--card-color, var(--hy-accent));
}

.lp-creator-latest-thumb {
    width: 48px;
    height: 27px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid var(--hy-border-soft);
    flex-shrink: 0;
}

/* Avatar YouTube */
.lp-creator-avatar {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    object-fit: cover;
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
    box-shadow: 0 0 24px rgba(255, 122, 38, 0.5);
    z-index: 2;
    border: 2px solid var(--card-color, var(--hy-accent));
}

/* Actions */
.lp-creator-actions {
    display: flex;
    gap: 6px;
}

.lp-creator-btn {
    flex: 1;
    padding: 7px 10px;
    background: transparent;
    color: var(--card-color, var(--hy-accent));
    border: 1px solid rgba(255, 122, 38, 0.4);
    font-family: var(--hy-font-mono);
    font-size: 9px;
    letter-spacing: 0.18em;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    text-align: center;
}

.lp-creator-btn:hover {
    background: var(--card-color, var(--hy-accent));
    color: #000;
}

.lp-creator-btn--icon {
    flex: none;
    width: 32px;
    background: transparent;
    color: var(--hy-ink-2);
    border: 1px solid var(--hy-border-soft);
}

.lp-creator-btn--icon:hover {
    border-color: var(--hy-accent);
    color: var(--hy-accent);
    background: transparent;
}

/* OP ID */
.lp-creator-id {
    position: absolute;
    top: 6px;
    left: 6px;
    font-family: var(--hy-font-mono);
    font-size: 8px;
    color: var(--hy-ink-3);
    letter-spacing: 0.2em;
    opacity: 0.5;
    z-index: 2;
}

/* Color variants */
.lp-creator-card[data-color="orange"] { --card-color: #ff7a26; }
.lp-creator-card[data-color="red"] { --card-color: #ef4444; }
.lp-creator-card[data-color="purple"] { --card-color: #a78bfa; }
.lp-creator-card[data-color="cyan"] { --card-color: #22d3ee; }
.lp-creator-card[data-color="green"] { --card-color: #3ddc84; }
.lp-creator-card[data-color="yellow"] { --card-color: #fbbf24; }
.lp-creator-card[data-color="pink"] { --card-color: #ec4899; }

/* ============================================
   Section 06: Carousel / Gallery
   ============================================ */
.lp-carousel-section {
    padding: 40px 36px 60px;
}

.lp-carousel-container {
    position: relative;
    max-width: var(--container-max);
    margin: 0 auto;
}

.lp-carousel-track-wrapper {
    overflow: hidden;
    margin: 0 50px;
}

.lp-carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.lp-carousel-slide {
    flex: 0 0 calc(100% / 5);
    padding: 0 6px;
    cursor: pointer;
}

.lp-carousel-slide img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border: 1px solid var(--hy-border-soft);
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
    transition: all 0.2s;
}

.lp-carousel-slide:hover img {
    border-color: var(--hy-accent);
    box-shadow: 0 0 20px var(--hy-accent-glow);
}

.lp-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--hy-panel);
    border: 1px solid var(--hy-border);
    color: var(--hy-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}

.lp-carousel-btn:hover {
    background: var(--hy-accent);
    color: #000;
    border-color: var(--hy-accent);
}

.lp-carousel-btn--prev { left: 0; }
.lp-carousel-btn--next { right: 0; }

.lp-carousel-btn.disabled {
    opacity: 0.3;
    pointer-events: none;
}

.lp-carousel-btn svg {
    width: 20px;
    height: 20px;
}

.lp-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.lp-carousel-dot {
    width: 8px;
    height: 8px;
    background: var(--hy-border-soft);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.lp-carousel-dot.active,
.lp-carousel-dot:hover {
    background: var(--hy-accent);
    box-shadow: 0 0 10px var(--hy-accent-glow);
}

/* Vignette active */
.lp-carousel-slide.active img {
    border-color: var(--hy-accent-2);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
    transform: scale(1.04);
}

/* ============================================
   Galerie — Grande image featured
   ============================================ */
.lp-gallery-featured {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    max-width: var(--container-max);
    margin: 40px auto 0;
    padding: 0 36px;
    align-items: center;
    min-height: 420px;
}

.lp-gallery-featured-caption {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 40px;
}

.lp-gallery-featured-index {
    font-family: var(--hy-font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--hy-accent-2);
}

.lp-gallery-featured-title {
    font-family: var(--hy-font-display);
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    font-weight: 400;
    color: var(--hy-ink);
    letter-spacing: 0.08em;
    line-height: 1.3;
}

.lp-gallery-featured-desc {
    font-family: var(--hy-font-body, sans-serif);
    font-size: 13px;
    color: var(--hy-ink-2);
    line-height: 1.7;
}

.lp-gallery-featured-img {
    position: relative;
}

.lp-gallery-featured-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border: 1px solid var(--hy-accent-2);
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.15);
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    transition: opacity 0.3s ease;
}

@media (max-width: 900px) {
    .lp-gallery-featured {
        grid-template-columns: 1fr;
    }
    .lp-gallery-featured-caption {
        padding-right: 0;
        padding-bottom: 24px;
    }
    .lp-gallery-featured-img img {
        height: 280px;
    }
}

/* ============================================
   Footer
   ============================================ */
.lp-footer {
    position: relative;
    margin-top: 40px;
    padding: 60px 36px 80px;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(255, 122, 38, 0.06));
}

.lp-footer-logo {
    font-family: var(--hy-font-display);
    font-size: clamp(60px, 12vw, 160px);
    letter-spacing: 0.18em;
    color: transparent;
    -webkit-text-stroke: 0px rgba(255, 122, 38, 0.8);
}

.lp-footer-tagline {
    font-family: var(--hy-font-mono);
    font-size: 10px;
    color: var(--hy-ink-3);
    letter-spacing: 0.4em;
    margin-top: 10px;
}

/* ============================================
   Music Toggle Button
   ============================================ */
.lp-music-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--hy-panel);
    border: 1px solid var(--hy-border);
    border-radius: 50%;
    color: var(--hy-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.2s;
}

.lp-music-toggle:hover {
    background: var(--hy-accent);
    color: #000;
}

.lp-music-toggle.muted {
    color: var(--hy-ink-3);
    border-color: var(--hy-border-soft);
}

.lp-music-toggle svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   Empty State (no events/creators)
   ============================================ */
.lp-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--hy-ink-3);
    font-family: var(--hy-font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .lp-ops-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lp-creators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lp-carousel-slide {
        flex: 0 0 calc(100% / 4);
    }
    
    .lp-hero-stats {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .lp-header {
        padding: 16px 20px;
    }
    
    .lp-nav-links {
        display: none;
    }
    
    .lp-hero {
        padding: 100px 20px 60px;
        min-height: 480px;
    }
    
    .lp-hero-tagline {
        font-size: 9px;
        letter-spacing: 0.3em;
    }
    
    .lp-hero-cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }
    
    .lp-btn {
        width: 100%;
        justify-content: center;
    }
    
    .lp-hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .lp-section {
        padding: 30px 20px;
    }
    
    .lp-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .lp-section-title {
        font-size: 20px;
    }
    
    .lp-ops-grid,
    .lp-creators-grid {
        grid-template-columns: 1fr;
    }
    
    .lp-carousel-slide {
        flex: 0 0 calc(100% / 2);
    }
    
    .lp-carousel-track-wrapper {
        margin: 0 40px;
    }
    
    .lp-footer-logo {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .lp-hero-bg-text {
        font-size: 60px;
    }
    
    .lp-hero-nebula {
        width: 400px;
        height: 400px;
    }
    
    .lp-hero-ring--outer {
        width: 280px;
        height: 280px;
    }
    
    .lp-hero-ring--inner {
        width: 200px;
        height: 200px;
    }
    
    .lp-hero-stat-value {
        font-size: 20px;
    }
    
    .lp-carousel-slide {
        flex: 0 0 100%;
    }
}
