/* ═══════════════════════════════════════════════════════════════
   AUDIOREWORKVISIONS BLOG – Dark Techno Theme
   ═══════════════════════════════════════════════════════════════ */

/* ── Landing Void ("No Pain No Gain") ── */
.landing-void {
    min-height: 80vh;
    background: #000;
    overflow: hidden;
}

.landing-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.landing-vinyl-logo {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 20px rgba(0, 230, 118, 0.5));
    animation: vinylSpin 8s linear infinite;
}

.landing-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.landing-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 2px;
    opacity: 0.6;
}

@media (max-width: 576px) {
    .landing-vinyl-logo {
        width: 80px;
        height: 80px;
    }
    .landing-title {
        font-size: 1.4rem;
        letter-spacing: 3px;
    }
}

:root {
    --arv-dark: #0a0a0a;
    --arv-darker: #050505;
    --arv-accent: #00e676;
    --arv-accent-glow: rgba(0, 230, 118, 0.3);
    --arv-card-bg: #111111;
    --arv-hover: #1a1a1a;
    --arv-text: #e0e0e0;
    --arv-muted: #888888;

    /* Override Bootstrap danger → green */
    --bs-danger: #00e676;
    --bs-danger-rgb: 0, 230, 118;
}

/* ── Bootstrap danger color overrides (global green) ── */
.btn-danger {
    --bs-btn-bg: #00e676;
    --bs-btn-border-color: #00e676;
    --bs-btn-hover-bg: #00c853;
    --bs-btn-hover-border-color: #00c853;
    --bs-btn-active-bg: #00b248;
    --bs-btn-active-border-color: #00b248;
    --bs-btn-disabled-bg: #00e676;
    --bs-btn-disabled-border-color: #00e676;
    color: #000;
}
.btn-danger:hover, .btn-danger:focus, .btn-danger:active {
    color: #000;
}

.btn-outline-danger {
    --bs-btn-color: #00e676;
    --bs-btn-border-color: #00e676;
    --bs-btn-hover-bg: #00e676;
    --bs-btn-hover-border-color: #00e676;
    --bs-btn-hover-color: #000;
    --bs-btn-active-bg: #00c853;
    --bs-btn-active-border-color: #00c853;
    --bs-btn-active-color: #000;
}

.bg-danger {
    background-color: #00e676 !important;
    color: #000;
}

.text-danger {
    color: #00e676 !important;
}

.border-danger {
    border-color: #00e676 !important;
}

.badge.bg-danger {
    color: #000;
}

/* ── Base ── */
body {
    background-color: var(--arv-dark);
    color: var(--arv-text);
    font-family: 'Inter', 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-optical-sizing: auto;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6,
.fw-bold, .display-1, .display-2, .display-3, .display-4 {
    font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ── Brand ── */
.brand-icon {
    color: var(--arv-accent);
    font-size: 1.3em;
}

/* ── Brand Vinyl Logo (replaces Horus Eye) ── */
.brand-vinyl {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    line-height: 1;
}

.vinyl-logo {
    width: 2em;
    height: 2em;
    vertical-align: middle;
    filter: drop-shadow(0 0 4px rgba(120, 220, 120, 0.4));
    transition: filter 0.4s, transform 0.6s;
    animation: vinylSpin 8s linear infinite;
}

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

/* Glow intensifies on hover */
.navbar-brand:hover .vinyl-logo {
    filter: drop-shadow(0 0 10px rgba(120, 220, 120, 0.85))
            drop-shadow(0 0 20px rgba(120, 220, 120, 0.3));
}

.navbar-brand {
    letter-spacing: 1px;
    font-size: 1.1rem;
}

/* ── Easter Egg Vinyl Icon ── */
.vinyl-easter-egg {
    position: relative;
    cursor: pointer;
}

.vinyl-easter-egg::after {
    content: '🐇';
    position: absolute;
    bottom: -2px;
    right: -4px;
    font-size: 0.45em;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.vinyl-easter-egg:hover::after {
    opacity: 0.6;
}

/* ── Offcanvas Navigation ── */
.offcanvas.bg-black {
    background-color: #000 !important;
}

.offcanvas .nav-link {
    padding: 0.35rem 0;
    transition: color 0.2s, padding-left 0.2s;
}

.offcanvas .nav-link:hover {
    padding-left: 0.5rem;
    color: var(--arv-accent) !important;
}

.offcanvas .nav-link.active {
    color: var(--arv-accent) !important;
    border-left: 2px solid var(--arv-accent);
    padding-left: 0.5rem;
}

/* ── Language Toggle ── */
.lang-toggle {
    font-size: 1.1rem;
    line-height: 1;
    border-color: rgba(255,255,255,0.2) !important;
}

.lang-toggle:hover {
    background: rgba(255,255,255,0.1);
}

/* ── Manifest Footer Link ── */
.manifest-footer-link {
    opacity: 0.5;
    transition: opacity 0.3s, color 0.3s;
}

.manifest-footer-link:hover {
    opacity: 1;
    color: var(--arv-accent) !important;
}

/* ── Language Chooser Page ── */
.min-vh-75 {
    min-height: 75vh;
}

.lang-choice-btn {
    transition: all 0.3s;
}

.lang-choice-btn:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* ── Hero Section ── */
.hero-section,
.post-header {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    background-color: var(--arv-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ── M.P.Broadcast On Air Badge ── */
.mpb-badge-wrap {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    animation: mpb-drop-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes mpb-drop-in {
    from { opacity: 0; transform: translateY(-16px) scale(0.9); }
    to   { opacity: 1; transform: translateY(0)    scale(1);   }
}

.mpb-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(10, 10, 10, 0.82);
    border: 1px solid rgba(0, 230, 118, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 6px;
    padding: 0.45rem 0.75rem;
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.25), 0 4px 16px rgba(0,0,0,0.5);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.15s;
}

.mpb-badge:hover {
    border-color: rgba(0, 230, 118, 1);
    box-shadow: 0 0 28px rgba(0, 230, 118, 0.45), 0 4px 20px rgba(0,0,0,0.6);
    transform: translateY(-1px);
    color: #fff;
}

.mpb-signal {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.mpb-dot,
.mpb-dot-2 {
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--arv-accent, #00e676);
}

.mpb-dot {
    width: 8px;
    height: 8px;
}

.mpb-dot-2 {
    width: 8px;
    height: 8px;
    background: transparent;
    border: 1.5px solid var(--arv-accent, #00e676);
    animation: mpb-ring 1.6s ease-out infinite;
    opacity: 0;
}

@keyframes mpb-ring {
    0%   { width: 8px;  height: 8px;  opacity: 0.9; }
    100% { width: 22px; height: 22px; opacity: 0;   }
}

.mpb-dot {
    animation: mpb-pulse 1.6s ease-in-out infinite;
}

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

.mpb-label {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.mpb-eyebrow {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

.mpb-main {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

.mpb-arrow {
    color: rgba(0, 230, 118, 0.8);
    flex-shrink: 0;
    transition: transform 0.2s;
}

.mpb-badge:hover .mpb-arrow {
    transform: translateX(3px);
}

/* Mobile: smaller + repositioned */
@media (max-width: 575px) {
    .mpb-badge-wrap {
        top: 0.75rem;
        right: 0.75rem;
    }
    .mpb-main { font-size: 0.72rem; }
}

/* ── M.P.Broadcast On Air Badge ── */
.mpb-badge-wrap {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    animation: mpb-drop-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes mpb-drop-in {
    from { opacity: 0; transform: translateY(-16px) scale(0.9); }
    to   { opacity: 1; transform: translateY(0)    scale(1);   }
}

.mpb-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(10, 10, 10, 0.82);
    border: 1px solid rgba(0, 230, 118, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 6px;
    padding: 0.45rem 0.75rem;
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.25), 0 4px 16px rgba(0,0,0,0.5);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.15s;
}

.mpb-badge:hover {
    border-color: rgba(0, 230, 118, 1);
    box-shadow: 0 0 28px rgba(0, 230, 118, 0.45), 0 4px 20px rgba(0,0,0,0.6);
    transform: translateY(-1px);
    color: #fff;
}

.mpb-signal {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.mpb-dot,
.mpb-dot-2 {
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--arv-accent, #00e676);
}

.mpb-dot {
    width: 8px;
    height: 8px;
}

.mpb-dot-2 {
    width: 8px;
    height: 8px;
    background: transparent;
    border: 1.5px solid var(--arv-accent, #00e676);
    animation: mpb-ring 1.6s ease-out infinite;
    opacity: 0;
}

@keyframes mpb-ring {
    0%   { width: 8px;  height: 8px;  opacity: 0.9; }
    100% { width: 22px; height: 22px; opacity: 0;   }
}

.mpb-dot {
    animation: mpb-pulse 1.6s ease-in-out infinite;
}

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

.mpb-label {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.mpb-eyebrow {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

.mpb-main {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

.mpb-arrow {
    color: rgba(0, 230, 118, 0.8);
    flex-shrink: 0;
    transition: transform 0.2s;
}

.mpb-badge:hover .mpb-arrow {
    transform: translateX(3px);
}

/* Mobile: smaller + repositioned */
@media (max-width: 575px) {
    .mpb-badge-wrap {
        top: 0.75rem;
        right: 0.75rem;
    }
    .mpb-main { font-size: 0.72rem; }
}

/* ── Metaball Canvas (Hero) ── */
.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
}

/* ── Metaball Canvas (Footer) ── */
.footer-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        var(--arv-dark) 0%,
        rgba(10, 10, 10, 0.5) 40%,
        transparent 100%
    );
    z-index: 1;
}

.hero-content {
    z-index: 2;
}

.footer-content {
    z-index: 1;
}

.hero-title:hover {
    color: var(--arv-accent) !important;
    transition: color 0.2s ease;
}

.min-vh-40 {
    min-height: 40vh;
}

/* ── Section Titles ── */
.section-title {
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--arv-accent);
}

/* ── Blog Cards ── */
.blog-card {
    background: var(--arv-card-bg) !important;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* ── Pinned Event Card ── */
.pinned-card {
    border: 1px solid rgba(0, 255, 136, 0.3) !important;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.pinned-card .card-img-wrapper {
    position: relative;
}

.pinned-card .card-img-wrapper::after {
    content: '\u{1F4CC} PINNED';
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: rgba(0, 255, 136, 0.9);
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    z-index: 3;
}

.pinned-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 255, 136, 0.2);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px var(--arv-accent-glow);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--arv-darker);
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.placeholder-img {
    height: 100%;
    background: linear-gradient(135deg, var(--arv-darker), var(--arv-card-bg));
}

/* ── Play Overlay ── */
.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .play-overlay {
    opacity: 1;
}

/* ── Category Badge ── */
.category-badge {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ── Video Container (responsive 16:9) ── */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    background: var(--arv-darker);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ── Post Body ── */
.post-body {
    color: var(--arv-text);
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body h3,
.post-body h4 {
    color: #fff;
    margin-top: 2rem;
}

.post-body a {
    color: var(--arv-accent);
}

/* ── Share Buttons ── */
.share-section .btn-outline-light {
    border-color: #333;
    color: var(--arv-muted);
    font-size: 0.85rem;
}

.share-section .btn-outline-light:hover {
    background: var(--arv-accent);
    border-color: var(--arv-accent);
    color: #fff;
}

/* ── Social Cards (About page) ── */
.social-card {
    background: var(--arv-card-bg);
    border: 1px solid #222;
    transition: all 0.2s ease;
}

.social-card:hover {
    background: var(--arv-hover);
    border-color: var(--arv-accent);
    box-shadow: 0 0 15px var(--arv-accent-glow);
}

.social-card-icon {
    color: var(--arv-accent);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 230, 118, 0.1);
    border-radius: 8px;
    transition: background 0.2s;
}

.social-card:hover .social-card-icon {
    background: rgba(0, 230, 118, 0.25);
}

/* ── About Hero ── */
.about-hero {
    background: var(--arv-darker);
    min-height: 45vh;
    display: flex;
    align-items: center;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(0, 230, 118, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(0, 230, 118, 0.05) 0%, transparent 50%);
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, var(--arv-dark) 100%);
}

.about-label {
    letter-spacing: 4px;
    font-size: 0.85rem;
}

.ls-wide {
    letter-spacing: 2px;
}

/* ── About Features ── */
.about-features-section {
    background: var(--arv-darker);
}

.about-feature-card {
    background: var(--arv-card-bg);
    border: 1px solid #1a1a1a;
    transition: all 0.25s ease;
}

.about-feature-card:hover {
    border-color: var(--arv-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 15px var(--arv-accent-glow);
}

.about-feature-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 230, 118, 0.1);
    border-radius: 12px;
}

/* ── About Facts ── */
.about-facts-section {
    background: var(--arv-darker);
}

.about-fact-item {
    padding: 1.5rem 0;
}

.about-fact-number {
    line-height: 1;
}

/* ── About Timeline ── */
.about-timeline {
    position: relative;
    padding-left: 30px;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #222;
}

.about-timeline-item {
    position: relative;
    padding-bottom: 1.5rem;
}

.about-timeline-item:last-child {
    padding-bottom: 0;
}

.about-timeline-dot {
    position: absolute;
    left: -26px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--arv-accent);
    border-radius: 50%;
    border: 2px solid var(--arv-dark);
    box-shadow: 0 0 8px var(--arv-accent-glow);
}

.about-timeline-content {
    padding-left: 0.5rem;
}

/* ── About Connect ── */
.about-connect-section {
    background: var(--arv-darker);
}

/* ── About CTA Box ── */
.about-cta-box {
    background: linear-gradient(135deg, var(--arv-card-bg) 0%, #1a0a0d 100%);
    border: 1px solid rgba(0, 230, 118, 0.2);
}

/* ── Videos Page ── */
.video-player-wrapper {
    border: 1px solid #222;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.video-card {
    background: var(--arv-card-bg);
    border: 1px solid #1a1a1a;
    transition: all 0.25s ease;
}

.video-card:hover {
    border-color: var(--arv-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 15px var(--arv-accent-glow);
}

.video-thumbnail {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.video-play-overlay {
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.video-card:hover .video-play-overlay {
    opacity: 1;
}

.video-play-btn {
    color: #fff;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    transition: transform 0.2s ease;
}

.video-play-overlay:hover .video-play-btn {
    transform: scale(1.15);
    color: var(--arv-accent);
}

.video-card-title {
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card-title a:hover {
    color: var(--arv-accent) !important;
}

.video-filter-btn {
    background: var(--arv-card-bg);
    border: 1px solid #333;
    color: var(--arv-muted);
    transition: all 0.2s ease;
}

.video-filter-btn:hover,
.video-filter-btn.active {
    background: var(--arv-accent);
    border-color: var(--arv-accent);
    color: #fff;
}

/* ── Live Page ── */
.live-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.live-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 230, 118, 0.12) 0%, transparent 70%),
                linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, var(--arv-dark) 100%);
}

.live-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.55);
}

/* Pulsing live badge */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--arv-accent);
}

.live-badge-active {
    animation: live-badge-glow 2s ease-in-out infinite;
}

@keyframes live-badge-glow {
    0%, 100% { text-shadow: 0 0 6px rgba(0, 230, 118, 0.4); }
    50%      { text-shadow: 0 0 20px rgba(0, 230, 118, 0.9), 0 0 40px rgba(0, 230, 118, 0.3); }
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--arv-accent);
    display: inline-block;
}

.live-dot-active {
    animation: live-pulse 1.4s ease-in-out infinite;
}

@keyframes live-pulse {
    0%   { transform: scale(1); opacity: 1; }
    50%  { transform: scale(1.6); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Nav live indicator */
.live-nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--arv-accent);
    display: inline-block;
    margin-right: 2px;
    vertical-align: middle;
    animation: live-pulse 1.4s ease-in-out infinite;
}

/* Player frame */
.live-player-frame {
    border: 1px solid #222;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.live-player-frame.is-live {
    border-color: var(--arv-accent);
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.2), 0 8px 40px rgba(0, 0, 0, 0.5);
}

/* Info bar */
.live-info-bar {
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.25);
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
}

.live-signal-icon {
    width: 20px;
    height: 20px;
    color: var(--arv-accent);
    animation: live-pulse 1.4s ease-in-out infinite;
}

/* Offline state */
.live-offline-box {
    background: var(--arv-card-bg);
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
}

.live-offline-icon {
    width: 64px;
    height: 64px;
    color: var(--arv-muted);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════════
   LIVE PAGE V2 — Hero, Story, Line-Up, Mood, Countdown
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero V2 ── */
.live-hero-v2 {
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: 2rem;
}

.live-hero-v2-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 230, 118,0.10) 0%, transparent 65%),
        linear-gradient(180deg, rgba(10,10,10,0.5) 0%, var(--arv-dark) 100%);
    z-index: 0;
}

.live-hero-v2.is-live .live-hero-v2-bg {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 230, 118,0.25) 0%, transparent 65%),
        linear-gradient(180deg, rgba(10,10,10,0.3) 0%, var(--arv-dark) 100%);
}

.live-hero-v2-scan {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255,255,255,0.015) 2px,
        rgba(255,255,255,0.015) 4px
    );
    pointer-events: none;
    z-index: 1;
}

.live-hero-v2-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.45);
    z-index: 1;
}

/* Badge V2 */
.live-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--arv-accent);
    padding: 0.35rem 0.9rem;
    border: 1px solid rgba(0, 230, 118,0.35);
    border-radius: 999px;
    background: rgba(0, 230, 118,0.08);
}

.live-badge-v2-active {
    animation: live-badge-glow 2s ease-in-out infinite;
    border-color: var(--arv-accent);
    background: rgba(0, 230, 118,0.15);
}

.live-dot-v2 {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--arv-accent);
    display: inline-block;
    opacity: 0.6;
}

.live-dot-v2-active {
    opacity: 1;
    animation: live-pulse 1.4s ease-in-out infinite;
}

/* Event title */
.live-event-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 0.25rem;
}

.live-event-artists {
    font-size: 1.25rem;
    color: #aaa;
    font-weight: 400;
    letter-spacing: 0.04em;
}

/* Stream tag (red dot) */
.live-stream-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--arv-accent);
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: rgba(0, 230, 118,0.10);
    border: 1px solid rgba(0, 230, 118,0.25);
}

/* Player V2 (hero-embedded) */
.live-player-v2 {
    border: 1px solid rgba(0, 230, 118,0.20);
    box-shadow:
        0 0 60px rgba(0, 230, 118,0.08),
        0 12px 48px rgba(0,0,0,0.6);
    transition: border-color 0.4s, box-shadow 0.4s;
}

.live-hero-v2.is-live .live-player-v2 {
    border-color: var(--arv-accent);
    box-shadow:
        0 0 40px rgba(0, 230, 118,0.22),
        0 12px 48px rgba(0,0,0,0.6);
}

/* Offline V2 */
.live-offline-v2 {
    background: var(--arv-card-bg);
    border: 1px solid #1a1a1a;
}

/* ── Section headings ── */
.live-section-heading {
    font-weight: 800;
    font-size: 1.75rem;
    letter-spacing: 0.03em;
    color: #fff;
    position: relative;
    display: inline-block;
}
.live-section-heading::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--arv-accent);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

/* ── Tonight's Story ── */
.live-story-section {
    background: var(--arv-dark);
    border-top: 1px solid #151515;
}
.live-story-text {
    font-size: 1.15rem;
    line-height: 1.85;
    color: #bbb;
    max-width: 640px;
    margin: 0 auto;
}

/* ── Line-Up ── */
.live-lineup-section {
    background: var(--arv-darker);
    border-top: 1px solid #111;
}
.live-lineup-card {
    background: rgba(0, 230, 118,0.04);
    border: 1px solid rgba(0, 230, 118,0.12);
    transition: transform 0.25s, border-color 0.3s;
}
.live-lineup-card:hover {
    transform: translateY(-4px);
    border-color: var(--arv-accent);
}
.live-lineup-time {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--arv-accent);
    text-transform: uppercase;
}
.live-lineup-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}
.live-lineup-style {
    font-style: italic;
}

/* ── Visual-Mood ── */
.live-mood-section {
    background: var(--arv-dark);
    border-top: 1px solid #151515;
}
.live-mood-vibe {
    color: #ccc;
    font-style: italic;
}
.live-mood-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--arv-accent);
    border: 1px solid rgba(0, 230, 118,0.25);
    border-radius: 999px;
    background: rgba(0, 230, 118,0.06);
    letter-spacing: 0.04em;
}

/* ── Chat Section ── */
.live-chat-section {
    background: var(--arv-darker);
    border-top: 1px solid #111;
}

/* ── Countdown ── */
.live-countdown-section {
    background: var(--arv-dark);
    border-top: 1px solid #151515;
}
.live-countdown {
    /* layout via Bootstrap flex utilities in HTML */
    gap: 1.5rem;
}
.live-cd-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}
.live-cd-num {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.03em;
}
.live-cd-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--arv-muted);
    margin-top: 0.25rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .live-event-title {
        font-size: 1.75rem;
    }
    .live-cd-num {
        font-size: 2rem;
    }
    .live-cd-unit {
        min-width: 56px;
    }
    .live-chat-panel {
        height: 420px;
    }
}

/* Past streams grid */
.past-stream-card {
    background: var(--arv-card-bg);
    border: 1px solid #1a1a1a;
    transition: all 0.25s ease;
}

.past-stream-card:hover {
    border-color: var(--arv-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 15px var(--arv-accent-glow);
}

/* ── Footer Social Links ── */
.social-links a {
    color: var(--arv-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--arv-accent);
}

/* ── Visitor Counter ── */
.visitor-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-variant-numeric: tabular-nums;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.visitor-counter:hover {
    opacity: 1;
}

.visitor-count-number {
    color: var(--arv-accent);
    font-weight: 600;
}

/* ── Post Navigation ── */
.post-nav a {
    transition: color 0.2s;
}

.post-nav a:hover span {
    color: var(--arv-accent) !important;
}

/* ── Blog Comments ── */
.comments-section h4 {
    display: flex;
    align-items: center;
}

.comment-form-box {
    background: var(--arv-card-bg);
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 1.25rem;
}

.comment-form-box .form-control:focus {
    border-color: var(--arv-accent);
    box-shadow: 0 0 0 0.15rem var(--arv-accent-glow);
}

.comment-card {
    background: var(--arv-card-bg);
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    transition: border-color 0.2s ease;
}

.comment-card:hover {
    border-color: #333;
}

.comment-author {
    font-size: 0.9rem;
}

.comment-body {
    color: var(--arv-text);
    font-size: 0.95rem;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
}

/* New comment slide-in animation */
.comment-new {
    animation: comment-slide-in 0.4s ease-out;
    border-color: var(--arv-accent);
}

@keyframes comment-slide-in {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--arv-accent);
}

/* ── Selection ── */
::selection {
    background: var(--arv-accent);
    color: #fff;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero-section,
    .post-header {
        min-height: 35vh;
    }

    .display-5 {
        font-size: 1.8rem;
    }
}

/* ── Pulsating accent line (decorative) ── */
@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.navbar {
    box-shadow: 0 1px 0 rgba(0, 230, 118, 0.15);
}

/* ── Dropdown dark override ── */
.dropdown-menu-dark {
    background: var(--arv-card-bg);
    border-color: #222;
}

.dropdown-item:hover {
    background: var(--arv-hover);
    color: var(--arv-accent);
}

/* ── Hero Badge (Techno Hilft round logo) ── */
.hero-badge {
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    animation: float-subtle 3s ease-in-out infinite;
}

@keyframes float-subtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* ═══════════════════════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════════════════════ */

.newsletter-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
    min-height: 30vh;
    display: flex;
    align-items: center;
}

.newsletter-bg-anim {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, var(--arv-accent-glow) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 230, 118, 0.1) 0%, transparent 50%);
    animation: newsletter-pulse 4s ease-in-out infinite;
}

@keyframes newsletter-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.neon-icon {
    font-size: 3rem;
    animation: float-subtle 3s ease-in-out infinite;
}

.newsletter-card {
    background: var(--arv-card-bg);
    border: 1px solid #222;
    transition: border-color 0.3s;
}

.newsletter-card:hover {
    border-color: var(--arv-accent);
}

.newsletter-btn {
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--arv-accent-glow);
}

.success-checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--arv-accent);
    color: white;
    font-size: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: checkmark-pop 0.5s ease;
}

@keyframes checkmark-pop {
    0% { transform: scale(0); }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.feature-item {
    background: var(--arv-card-bg);
    border: 1px solid #1a1a1a;
    transition: all 0.2s;
}

.feature-item:hover {
    border-color: var(--arv-accent);
    background: var(--arv-hover);
}

.feature-icon {
    font-size: 1.8rem;
}

/* ═══════════════════════════════════════════════════════════════
   GÄSTEBUCH
   ═══════════════════════════════════════════════════════════════ */

.gb-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #0a0a1a 50%, #0a0a0a 100%);
    min-height: 20vh;
    display: flex;
    align-items: center;
}

.gb-form-card {
    background: var(--arv-card-bg);
    border: 1px solid #222;
}

/* Avatar Picker */
.avatar-picker .avatar-option {
    cursor: pointer;
}

.avatar-emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    border-radius: 50%;
    background: var(--arv-darker);
    border: 2px solid #333;
    transition: all 0.2s;
}

.avatar-option input:checked + .avatar-emoji {
    border-color: var(--arv-accent);
    background: rgba(0, 230, 118, 0.15);
    transform: scale(1.1);
    box-shadow: 0 0 12px var(--arv-accent-glow);
}

.avatar-emoji:hover {
    border-color: #555;
    transform: scale(1.05);
}

/* Guestbook Entries */
.gb-entry {
    background: var(--arv-card-bg);
    border: 1px solid #1a1a1a;
    transition: all 0.2s;
}

.gb-entry:hover {
    border-color: #333;
    background: var(--arv-hover);
}

.gb-entry-new {
    border-color: var(--arv-accent);
    animation: entry-glow 2s ease-out;
}

@keyframes entry-glow {
    0% { box-shadow: 0 0 20px var(--arv-accent-glow); }
    100% { box-shadow: none; }
}

.gb-avatar {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--arv-darker);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   COMMUNITY LOUNGE
   ═══════════════════════════════════════════════════════════════ */

.community-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #0a1a0a 50%, #0a0a0a 100%);
    min-height: 20vh;
    display: flex;
    align-items: center;
}

/* Board Cards */
.board-card {
    background: var(--arv-card-bg);
    border: 1px solid #1a1a1a;
    transition: all 0.25s ease;
}

.board-card:hover {
    border-color: var(--arv-accent);
    background: var(--arv-hover);
    transform: translateX(4px);
    box-shadow: -4px 0 0 var(--arv-accent);
}

.board-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--arv-darker);
    border-radius: 16px;
    flex-shrink: 0;
}

.board-icon-lg {
    font-size: 2.5rem;
}

.board-arrow {
    font-size: 1.5rem;
    transition: transform 0.2s;
}

.board-card:hover .board-arrow {
    transform: translateX(4px);
    color: var(--arv-accent) !important;
}

/* Quick Links */
.quick-link-card {
    background: var(--arv-card-bg);
    border: 1px solid #1a1a1a;
    transition: all 0.2s;
    font-size: 1.5rem;
}

.quick-link-card:hover {
    border-color: var(--arv-accent);
    background: var(--arv-hover);
    transform: translateY(-2px);
}

/* Board Posts */
.board-post-item {
    background: var(--arv-card-bg);
    border: 1px solid #1a1a1a;
    transition: all 0.2s;
}

.board-post-item:hover {
    border-color: var(--arv-accent);
    background: var(--arv-hover);
}

/* Community Post */
.community-main-post {
    background: var(--arv-card-bg);
    border: 1px solid #222;
    border-left: 3px solid var(--arv-accent);
}

.post-body-text {
    white-space: pre-wrap;
    word-break: break-word;
}

/* Replies */
.reply-item {
    background: var(--arv-card-bg);
    border: 1px solid #1a1a1a;
    border-left: 2px solid #333;
}

.reply-item:hover {
    border-left-color: var(--arv-accent);
}

.reply-latest {
    border-left-color: var(--arv-accent);
}

/* ═══════════════════════════════════════════════════════════════
   TOP 124 TECHNO CHARTS
   ═══════════════════════════════════════════════════════════════ */

.charts-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a10 50%, #0a0a0a 100%);
    min-height: 35vh;
    display: flex;
    align-items: center;
}

.charts-bg-anim {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(0, 230, 118, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(0, 230, 118, 0.1) 0%, transparent 50%);
    animation: charts-bg-pulse 5s ease-in-out infinite;
}

@keyframes charts-bg-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.charts-bpm-badge {
    font-size: 4rem;
    font-weight: 900;
    color: var(--arv-accent);
    text-shadow: 0 0 40px var(--arv-accent-glow), 0 0 80px rgba(0, 230, 118, 0.15);
    letter-spacing: 4px;
    line-height: 1;
    animation: bpm-pulse 0.484s ease-in-out infinite;
}

@keyframes bpm-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Decade Grouping */
.decade-badge {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--arv-accent);
    background: rgba(0, 230, 118, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(0, 230, 118, 0.3);
    white-space: nowrap;
}

.decade-line {
    height: 1px;
    background: linear-gradient(to right, rgba(0, 230, 118, 0.3), transparent);
}

/* Year Cards */
.chart-year-card {
    background: var(--arv-card-bg);
    border: 1px solid #1a1a1a;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.chart-year-card:hover {
    border-color: var(--arv-accent);
    background: var(--arv-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px var(--arv-accent-glow);
}

.chart-year-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.chart-year-card:hover .chart-year-number {
    color: var(--arv-accent);
}

/* Vinyl Disc Animation */
.chart-year-vinyl {
    margin: 12px auto 0;
    width: 50px;
    height: 50px;
}

.vinyl-disc {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle at center, 
        #333 0%, #333 15%, 
        #1a1a1a 16%, #222 30%, 
        #1a1a1a 31%, #222 50%, 
        #1a1a1a 51%, #222 70%, 
        #1a1a1a 71%, #222 90%, 
        #1a1a1a 91%);
    position: relative;
    transition: transform 0.3s;
}

.vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--arv-accent);
}

.chart-year-card:hover .vinyl-disc {
    animation: spin-vinyl 1.5s linear infinite;
}

@keyframes spin-vinyl {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stats-number {
    font-size: 2rem;
    font-weight: 900;
}

/* Charts Year Page */
.charts-year-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #150a0e 50%, #0a0a0a 100%);
    min-height: 20vh;
    display: flex;
    align-items: center;
}

.chart-year-big {
    font-size: 5rem;
    font-weight: 900;
    color: var(--arv-accent);
    text-shadow: 0 0 30px var(--arv-accent-glow);
    line-height: 1;
}

/* Chart Table */
.chart-table-wrapper {
    background: var(--arv-card-bg);
    border: 1px solid #1a1a1a;
}

.chart-table {
    background: transparent;
}

.chart-table thead th {
    background: var(--arv-darker);
    border-bottom: 2px solid var(--arv-accent) !important;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--arv-muted);
    padding: 12px 16px;
}

.chart-row {
    transition: background 0.15s;
    border-bottom: 1px solid #151515;
}

.chart-row:hover {
    background: var(--arv-hover) !important;
}

.chart-row td {
    padding: 10px 16px;
}

.chart-top3 {
    background: rgba(0, 230, 118, 0.05) !important;
}

.chart-top10 .chart-track-title {
    font-size: 1rem;
}

.chart-pos-col {
    width: 60px;
}

.chart-medal {
    font-size: 1.4rem;
}

.chart-number {
    font-weight: 700;
    color: var(--arv-muted);
    font-size: 0.9rem;
}

.chart-top10 .chart-number {
    color: var(--arv-accent);
    font-size: 1rem;
}

/* Mini Vinyl in table */
.chart-vinyl-mini {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.vinyl-mini-disc {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: radial-gradient(circle at center, 
        #444 0%, #444 20%, 
        #222 21%, #333 50%, 
        #222 51%, #333 80%, 
        #222 81%);
    position: relative;
}

.vinyl-mini-disc::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--arv-accent);
}

.vinyl-spin {
    animation: spin-vinyl 2s linear infinite;
}

.chart-label-badge {
    font-size: 0.75rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .chart-year-big {
        font-size: 3rem;
    }
    .charts-bpm-badge {
        font-size: 3rem;
    }
    .chart-year-number {
        font-size: 1.4rem;
    }
    .chart-vinyl-mini {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RAVE.E.P. – EVENT PORTAL
   ═══════════════════════════════════════════════════════════════ */

/* Hero */
.raveep-hero {
    background: #050508;
    min-height: 45vh;
    display: flex;
    align-items: center;
}

.raveep-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 229, 255, 0.015) 2px,
        rgba(0, 229, 255, 0.015) 4px
    );
    pointer-events: none;
    z-index: 1;
    animation: scanline-drift 8s linear infinite;
}

@keyframes scanline-drift {
    from { background-position: 0 0; }
    to { background-position: 0 100px; }
}

.raveep-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-fade 4s ease-in-out infinite;
}

@keyframes grid-fade {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* Glitch Title */
.raveep-title {
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 12px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.raveep-title::before,
.raveep-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.raveep-title::before {
    color: #00e5ff;
    animation: glitch-1 3s infinite linear alternate-reverse;
    clip-path: inset(0 0 60% 0);
}

.raveep-title::after {
    color: #ff006e;
    animation: glitch-2 2s infinite linear alternate-reverse;
    clip-path: inset(40% 0 0 0);
}

@keyframes glitch-1 {
    0%, 85% { transform: translate(0); }
    86% { transform: translate(-4px, -2px); }
    87% { transform: translate(4px, 2px); }
    88% { transform: translate(-2px, 1px); }
    89%, 100% { transform: translate(0); }
}

@keyframes glitch-2 {
    0%, 90% { transform: translate(0); }
    91% { transform: translate(3px, 1px); }
    92% { transform: translate(-3px, -1px); }
    93% { transform: translate(2px, -2px); }
    94%, 100% { transform: translate(0); }
}

.raveep-subtitle {
    font-size: 0.85rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: rgba(0, 229, 255, 0.7);
    font-weight: 600;
}

/* Month Badge */
.raveep-month-badge {
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.3);
    padding: 8px 24px;
    border-radius: 4px;
}

.raveep-month-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00e5ff;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* City Pills */
.raveep-city-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s;
    background: rgba(255, 255, 255, 0.03);
}

.raveep-city-pill:hover,
.raveep-city-pill.active {
    border-color: var(--city-color);
    color: var(--city-color);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 20px color-mix(in srgb, var(--city-color) 25%, transparent);
}

.raveep-clear-pill {
    border-color: rgba(0, 230, 118, 0.4);
    color: var(--arv-accent);
}

.raveep-clear-pill:hover {
    border-color: var(--arv-accent);
    color: #fff;
    background: rgba(0, 230, 118, 0.15);
    box-shadow: 0 0 20px var(--arv-accent-glow);
}

/* Stats */
.raveep-stat {
    text-align: center;
    padding: 0 16px;
}

.raveep-stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
}

.raveep-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--arv-muted);
}

/* City Section */
.raveep-city-indicator {
    width: 4px;
    height: 32px;
    background: var(--city-color);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--city-color);
}

.raveep-city-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.raveep-city-country {
    font-size: 0.7rem;
    opacity: 0.5;
    font-weight: 400;
    vertical-align: super;
}

/* Event Cards */
.raveep-event-card {
    background: var(--arv-card-bg);
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    display: flex;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.raveep-event-card:hover {
    border-color: var(--city-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 15px color-mix(in srgb, var(--city-color) 15%, transparent);
    transform: translateY(-2px);
}

.raveep-date-stripe {
    width: 70px;
    min-height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 8px;
    border-right: 1px solid #1a1a1a;
    flex-shrink: 0;
}

.raveep-date-day {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.raveep-date-weekday {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--arv-muted);
    margin-top: 4px;
}

.raveep-event-body {
    padding: 16px 20px;
    flex: 1;
    min-width: 0;
}

.raveep-event-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.raveep-event-card:hover .raveep-event-name {
    color: var(--city-color);
}

/* Type Badges */
.raveep-type-badge {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 3px;
    white-space: nowrap;
    flex-shrink: 0;
}

.raveep-type-club {
    background: rgba(0, 229, 255, 0.12);
    color: #00e5ff;
    border: 1px solid rgba(0, 229, 255, 0.25);
}

.raveep-type-rave {
    background: rgba(255, 0, 110, 0.15);
    color: #ff006e;
    border: 1px solid rgba(255, 0, 110, 0.3);
    animation: rave-badge-pulse 1.5s ease-in-out infinite;
}

@keyframes rave-badge-pulse {
    0%, 100% { box-shadow: none; }
    50% { box-shadow: 0 0 10px rgba(255, 0, 110, 0.4); }
}

.raveep-type-festival {
    background: rgba(118, 255, 3, 0.12);
    color: #76ff03;
    border: 1px solid rgba(118, 255, 3, 0.25);
}

.raveep-event-venue {
    font-size: 0.85rem;
    color: var(--arv-muted);
}

.raveep-event-time {
    color: rgba(255, 255, 255, 0.5);
}

.raveep-event-desc {
    color: var(--arv-muted);
    line-height: 1.5;
}

/* Lineup Artist Tags */
.raveep-lineup {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.raveep-artist-tag {
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ccc;
    transition: all 0.2s;
}

.raveep-event-card:hover .raveep-artist-tag {
    border-color: color-mix(in srgb, var(--city-color) 30%, transparent);
    color: #fff;
}

/* Corner decoration */
.raveep-corner-deco {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(225deg, color-mix(in srgb, var(--city-color) 10%, transparent) 0%, transparent 60%);
    pointer-events: none;
}

/* Empty State */
.raveep-empty-icon {
    font-size: 3rem;
    animation: radar-ping 2s ease-in-out infinite;
}

@keyframes radar-ping {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

/* CTA Section */
.raveep-cta-section {
    background: linear-gradient(180deg, transparent, rgba(0, 229, 255, 0.02) 50%, transparent);
}

.raveep-disclaimer {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Live Dot */
.raveep-live-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    margin-right: 4px;
    animation: live-blink 1.5s ease-in-out infinite;
}

@keyframes live-blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 4px #22c55e; }
    50% { opacity: 0.3; box-shadow: none; }
}

/* Event Image */
.raveep-event-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    border-bottom: 1px solid #1a1a1a;
    flex-shrink: 0;
}

.raveep-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    filter: brightness(0.8) saturate(0.9);
}

.raveep-event-card:hover .raveep-event-image img {
    transform: scale(1.05);
    filter: brightness(1) saturate(1);
}

/* Event card with image layout */
.raveep-event-card {
    flex-direction: column;
}

/* Event Link */
.raveep-event-link {
    color: inherit;
    text-decoration: none;
}

.raveep-event-link:hover {
    color: var(--city-color);
    text-decoration: underline;
}

/* Organizer */
.raveep-event-organizer {
    color: var(--arv-muted);
}

/* Status Badges */
.raveep-status-badge {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    white-space: nowrap;
}

.raveep-status-cancelled {
    background: rgba(0, 230, 118, 0.2);
    color: #00e676;
    border: 1px solid rgba(0, 230, 118, 0.3);
    text-decoration: line-through;
}

.raveep-status-soldout {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.raveep-cancelled {
    opacity: 0.5;
}

.raveep-cancelled .raveep-event-name {
    text-decoration: line-through;
}

/* Ticket Button */
.raveep-ticket-btn {
    background: color-mix(in srgb, var(--city-color) 15%, transparent);
    border: 1px solid color-mix(in srgb, var(--city-color) 35%, transparent);
    color: var(--city-color);
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.raveep-ticket-btn:hover {
    background: color-mix(in srgb, var(--city-color) 25%, transparent);
    border-color: var(--city-color);
    color: #fff;
    box-shadow: 0 0 12px color-mix(in srgb, var(--city-color) 25%, transparent);
}

/* Powered By */
.raveep-powered-by {
    color: var(--arv-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.raveep-powered-by:hover {
    color: #00e5ff;
}

.raveep-powered-by strong {
    color: #76ff03;
}

/* Responsive */
@media (max-width: 768px) {
    .raveep-title {
        font-size: 2.5rem;
        letter-spacing: 6px;
    }
    .raveep-event-card .d-flex.flex-grow-1 {
        flex-direction: column;
    }
    .raveep-date-stripe {
        width: 100%;
        min-height: auto;
        flex-direction: row;
        gap: 8px;
        padding: 10px 16px;
        border-right: none;
        border-bottom: 1px solid #1a1a1a;
    }
    .raveep-date-day {
        font-size: 1.3rem;
    }
    .raveep-date-weekday {
        margin-top: 0;
    }
    .raveep-event-image {
        height: 120px;
    }
}


/* ═══════════════════════════════════════════════════════════════
   LIVE CHAT PANEL
   ═══════════════════════════════════════════════════════════════ */

.live-chat-panel {
    background: var(--arv-card);
    border: 1px solid rgba(0, 230, 118, 0.15);
    height: 540px;
    overflow: hidden;
}

.live-chat-header {
    background: rgba(0, 230, 118, 0.08);
    border-bottom: 1px solid rgba(0, 230, 118, 0.2);
    color: var(--arv-accent);
    flex-shrink: 0;
}

.live-chat-messages {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--arv-accent) transparent;
}

.live-chat-messages::-webkit-scrollbar {
    width: 4px;
}

.live-chat-messages::-webkit-scrollbar-thumb {
    background: var(--arv-accent);
    border-radius: 2px;
}

.live-chat-msg {
    transition: background 0.2s;
}

.live-chat-msg:hover {
    background: rgba(255, 255, 255, 0.03);
}

.live-chat-msg.chat-new {
    animation: chatSlideIn 0.3s ease-out;
}

@keyframes chatSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.live-chat-input {
    background: rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.live-chat-input .form-control:focus {
    border-color: var(--arv-accent);
    box-shadow: 0 0 0 0.15rem rgba(0, 230, 118, 0.25);
}

/* On mobile: chat below player, shorter */
@media (max-width: 991.98px) {
    .live-chat-panel {
        height: 400px;
        margin-top: 1rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   AI ARTIST AGENT
   ═══════════════════════════════════════════════════════════════ */

.agent-hero {
    background: linear-gradient(135deg, var(--arv-darker) 0%, #0d0d12 50%, #12080a 100%);
    border-bottom: 1px solid #1a1a1a;
}

.agent-icon {
    font-size: 3rem;
    animation: agentPulse 3s ease-in-out infinite;
}

@keyframes agentPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50%      { transform: scale(1.08); opacity: 1; }
}

.agent-input-card {
    background: var(--arv-card-bg);
    border: 1px solid #222;
}

.agent-input {
    background: var(--arv-darker) !important;
    border-color: #333 !important;
    color: var(--arv-text) !important;
    font-size: 1rem;
}

.agent-input:focus {
    border-color: var(--arv-accent) !important;
    box-shadow: 0 0 0 0.2rem var(--arv-accent-glow) !important;
}

.agent-input::placeholder {
    color: var(--arv-muted);
}

.agent-submit-btn {
    white-space: nowrap;
    min-width: 100px;
}

.agent-suggestion {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
    transition: all 0.2s;
}

.agent-suggestion:hover {
    background: var(--arv-accent) !important;
    border-color: var(--arv-accent) !important;
    color: #fff !important;
}

.agent-response-card {
    background: var(--arv-card-bg);
    border: 1px solid #222;
    animation: agentFadeIn 0.4s ease-out;
}

@keyframes agentFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.agent-avatar {
    font-size: 1.5rem;
}

.agent-response-body {
    line-height: 1.7;
    font-size: 0.95rem;
}

.agent-response-body h3,
.agent-response-body h4,
.agent-response-body h5 {
    color: #fff;
}

.agent-response-body ul {
    padding-left: 1.2rem;
}

.agent-response-body li {
    margin-bottom: 0.3rem;
}

.agent-response-body a {
    color: var(--arv-accent);
}

.agent-loading-bar {
    width: 200px;
    height: 3px;
    background: #222;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.agent-loading-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 40%;
    background: var(--arv-accent);
    border-radius: 2px;
    animation: agentLoadSlide 1.2s ease-in-out infinite;
}

@keyframes agentLoadSlide {
    0%   { left: -40%; }
    100% { left: 100%; }
}

.agent-history-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #1a1a1a;
    cursor: pointer;
    transition: all 0.2s;
}

.agent-history-item:hover {
    background: rgba(0, 230, 118, 0.08);
    border-color: var(--arv-accent);
}

/* ═══════════════════════════════════════════════════════════════
   LOOP A – TRENDING "HOT THIS WEEK"
   ═══════════════════════════════════════════════════════════════ */
.trending-item {
    transition: all 0.2s;
}
.trending-item:hover {
    background: rgba(0, 230, 118, 0.1) !important;
}
.discussion-starter-btn {
    font-size: 0.8rem;
    transition: all 0.2s;
}
.discussion-starter-btn:hover {
    background: var(--arv-accent) !important;
    color: #fff !important;
    border-color: var(--arv-accent) !important;
}

/* ═══════════════════════════════════════════════════════════════
   LOOP B – CHAT HIGHLIGHTS
   ═══════════════════════════════════════════════════════════════ */
.chat-like-btn {
    transition: all 0.2s;
    opacity: 0.6;
}
.chat-like-btn:hover {
    opacity: 1;
    transform: scale(1.2);
}
.chat-like-btn.text-danger {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   LOOP D – ARTIST PAGES
   ═══════════════════════════════════════════════════════════════ */
.artist-directory-card {
    transition: all 0.3s;
}
.artist-directory-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 230, 118, 0.15);
    border-color: var(--arv-accent) !important;
}
.artist-bio-content {
    color: var(--arv-text);
}
.artist-bio-content h1,
.artist-bio-content h2,
.artist-bio-content h3 {
    color: #fff;
    margin-top: 1.5em;
}
.artist-bio-content a {
    color: var(--arv-accent);
}

/* ═══════════════════════════════════════════════════════════════
   PLYR VIDEO PLAYER – Dark Techno Theme
   ═══════════════════════════════════════════════════════════════ */
:root {
    --plyr-color-main: #00e676;
    --plyr-video-background: #0a0a0a;
    --plyr-badge-background: #00e676;
    --plyr-badge-text-color: #fff;
    --plyr-badge-border-radius: 3px;
    --plyr-control-icon-size: 18px;
    --plyr-tooltip-background: #1a1a1a;
    --plyr-tooltip-color: #fff;
    --plyr-menu-background: #1a1a1a;
    --plyr-menu-color: #ddd;
    --plyr-font-family: inherit;
}

/* Dark player container */
.plyr--video {
    border-radius: .5rem;
    overflow: hidden;
}

.plyr--youtube .plyr__poster {
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center;
}

/* Plyr wrapper for responsive embeds */
.plyr-wrap {
    position: relative;
    border-radius: .5rem;
    overflow: hidden;
    background: #0a0a0a;
    border: 1px solid #222;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

/* Error fallback (hidden by default) */
.plyr-fallback {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.95);
    z-index: 10;
    text-align: center;
    padding-top: 25%;
}
.plyr-fallback a {
    color: #00e676;
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL STREAM BANNER (base.html — shown on every page)
   ═══════════════════════════════════════════════════════════════ */
.stream-banner {
    background: linear-gradient(90deg, rgba(0, 230, 118,0.15) 0%, rgba(10,10,10,0.95) 50%, rgba(0, 230, 118,0.15) 100%);
    border-bottom: 1px solid rgba(0, 230, 118,0.3);
    font-size: 0.88rem;
    color: #ddd;
    position: relative;
    z-index: 1030; /* above most content, below navbar */
    animation: streamBannerFadeIn 0.4s ease-out;
}

@keyframes streamBannerFadeIn {
    from { opacity: 0; transform: translateY(-100%); }
    to   { opacity: 1; transform: translateY(0); }
}

.stream-banner-dot {
    /* legacy — replaced by .stream-emblem */
    display: none;
}

/* ── Stream Emblem (rotating + pulsing geometric symbol) ── */
.stream-emblem {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stream-emblem-sm {
    width: 24px;
    height: 24px;
}

.stream-emblem-lg {
    width: 72px;
    height: 72px;
}

/* Rotating rings */
.stream-emblem-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--arv-accent);
    border-right-color: rgba(0, 230, 118,0.3);
    animation: emblemSpin 2.4s linear infinite;
}

.stream-emblem-ring-2 {
    inset: 4px;
    border-top-color: rgba(120,255,170,0.7);
    border-right-color: transparent;
    border-bottom-color: rgba(0, 230, 118,0.4);
    animation: emblemSpinReverse 3.2s linear infinite;
}

.stream-emblem-ring-3 {
    inset: 10px;
    border-width: 1.5px;
    border-top-color: rgba(180,255,210,0.5);
    border-left-color: rgba(0, 230, 118,0.25);
    border-right-color: transparent;
    border-bottom-color: transparent;
    animation: emblemSpin 1.8s linear infinite;
}

/* SM variant ring adjustments */
.stream-emblem-sm .stream-emblem-ring {
    border-width: 1.5px;
}
.stream-emblem-sm .stream-emblem-ring-2 {
    inset: 2px;
    border-width: 1.5px;
}

/* Glowing core */
.stream-emblem-core {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.stream-emblem-sm .stream-emblem-core {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--arv-accent);
    box-shadow: 0 0 6px var(--arv-accent), 0 0 16px rgba(0, 230, 118,0.4);
    animation: emblemPulseCore 1.6s ease-in-out infinite;
}

.stream-emblem-lg .stream-emblem-core {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 230, 118,0.9) 0%, rgba(0,180,90,0.7) 100%);
    box-shadow: 0 0 12px var(--arv-accent), 0 0 32px rgba(0, 230, 118,0.35);
    animation: emblemPulseCoreLg 2s ease-in-out infinite;
}

.stream-emblem-lg .stream-emblem-core svg {
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.6));
    margin-left: 2px; /* optical center for play triangle */
}

@keyframes emblemSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes emblemSpinReverse {
    from { transform: rotate(360deg); }
    to   { transform: rotate(0deg); }
}

@keyframes emblemPulseCore {
    0%, 100% { transform: scale(1);   box-shadow: 0 0 6px var(--arv-accent), 0 0 16px rgba(0, 230, 118,0.4); }
    50%      { transform: scale(1.4); box-shadow: 0 0 12px var(--arv-accent), 0 0 28px rgba(0, 230, 118,0.6); }
}

@keyframes emblemPulseCoreLg {
    0%, 100% { transform: scale(1);    box-shadow: 0 0 12px var(--arv-accent), 0 0 32px rgba(0, 230, 118,0.35); }
    50%      { transform: scale(1.08); box-shadow: 0 0 20px var(--arv-accent), 0 0 48px rgba(0, 230, 118,0.5); }
}

.stream-banner-date {
    font-weight: 700;
    color: var(--arv-accent);
    white-space: nowrap;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.stream-banner-text {
    color: #e0e0e0;
    font-weight: 500;
}

.stream-banner-btn {
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════
   STREAM HIGHLIGHT CARD (blog_index.html — start page)
   ═══════════════════════════════════════════════════════════════ */
.stream-highlight-section {
    background: var(--arv-dark);
}

.stream-highlight-card {
    background: linear-gradient(135deg, rgba(0, 230, 118,0.08) 0%, rgba(10,10,10,0.9) 60%);
    border: 1px solid rgba(0, 230, 118,0.25);
    position: relative;
    overflow: hidden;
}

.stream-highlight-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 230, 118,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.stream-highlight-icon {
    /* legacy — replaced by .stream-emblem-lg */
    display: none;
}

.stream-highlight-pulse {
    /* legacy — replaced by .stream-emblem rings */
    display: none;
}

.stream-highlight-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--arv-accent);
}

.stream-highlight-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.01em;
}

.stream-highlight-sub {
    font-size: 1rem;
    color: #bbb;
}

.stream-highlight-desc {
    font-size: 0.92rem;
    color: #999;
}

@media (max-width: 768px) {
    .stream-highlight-card {
        text-align: center;
    }
    .stream-highlight-title {
        font-size: 1.25rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   BRAND TAGLINE (navbar)
   ═══════════════════════════════════════════════════════════════ */

.brand-tagline {
    display: inline;
    font-size: 0.65rem;
    font-weight: 400;
    color: #666;
    letter-spacing: 0.04em;
    margin-left: 0.5rem;
    font-style: italic;
    vertical-align: middle;
}

/* ═══════════════════════════════════════════════════════════════
   NAV DROPDOWN SUBTITLES
   ═══════════════════════════════════════════════════════════════ */

.dropdown-menu-dark .dropdown-item small {
    font-size: 0.72rem;
    line-height: 1.2;
    opacity: 0.7;
}

.dropdown-menu-dark .dropdown-item:hover small,
.dropdown-menu-dark .dropdown-item:focus small {
    opacity: 1;
}

.dropdown-menu-dark .dropdown-header {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: #666;
    padding-bottom: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════════
   MANIFESTO INTRO STRIP (Startseite)
   ═══════════════════════════════════════════════════════════════ */

.manifesto-strip {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.04), rgba(0, 230, 118, 0.01));
    border-bottom: 1px solid rgba(0, 230, 118, 0.12);
}

.manifesto-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
}

.manifesto-text {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
}

.manifesto-text strong {
    color: #fff;
}

@media (max-width: 768px) {
    .manifesto-title {
        font-size: 1.15rem;
    }
    .manifesto-text {
        font-size: 0.88rem;
    }
}

