/* scire.bar — retro vapor gradients music aesthetic */

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

/* Base */
body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.65;
    color: #8A7BA0;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Vapor Gradient Background */
.vapor-bg {
    background: linear-gradient(135deg, #1A0A2E 0%, #2D1440 40%, #4A1942 70%, #F97316 100%);
    min-height: 100vh;
    position: relative;
}

/* Vapor Wave SVG Curves */
.vapor-curves {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.vapor-curve {
    stroke: rgba(255, 255, 255, 0.06);
    fill: none;
    stroke-width: 1;
}

.vc-1 { opacity: 0.08; }
.vc-2 { opacity: 0.05; }
.vc-3 { opacity: 0.04; }
.vc-4 { opacity: 0.06; }

/* All content sections above the SVG */
.hero, .taps, .featured, .regulars, .footer {
    position: relative;
    z-index: 1;
}

/* Hero Zone */
.hero {
    text-align: center;
    padding: 6rem 2rem 3rem;
}

.neon-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    line-height: 1.25;
    -webkit-text-stroke: 1px #FF7EB3;
    color: transparent;
    text-shadow: 0 0 20px rgba(255, 126, 179, 0.3);
    margin-bottom: 0.5rem;
    animation: neonPulse 3s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 126, 179, 0.3); }
    50% { text-shadow: 0 0 30px rgba(255, 126, 179, 0.5), 0 0 60px rgba(255, 126, 179, 0.15); }
}

.tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #E8E0F0;
    margin-bottom: 2rem;
}

.glow-btn {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1A0A2E;
    background: #FF7EB3;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(255, 126, 179, 0.3);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.glow-btn:hover {
    box-shadow: 0 0 30px rgba(255, 126, 179, 0.5), 0 0 60px rgba(255, 126, 179, 0.2);
    transform: translateY(-2px);
}

/* Gradient Rule Dividers */
.gradient-rule {
    height: 1px;
    background: linear-gradient(90deg, transparent, #FF7EB3, transparent);
    opacity: 0.3;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Section Headings */
.section-heading {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.25;
    color: #E8E0F0;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Tap Board */
.taps {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.category-header {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    color: #8A7BA0;
    display: block;
    margin: 1.5rem 0 0.75rem;
}

.thread-entry {
    background: rgba(45, 20, 64, 0.5);
    border: 1px solid #2A1A3E;
    border-radius: 8px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    transition: border-color 0.2s ease, background 0.2s ease;
    flex-wrap: wrap;
}

.thread-entry:hover {
    border-color: #FF7EB3;
    background: rgba(45, 20, 64, 0.7);
}

.thread-entry:hover .active-dot {
    animation: dotPulse 1s ease-in-out infinite;
}

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

.active-dot {
    color: #FF7EB3;
    font-size: 0.6rem;
    flex-shrink: 0;
}

.thread-info {
    flex: 1;
    min-width: 200px;
}

.thread-title {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.25;
    color: #E8E0F0;
    margin-bottom: 0.25rem;
}

.thread-preview {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #8A7BA0;
    line-height: 1.65;
}

.thread-meta {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    color: #8A7BA0;
    white-space: nowrap;
}

.join-btn {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    color: #FF7EB3;
    border: 1px solid #FF7EB3;
    padding: 0.3rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.join-btn:hover {
    background: #FF7EB3;
    color: #1A0A2E;
}

/* Featured Pour */
.featured {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.featured-card {
    background: rgba(45, 20, 64, 0.6);
    border: 1px solid #2A1A3E;
    border-radius: 12px;
    padding: 2rem;
    transition: border-color 0.3s ease;
}

.featured-card:hover {
    border-color: #FFB86C;
}

.featured-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.25;
    color: #FFB86C;
    margin-bottom: 1.5rem;
}

.reply-block {
    border-left: 2px solid #2A1A3E;
    padding-left: 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.2s ease;
}

.reply-block:hover {
    border-color: #FF7EB3;
}

.reply-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #E8E0F0;
    font-style: italic;
    margin-bottom: 0.25rem;
    line-height: 1.65;
}

.reply-author {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    color: #FF7EB3;
}

.featured-metrics {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.metric {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    color: #8A7BA0;
}

/* Regulars Board */
.regulars {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.regulars-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.regular {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    transition: transform 0.2s ease;
}

.regular:hover {
    transform: translateY(-4px);
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 126, 179, 0.15);
    border: 1px solid #FF7EB3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: #FF7EB3;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.regular:hover .avatar {
    box-shadow: 0 0 16px rgba(255, 126, 179, 0.3);
    border-color: #FFB86C;
}

.reg-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    color: #E8E0F0;
}

.reg-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: #8A7BA0;
}

/* Footer */
.footer {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-tagline {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #E8E0F0;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.flink {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #FF7EB3;
    text-decoration: none;
    transition: color 0.2s ease;
}

.flink:hover {
    color: #FFB86C;
}

.footer-copy {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: #8A7BA0;
}

/* Fade-In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive */
@media (max-width: 640px) {
    .thread-entry {
        flex-direction: column;
        align-items: flex-start;
    }

    .thread-meta {
        margin-top: 0.25rem;
    }

    .regulars-row {
        gap: 1.25rem;
    }

    .hero {
        padding: 4rem 1.5rem 2rem;
    }

    .featured-metrics {
        flex-wrap: wrap;
        gap: 1rem;
    }
}
