/* Go Live Gigs — Home v2 */
.home-v2 {
    --hv-cyan: #00f2fe;
    --hv-gold: #f5d061;
    --hv-pink: #ff2d6a;
    --hv-purple: #a855f7;
    --hv-deep: #030308;
    --hv-card: rgba(12, 13, 20, 0.72);
    --hv-border: rgba(255, 255, 255, 0.08);
    color: #fff;
    background: var(--hv-deep);
    overflow-x: hidden;
}

.home-v2 .hv-hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0 48px;
}

@media (min-width: 1200px) {
    .home-v2 .hv-hero {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: stretch;
        min-height: calc(100vh - 72px);
        padding: 24px clamp(20px, 3vw, 48px) 40px;
        gap: 28px;
    }
}

.hv-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.hv-aurora {
    position: absolute;
    width: 80vw;
    height: 80vw;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
    animation: hvDrift 18s ease-in-out infinite alternate;
}

.hv-aurora--a { top: -20%; left: -15%; background: radial-gradient(circle, rgba(0, 242, 254, 0.5), transparent 70%); }
.hv-aurora--b { bottom: -30%; right: -10%; background: radial-gradient(circle, rgba(255, 45, 106, 0.35), transparent 70%); animation-delay: -6s; }
.hv-aurora--c { top: 30%; right: 20%; background: radial-gradient(circle, rgba(245, 208, 97, 0.25), transparent 70%); animation-delay: -12s; }

@keyframes hvDrift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(4%, -3%) scale(1.08); }
}

.hv-grid-floor {
    position: absolute;
    bottom: -20%;
    left: -50%;
    width: 200%;
    height: 50%;
    background-image:
        linear-gradient(rgba(0, 242, 254, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 254, 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
    transform: perspective(500px) rotateX(72deg);
    mask-image: linear-gradient(to top, black, transparent 85%);
    opacity: 0.6;
}

/* Stage spotlights — lightweight sway */
.hv-stage-rig {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 55%;
    pointer-events: none;
    overflow: hidden;
}

.hv-spot {
    position: absolute;
    top: -8%;
    width: 14vw;
    max-width: 120px;
    height: 75vh;
    transform-origin: top center;
    opacity: 0.35;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(0, 242, 254, 0.22) 18%,
        rgba(255, 45, 106, 0.08) 45%,
        transparent 72%
    );
    filter: blur(2px);
    animation: hvSpotSway 7s ease-in-out infinite alternate;
}

.hv-spot--1 { left: 8%; animation-delay: 0s; }
.hv-spot--2 { left: 26%; animation-delay: -1.2s; opacity: 0.28; }
.hv-spot--3 { left: 50%; transform: translateX(-50%); animation-delay: -2.4s; width: 18vw; opacity: 0.4; }
.hv-spot--4 { right: 26%; animation-delay: -3.6s; opacity: 0.3; }
.hv-spot--5 { right: 8%; animation-delay: -4.8s; opacity: 0.25; }

@keyframes hvSpotSway {
    0% { transform: rotate(-14deg) scaleY(0.92); }
    50% { transform: rotate(4deg) scaleY(1); }
    100% { transform: rotate(16deg) scaleY(0.95); }
}

.hv-spot--3 {
    animation-name: hvSpotSwayCenter;
}

@keyframes hvSpotSwayCenter {
    0% { transform: translateX(-50%) rotate(-10deg) scaleY(0.9); }
    100% { transform: translateX(-50%) rotate(10deg) scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
    .hv-spot, .hv-aurora { animation: none !important; }
}

.hv-hero-main,
.hv-hero-aside {
    position: relative;
    z-index: 2;
}

.hv-hero-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 20px 0;
    text-align: center;
}

@media (min-width: 1200px) {
    .hv-hero-main { text-align: left; padding: 40px 0 0 8px; }
}

.hv-eyebrow {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 16px;
}

.hv-title {
    font-size: clamp(2.6rem, 7vw, 4.8rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin: 0 0 16px;
}

.hv-title .hv-outline {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.85);
}

.hv-title .hv-gradient {
    background: linear-gradient(120deg, #fff 0%, var(--hv-cyan) 45%, var(--hv-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hv-lead {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.62);
    max-width: 520px;
    margin: 0 auto 28px;
    font-weight: 400;
    line-height: 1.55;
}

@media (min-width: 1200px) {
    .hv-lead { margin-left: 0; margin-right: 0; }
}

.hv-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

@media (min-width: 1200px) {
    .hv-stats { justify-content: flex-start; }
}

.hv-stat {
    background: var(--hv-card);
    border: 1px solid var(--hv-border);
    border-radius: 16px;
    padding: 12px 18px;
    min-width: 100px;
    backdrop-filter: blur(12px);
    transition: transform 0.25s, border-color 0.25s;
}

.hv-stat:hover { transform: translateY(-3px); border-color: rgba(0, 242, 254, 0.35); }
.hv-stat--live .hv-stat-num { color: var(--hv-pink); }

.hv-stat-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--hv-cyan);
    line-height: 1;
}

.hv-stat-lbl {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
}

.hv-search {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 560px;
    margin: 0 auto 20px;
    padding: 8px 8px 8px 18px;
    border-radius: 999px;
    background: rgba(8, 9, 14, 0.75);
    border: 1px solid rgba(0, 242, 254, 0.25);
    box-shadow: 0 0 40px rgba(0, 242, 254, 0.08);
    backdrop-filter: blur(16px);
    transition: border-color 0.3s, box-shadow 0.3s;
}

@media (min-width: 1200px) {
    .hv-search { margin-left: 0; margin-right: 0; }
}

.hv-search:focus-within {
    border-color: rgba(0, 242, 254, 0.65);
    box-shadow: 0 0 50px rgba(0, 242, 254, 0.18);
}

.hv-search input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    outline: none;
    min-width: 0;
}

.hv-search input::placeholder { color: rgba(255, 255, 255, 0.35); }

.hv-search button {
    border: none;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--hv-cyan), #4facfe);
    color: #000;
    white-space: nowrap;
}

.hv-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

@media (min-width: 1200px) {
    .hv-chips { justify-content: flex-start; }
}

.hv-chip {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--hv-border);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    text-decoration: none !important;
    transition: 0.2s;
}

.hv-chip:hover {
    border-color: var(--hv-cyan);
    color: var(--hv-cyan);
    background: rgba(0, 242, 254, 0.1);
}

/* Bento quick nav */
.hv-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 560px;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .hv-bento { margin-left: 0; max-width: 100%; grid-template-columns: repeat(3, 1fr); }
}

.hv-bento a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px;
    border-radius: 18px;
    background: var(--hv-card);
    border: 1px solid var(--hv-border);
    text-decoration: none !important;
    color: #fff;
    transition: 0.25s;
    min-height: 88px;
}

.hv-bento a:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 242, 254, 0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.hv-bento-icon { font-size: 1.25rem; color: var(--hv-cyan); }
.hv-bento-label { font-weight: 800; font-size: 0.85rem; }
.hv-bento-sub { font-size: 0.68rem; color: rgba(255, 255, 255, 0.45); }

.hv-bento-tile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(0, 242, 254, 0.12), rgba(168, 85, 247, 0.08));
    border: 1px solid rgba(0, 242, 254, 0.35);
    color: #fff;
    text-align: left;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    min-height: 88px;
    width: 100%;
    font: inherit;
}

.hv-bento-tile:hover,
.hv-bento-tile:focus-visible {
    transform: translateY(-4px);
    border-color: var(--hv-cyan);
    box-shadow: 0 16px 40px rgba(0, 242, 254, 0.18);
    outline: none;
}

.hv-bento-tile--agent .hv-bento-icon--pulse {
    font-size: 1.35rem;
    animation: hvAgentPulse 2.4s ease-in-out infinite;
}

@keyframes hvAgentPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 transparent); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.55)); }
}

.hv-bento a.hv-bento--wide {
    grid-column: span 2;
}

@media (min-width: 1200px) {
    .hv-bento a.hv-bento--wide { grid-column: span 1; }
}

/* GigGuide panel */
.hv-hero-aside { padding: 16px 16px 0; }

.gig-guide-panel {
    height: 100%;
    min-height: 420px;
    max-height: min(72vh, 640px);
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(14, 16, 28, 0.92), rgba(8, 9, 16, 0.88));
    border: 1px solid rgba(0, 242, 254, 0.2);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.gig-guide-panel__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--hv-border);
}

.gig-guide-panel__logo {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(0, 242, 254, 0.3);
}

.gig-guide-panel__title { font-weight: 900; font-size: 1rem; margin: 0; }
.gig-guide-panel__sub { font-size: 0.68rem; color: rgba(255, 255, 255, 0.45); margin: 0; }

.gg-messages {
    flex: 1;
    overflow-y: auto;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scroll-behavior: smooth;
}

.gg-msg { display: flex; gap: 10px; align-items: flex-start; }
.gg-msg--user { flex-direction: row-reverse; }
.gg-msg--user .gg-bubble {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.2), rgba(0, 242, 254, 0.08));
    border-color: rgba(0, 242, 254, 0.35);
}

.gg-avatar {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.gg-bubble {
    max-width: 88%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.84rem;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--hv-border);
    color: rgba(255, 255, 255, 0.9);
}

.gg-bubble .gg-link {
    color: var(--hv-cyan);
    font-weight: 700;
    text-decoration: none;
}

.gg-bubble .gg-link:hover { text-decoration: underline; }

.gg-starters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 16px 10px;
    max-height: 88px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.gg-starter-chip {
    border: 1px solid var(--hv-border);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.68rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.gg-starter-chip:hover {
    border-color: var(--hv-gold);
    color: var(--hv-gold);
}

.gg-form {
    display: flex;
    gap: 8px;
    padding: 12px 14px 14px;
    border-top: 1px solid var(--hv-border);
    background: rgba(0, 0, 0, 0.25);
}

.gg-input {
    flex: 1;
    border-radius: 14px;
    border: 1px solid var(--hv-border);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    padding: 12px 14px;
    font-size: 0.85rem;
    outline: none;
}

.gg-input:focus { border-color: rgba(0, 242, 254, 0.5); }

.gg-submit {
    border: none;
    border-radius: 14px;
    padding: 0 16px;
    font-weight: 800;
    background: var(--hv-gold);
    color: #000;
    cursor: pointer;
}

.gg-dots span {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hv-cyan);
    margin: 0 2px;
    animation: ggBlink 1s infinite;
}

.gg-dots span:nth-child(2) { animation-delay: 0.15s; }
.gg-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes ggBlink {
    0%, 80%, 100% { opacity: 0.25; }
    40% { opacity: 1; }
}

/* Mobile FAB */
#gigGuideFab {
    display: none;
    position: fixed;
    right: 18px;
    bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    z-index: 1040;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid rgba(0, 242, 254, 0.5);
    background: linear-gradient(135deg, #0e1018, #1a1d2e);
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 12px 40px rgba(0, 242, 254, 0.25);
    cursor: pointer;
}

@media (max-width: 1199.98px) {
    #gigGuideFab { display: grid; place-items: center; }
    .hv-hero-aside {
        display: block;
        height: 0;
        padding: 0;
        overflow: visible;
    }
    #gigGuidePanel {
        display: none;
        position: fixed;
        inset: auto 12px calc(156px + env(safe-area-inset-bottom, 0px)) 12px;
        z-index: 1050;
        max-height: 58vh;
        flex-direction: column;
    }
    #gigGuidePanel.is-open { display: flex; }
    #gigGuidePanel .gig-guide-panel { max-height: none; min-height: 0; flex: 1; }
}

/* Ticker, stories, sections reuse + polish */
.home-v2 .hv-ticker {
    border-bottom: 1px solid rgba(255, 45, 106, 0.2);
    background: linear-gradient(90deg, rgba(255, 45, 106, 0.12), transparent);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 5;
}

.home-v2 .hv-ticker-inner {
    display: inline-flex;
    animation: hvTicker 35s linear infinite;
}

@keyframes hvTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.home-v2 .hv-ticker-item {
    padding: 10px 24px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.home-v2 .hv-section {
    padding: 56px clamp(16px, 4vw, 48px);
    position: relative;
    z-index: 2;
}

.home-v2 .hv-section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.home-v2 .hv-section-eyebrow {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--hv-cyan);
    margin-bottom: 8px;
}

/* Stories */
.hv-stories {
    padding: 16px 0 8px;
    position: relative;
    z-index: 5;
}

.hv-stories-row { margin-bottom: 12px; }
.hv-stories-label {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    padding: 0 20px 8px;
}

.hv-stories-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 20px 8px;
    scrollbar-width: none;
}

.hv-stories-scroll::-webkit-scrollbar { display: none; }

.hv-story {
    flex: 0 0 auto;
    width: 76px;
    text-align: center;
    text-decoration: none !important;
    color: #fff;
}

.hv-story-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    padding: 3px;
    background: conic-gradient(var(--hv-cyan), var(--hv-gold), var(--hv-pink), var(--hv-cyan));
    margin: 0 auto 6px;
    animation: hvSpin 6s linear infinite;
}

.hv-story-ring--artist {
    background: conic-gradient(var(--hv-cyan), var(--hv-purple), var(--hv-pink), var(--hv-cyan));
}

@keyframes hvSpin { to { transform: rotate(360deg); } }

.hv-story img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--hv-deep);
}

.hv-story-name {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Event cards + join — inherit from previous with tweaks */
.home-v2 .event-card-vip {
    background: #0a0a0f;
    border-radius: 22px;
    border: 1px solid var(--hv-border);
    overflow: hidden;
    transition: 0.35s;
    height: 100%;
}

.home-v2 .event-card-vip:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 242, 254, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.home-v2 .card-img-container {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.home-v2 .card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.home-v2 .event-card-vip:hover .card-img-container img { transform: scale(1.08); }

.home-v2 .join-card {
    border-radius: 24px;
    border: 1px solid var(--hv-border);
    background: var(--hv-card);
    padding: 32px 28px;
    height: 100%;
    transition: 0.3s;
}

.home-v2 .join-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.home-v2 .discover-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.home-v2 .discover-card {
    flex: 0 0 130px;
    text-align: center;
    text-decoration: none !important;
    color: #fff;
}

.home-v2 .discover-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 242, 254, 0.3);
    margin: 0 auto 8px;
}
