/* ==========================================================================
   Maurizio Bucalo Official Portfolio Website - Core Stylesheet
   Theme: Italian Folk meets Cyber Tech House (Dark, High-Contrast Neon gradients)
   ========================================================================== */

/* --- Custom Variables & Reset --- */
:root {
    --bg-dark: #07070c;
    --bg-card: rgba(13, 13, 23, 0.5);
    --bg-card-hover: rgba(20, 20, 35, 0.65);
    --border-color: rgba(255, 255, 255, 0.07);
    --border-glow: rgba(0, 240, 255, 0.3);
    
    /* Neon Gradients */
    --primary-neon: #ff4e00;     /* Calabrian Flame Orange-Red */
    --secondary-neon: #00f0ff;   /* Electro Tech-House Cyan */
    --accent-neon: #ec008c;      /* Pizzica Pink */
    --purple-deep: #7000ff;
    
    /* Text colors */
    --text-main: #f0f0f5;
    --text-muted: #8e8e9f;
    --text-glow-shadow: 0 0 10px rgba(0, 240, 255, 0.5), 0 0 20px rgba(0, 240, 255, 0.2);
    --text-glow-orange: 0 0 10px rgba(255, 78, 0, 0.5), 0 0 20px rgba(255, 78, 0, 0.2);
    
    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

img {
    max-width: 100%;
    height: auto;
    content-visibility: auto;
}

picture {
    display: contents;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden; /* Scroll logic is handled via JS for discrete page morphs */
    background-color: var(--bg-dark);
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Headings typography */
h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
}

/* --- WebGL Canvas (Background) --- */
#webgl-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* Folk Dancer Background Spirit */
.folk-dancer-bg {
    position: fixed;
    bottom: -5%;
    right: -2%;
    width: 580px;
    height: auto;
    z-index: 2;
    pointer-events: none;
    opacity: 0.18;
    mix-blend-mode: screen;
    transform-origin: center bottom;
    will-change: transform;
}

.folk-dancer-bg img {
    width: 100%;
    height: auto;
    display: block;
    animation: dancerTarantella 6s ease-in-out infinite;
    transform-origin: center bottom;
    will-change: transform;
}

@keyframes dancerTarantella {
    0%   { transform: translateY(0)    translateX(0)    rotate(0deg)    scale(1);    }
    8%   { transform: translateY(-12px) translateX(8px)  rotate(2deg)   scale(1.01); }
    16%  { transform: translateY(-4px)  translateX(14px) rotate(3.5deg) scale(1.0);  }
    24%  { transform: translateY(-18px) translateX(6px)  rotate(1deg)   scale(1.03); }
    32%  { transform: translateY(-8px)  translateX(-4px) rotate(-1.5deg) scale(1.01);}
    40%  { transform: translateY(-22px) translateX(-10px) rotate(-3deg)  scale(1.02);}
    50%  { transform: translateY(-14px) translateX(-14px) rotate(-4deg)  scale(1.0); }
    58%  { transform: translateY(-6px)  translateX(-8px) rotate(-2deg)  scale(1.02); }
    66%  { transform: translateY(-16px) translateX(0px)  rotate(0deg)   scale(1.04); }
    74%  { transform: translateY(-10px) translateX(10px) rotate(2.5deg) scale(1.01); }
    82%  { transform: translateY(-20px) translateX(6px)  rotate(1.5deg) scale(1.03); }
    90%  { transform: translateY(-8px)  translateX(2px)  rotate(0.5deg) scale(1.01); }
    100% { transform: translateY(0)     translateX(0)    rotate(0deg)   scale(1);    }
}

@media (max-width: 768px) {
    .folk-dancer-bg {
        width: 220px;
        bottom: -3%;
        right: -5%;
        opacity: 0.12;
    }
}

/* --- Cyber Aesthetic Overlays --- */
.cyber-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 10%, rgba(7, 7, 12, 0.85) 90%);
    z-index: 1;
    pointer-events: none;
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(18, 16, 16, 0) 50%, 
        rgba(0, 0, 0, 0.12) 50%
    );
    background-size: 100% 4px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.4;
}

/* --- Main Header / Navigation --- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(7, 7, 12, 0.8), transparent);
    backdrop-filter: blur(5px);
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.logo-m {
    color: var(--primary-neon);
    text-shadow: var(--text-glow-orange);
    font-size: 1.8rem;
    font-weight: 900;
}

.logo-b {
    color: var(--secondary-neon);
    text-shadow: var(--text-glow-shadow);
    font-size: 1.8rem;
    font-weight: 900;
    margin-right: 12px;
}

.logo-text {
    font-size: 0.85rem;
    color: var(--text-main);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 12px;
}

.desktop-nav {
    display: flex;
    gap: 30px;
    position: relative;
}

.nav-active-pill {
    position: absolute;
    bottom: -4px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-neon), var(--accent-neon), var(--secondary-neon));
    border-radius: 4px;
    box-shadow: 0 0 12px var(--primary-neon), 0 0 6px var(--secondary-neon);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    opacity: 0;
}

.nav-active-pill.visible {
    opacity: 1;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.audio-pulse-indicator {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
    width: 25px;
    cursor: pointer;
}

.pulse-bar {
    width: 4px;
    height: 100%;
    background-color: var(--secondary-neon);
    border-radius: 2px;
    transform-origin: bottom;
    animation: bounce-bar 1.2s ease infinite alternate;
    animation-play-state: paused;
}

.audio-playing .pulse-bar {
    animation-play-state: running;
}

.bar-1 { animation-delay: 0.1s; background-color: var(--primary-neon); }
.bar-2 { animation-delay: 0.4s; background-color: var(--secondary-neon); }
.bar-3 { animation-delay: 0.2s; background-color: var(--accent-neon); }

@keyframes bounce-bar {
    0% { transform: scaleY(0.2); }
    100% { transform: scaleY(1); }
}

/* --- viewport Sections Wrapper --- */
#viewport-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;
    overflow: hidden;
}

/* Section Slide defaults */
.section-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 120px 10% 120px 10%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(60px) scale(0.96) rotateX(4deg);
    transform-style: preserve-3d;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.section-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1) rotateX(0deg);
    z-index: 10;
}

.slide-content {
    width: 100%;
    max-width: 1200px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto 0;
}

/* Generic typographic classes */
.kicker-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--secondary-neon);
    margin-bottom: 15px;
    display: inline-block;
}

.font-glow {
    text-shadow: var(--text-glow-shadow);
}

.font-glow-orange {
    text-shadow: var(--text-glow-orange);
}

h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 50%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 30px;
}

/* --- Section 1: Hero specific --- */
#hero {
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    align-items: flex-start;
}

.hero-portrait {
    position: fixed;
    left: 4%;
    right: auto;
    bottom: 0;
    width: 28%;
    max-width: 420px;
    height: 85vh;
    pointer-events: none;
    z-index: 0;
}

.hero-portrait img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom left;
    opacity: 0.85;
    filter: grayscale(10%) contrast(1.15) brightness(0.95);
    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 85%,
        rgba(0, 0, 0, 0) 100%
    );
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 85%,
        rgba(0, 0, 0, 0) 100%
    );
}

#hero .slide-content {
    position: relative;
    z-index: 1;
    margin-left: 35%;
    max-width: 55%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#hero h1.main-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 30%, var(--primary-neon) 70%, var(--secondary-neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 10px 40px rgba(255, 78, 0, 0.15));
}

#hero .subtitle {
    font-size: 1.4rem;
    max-width: 700px;
    font-weight: 300;
    color: var(--text-main);
    opacity: 0.95;
}

/* Glass Panels & Cards */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    pointer-events: none;
}

.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 240, 255, 0.05);
    background: var(--bg-card-hover);
}

/* Buttons */
.cta-group {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

/* Hero — New Release Spotlight */
.hero-new-release {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    padding: 12px 16px;
    background: rgba(255, 78, 0, 0.07);
    border: 1px solid rgba(255, 78, 0, 0.25);
    border-radius: 14px;
    cursor: pointer;
    max-width: 420px;
    transition: all 0.25s ease;
    animation: heroNewGlow 2.5s ease-in-out infinite;
}

.hero-new-release:hover {
    background: rgba(255, 78, 0, 0.14);
    border-color: rgba(255, 78, 0, 0.5);
    transform: translateY(-2px);
}

@keyframes heroNewGlow {
    0%, 100% { box-shadow: 0 0 12px rgba(255, 78, 0, 0.15); }
    50%       { box-shadow: 0 0 28px rgba(255, 140, 0, 0.35); }
}

/* Hero Social Subscribe Block */
.hero-social-subscribe {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 450px;
}

.hero-social-subscribe .subscribe-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.hero-social-subscribe .subscribe-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-social-subscribe .sub-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    backdrop-filter: blur(10px);
}

.hero-social-subscribe .sub-btn i {
    font-size: 0.95rem;
    transition: transform 0.25s ease;
}

.hero-social-subscribe .sub-spotify:hover {
    background: rgba(30, 215, 96, 0.1);
    border-color: #1db954;
    color: #1db954;
    box-shadow: 0 0 15px rgba(30, 215, 96, 0.3);
    transform: translateY(-2px);
}
.hero-social-subscribe .sub-spotify:hover i {
    transform: scale(1.2);
}

.hero-social-subscribe .sub-youtube:hover {
    background: rgba(255, 0, 0, 0.08);
    border-color: #ff0000;
    color: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    transform: translateY(-2px);
}
.hero-social-subscribe .sub-youtube:hover i {
    transform: scale(1.2);
}

.hero-social-subscribe .sub-apple:hover {
    background: rgba(250, 36, 60, 0.08);
    border-color: #fa243c;
    color: #fa243c;
    box-shadow: 0 0 15px rgba(250, 36, 60, 0.3);
    transform: translateY(-2px);
}
.hero-social-subscribe .sub-apple:hover i {
    transform: scale(1.2);
}

.hero-new-release-thumb {
    position: relative;
    width: 80px;
    min-width: 80px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.hero-new-release-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-new-release-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 0.85rem;
}

.hero-new-release-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-new-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--primary-neon);
    text-transform: uppercase;
}

.hero-new-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.hero-new-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Hero — Course Promo Card */
.hero-course-promo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
    padding: 12px 16px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 14px;
    cursor: pointer;
    max-width: 420px;
    transition: all 0.25s ease;
    animation: heroCourseGlow 3s ease-in-out infinite;
}

.hero-course-promo:hover {
    background: rgba(0, 240, 255, 0.12);
    border-color: rgba(0, 240, 255, 0.5);
    transform: translateY(-2px);
}

@keyframes heroCourseGlow {
    0%, 100% { box-shadow: 0 0 12px rgba(0, 240, 255, 0.1); }
    50%       { box-shadow: 0 0 24px rgba(0, 240, 255, 0.25); }
}

.hero-course-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: rgba(0, 240, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00f0ff;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: inset 0 0 10px rgba(0, 240, 255, 0.2);
}

.hero-course-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-course-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #00f0ff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Hero Promos Grid Layout (Default/Mobile First) */
.hero-promos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 25px;
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.hero-promos-grid .hero-new-release,
.hero-promos-grid .hero-whatsapp-card,
.hero-promos-grid .hero-course-promo {
    margin-top: 0;
    max-width: none;
    width: 100%;
}

/* Desktop Grid optimization (min-width: 1025px) */
@media (min-width: 1025px) {
    .hero-promos-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 860px;
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-promos-grid .hero-course-promo {
        grid-column: span 2;
    }
}

/* Hero Quick Navigation Hub */
.hero-quick-hub {
    margin-top: 22px;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 860px;
    text-align: left;
}

.hero-quick-hub .hub-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--secondary-neon);
    text-transform: uppercase;
}

.hero-quick-hub .hub-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-quick-hub .hub-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.hero-quick-hub .hub-btn:hover {
    background: linear-gradient(135deg, rgba(255, 78, 0, 0.25), rgba(236, 0, 140, 0.25));
    border-color: rgba(255, 78, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 78, 0, 0.25);
}

/* Hero Civic Card */
.hero-civic-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.35);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
}

.hero-civic-card:hover {
    background: rgba(0, 240, 255, 0.16);
    border-color: rgba(0, 240, 255, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 0 22px rgba(0, 240, 255, 0.3);
}

.hero-civic-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(0, 240, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00f0ff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.hero-civic-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-civic-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #00f0ff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-civic-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.hero-civic-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Hero Recipe Card */
.hero-recipe-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(255, 78, 0, 0.06);
    border: 1px solid rgba(255, 78, 0, 0.3);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
}

.hero-recipe-card:hover {
    background: rgba(255, 78, 0, 0.15);
    border-color: rgba(255, 78, 0, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 78, 0, 0.25);
}

.hero-recipe-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 78, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4e00;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.hero-recipe-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-recipe-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ff4e00;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-recipe-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.hero-recipe-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Hero Emergency / Pharmacy Card */
.hero-pharmacy-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(30, 215, 96, 0.06);
    border: 1px solid rgba(30, 215, 96, 0.3);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
}

.hero-pharmacy-card:hover {
    background: rgba(30, 215, 96, 0.15);
    border-color: rgba(30, 215, 96, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(30, 215, 96, 0.25);
}

.hero-pharmacy-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(30, 215, 96, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1db954;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.hero-pharmacy-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-pharmacy-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #1db954;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-pharmacy-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.hero-pharmacy-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Hero Tourism Card */
.hero-tourism-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(0, 180, 255, 0.06);
    border: 1px solid rgba(0, 180, 255, 0.3);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
}

.hero-tourism-card:hover {
    background: rgba(0, 180, 255, 0.15);
    border-color: rgba(0, 180, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 180, 255, 0.25);
}

.hero-tourism-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(0, 180, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00b4ff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.hero-tourism-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-tourism-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #00b4ff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-tourism-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.hero-tourism-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* WhatsApp Card Styling */
.hero-whatsapp-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(37, 211, 102, 0.05);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    animation: heroWhatsappGlow 3s ease-in-out infinite;
    text-align: left;
}

.hero-whatsapp-card:hover {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
}

@keyframes heroWhatsappGlow {
    0%, 100% { box-shadow: 0 0 12px rgba(37, 211, 102, 0.1); }
    50%       { box-shadow: 0 0 24px rgba(37, 211, 102, 0.25); }
}

.whatsapp-qr-container {
    width: 95px;
    height: 95px;
    border-radius: 8px;
    background: #ffffff;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-qr-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.whatsapp-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.whatsapp-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #25D366;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

.whatsapp-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.whatsapp-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.hero-course-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.hero-course-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Button Gold Style (Lotto Module) */
.btn-gold {
    background: linear-gradient(135deg, #f9ca24 0%, #f0932b 100%);
    color: #07070c !important;
    border: none;
    font-weight: 700;
    text-shadow: none;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 202, 36, 0.4);
    color: #000 !important;
}

.btn-glow-gold {
    box-shadow: 0 0 15px rgba(249, 202, 36, 0.35);
}

/* Hero — Lotto Card */
.hero-lotto-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(249, 202, 36, 0.06);
    border: 1px solid rgba(249, 202, 36, 0.3);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    animation: heroLottoGlow 3s ease-in-out infinite;
    text-align: left;
}

.hero-lotto-card:hover {
    background: rgba(249, 202, 36, 0.15);
    border-color: rgba(249, 202, 36, 0.6);
    transform: translateY(-2px);
}

@keyframes heroLottoGlow {
    0%, 100% { box-shadow: 0 0 12px rgba(249, 202, 36, 0.15); }
    50%       { box-shadow: 0 0 24px rgba(249, 202, 36, 0.35); }
}

.hero-lotto-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(249, 202, 36, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9ca24;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: inset 0 0 10px rgba(249, 202, 36, 0.2);
}

.hero-lotto-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-lotto-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #f9ca24;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-lotto-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.hero-lotto-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* --- Calabria & Sapori Section Styles --- */
.font-glow-gold {
    color: #f9ca24 !important;
    text-shadow: 0 0 10px rgba(249, 202, 36, 0.5), 0 0 20px rgba(249, 202, 36, 0.2);
}

.regione-calabria-banner {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 24px 30px;
    margin-top: 20px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(0, 180, 255, 0.08), rgba(255, 78, 0, 0.05));
    border: 1px solid rgba(0, 180, 255, 0.35);
    border-radius: 18px;
    backdrop-filter: blur(15px);
    width: 100%;
}

.regione-logo-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(0, 180, 255, 0.15);
    border: 1px solid rgba(0, 180, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #00b4ff;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0, 180, 255, 0.25);
}

.regione-info-text {
    flex: 1;
    text-align: left;
}

.regione-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #00b4ff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.regione-info-text h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 6px;
}

.regione-info-text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 0;
}

.regione-btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.calabria-food-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 30px;
    width: 100%;
}

@media (max-width: 1200px) {
    .calabria-food-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .calabria-food-grid {
        grid-template-columns: 1fr;
    }
    .regione-calabria-banner {
        flex-direction: column;
        text-align: center;
    }
    .regione-info-text {
        text-align: center;
    }
    .regione-btn-group {
        justify-content: center;
        width: 100%;
    }
}

.food-card {
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.food-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 78, 0, 0.06);
    border-color: rgba(255, 78, 0, 0.35);
    box-shadow: 0 12px 30px rgba(255, 78, 0, 0.15);
}

.food-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 8px;
}

.food-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 8px;
    border-radius: 20px;
    text-transform: uppercase;
}

.food-badge.dop {
    background: rgba(255, 78, 0, 0.15);
    color: #ff4e00;
    border: 1px solid rgba(255, 78, 0, 0.3);
}

.food-badge.igp {
    background: rgba(249, 202, 36, 0.15);
    color: #f9ca24;
    border: 1px solid rgba(249, 202, 36, 0.3);
}

.food-location {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.food-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
}

.food-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 0;
}

.lotto-promo-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 30px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(249, 202, 36, 0.08), rgba(112, 0, 255, 0.08));
    border: 1px solid rgba(249, 202, 36, 0.35);
    gap: 20px;
    margin-top: 10px;
    width: 100%;
}

.lotto-banner-content {
    text-align: left;
}

.lotto-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #f9ca24;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: inline-block;
}

.lotto-banner-content h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 4px;
}

.lotto-banner-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* --- Calabrian Recipes Section Styles --- */
.recipes-section {
    margin-top: 10px;
    margin-bottom: 25px;
    padding: 26px 30px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 78, 0, 0.04), rgba(249, 202, 36, 0.04));
    border: 1px solid rgba(255, 78, 0, 0.25);
    width: 100%;
}

.recipes-header {
    text-align: left;
    margin-bottom: 20px;
}

.recipes-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #ff4e00;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.recipes-header h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 4px;
}

.recipes-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
}

@media (max-width: 1200px) {
    .recipes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .recipes-grid {
        grid-template-columns: 1fr;
    }
}

.recipe-card {
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.recipe-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 78, 0, 0.08);
    border-color: rgba(255, 78, 0, 0.4);
    box-shadow: 0 10px 25px rgba(255, 78, 0, 0.18);
}

.recipe-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 8px;
}

.recipe-badge.primo {
    background: rgba(255, 78, 0, 0.15);
    color: #ff4e00;
    border: 1px solid rgba(255, 78, 0, 0.3);
}

.recipe-badge.contorno {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.recipe-badge.secondo {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.recipe-badge.dolce {
    background: rgba(249, 202, 36, 0.15);
    color: #f9ca24;
    border: 1px solid rgba(249, 202, 36, 0.3);
}

.recipe-origin {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.recipe-card h4 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
}

.recipe-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 14px;
}

.recipe-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.btn-recipe-open {
    margin-top: 12px;
    width: 100%;
    justify-content: center;
    font-size: 0.78rem !important;
    padding: 9px 14px !important;
}

/* --- Recipe Modal Backdrop & Glass Container --- */
.recipe-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 4, 10, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.recipe-modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.recipe-modal-content {
    position: relative;
    max-width: 720px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    background: rgba(14, 14, 28, 0.95);
    border: 1px solid rgba(255, 78, 0, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 78, 0, 0.2);
    border-radius: 24px;
    padding: 32px 36px;
    color: #fff;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 600px) {
    .recipe-modal-content {
        padding: 24px 18px;
    }
}

.recipe-modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.8rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.recipe-modal-close:hover {
    background: rgba(255, 78, 0, 0.3);
    border-color: #ff4e00;
    transform: rotate(90deg);
}

.recipe-modal-header {
    margin-bottom: 24px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
}

.recipe-modal-header h2 {
    font-size: 1.7rem;
    color: #fff;
    margin: 10px 0 8px 0;
}

.recipe-modal-meta {
    display: flex;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.recipe-modal-section {
    margin-bottom: 26px;
    text-align: left;
}

.recipe-modal-section h3 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.recipe-ingredients-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0;
}

@media (max-width: 600px) {
    .recipe-ingredients-list {
        grid-template-columns: 1fr;
    }
}

.recipe-ingredients-list li {
    font-size: 0.88rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 8px;
}

.recipe-steps-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.recipe-step-item {
    display: flex;
    gap: 16px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 16px;
    border-radius: 12px;
    text-align: left;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4e00, #ec008c);
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(255, 78, 0, 0.4);
}

.step-info h5 {
    font-size: 0.98rem;
    color: #fff;
    margin-bottom: 4px;
}

.step-info p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 0;
}

.recipe-chef-tip {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 14px;
    background: rgba(249, 202, 36, 0.08);
    border: 1px solid rgba(249, 202, 36, 0.35);
    text-align: left;
}

.tip-icon {
    font-size: 1.8rem;
    color: #f9ca24;
    flex-shrink: 0;
}

.recipe-chef-tip h4 {
    font-size: 0.95rem;
    color: #f9ca24;
    margin-bottom: 2px;
}

.recipe-chef-tip p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* --- Sportello Civico & AIRE Section Styles --- */
.civic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

@media (max-width: 900px) {
    .civic-grid {
        grid-template-columns: 1fr;
    }
}

.civic-card {
    padding: 26px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.civic-card.highlight-gold {
    background: linear-gradient(135deg, rgba(249, 202, 36, 0.05), rgba(255, 78, 0, 0.05));
    border: 1px solid rgba(249, 202, 36, 0.35);
    box-shadow: 0 10px 30px rgba(249, 202, 36, 0.1);
}

.civic-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 12px 30px rgba(0, 240, 255, 0.15);
}

.civic-card.highlight-gold:hover {
    border-color: rgba(249, 202, 36, 0.6);
    box-shadow: 0 12px 30px rgba(249, 202, 36, 0.25);
}

.civic-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.civic-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.civic-badge.blue {
    background: rgba(0, 240, 255, 0.15);
    color: #00f0ff;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.civic-badge.gold {
    background: rgba(249, 202, 36, 0.15);
    color: #f9ca24;
    border: 1px solid rgba(249, 202, 36, 0.3);
}

.civic-badge.green {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.civic-badge.purple {
    background: rgba(155, 89, 182, 0.15);
    color: #9b59b6;
    border: 1px solid rgba(155, 89, 182, 0.3);
}

.civic-sub-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.civic-card h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.civic-card p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.48;
    margin-bottom: 16px;
}

.civic-features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding-top: 10px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.civic-features-list span {
    font-size: 0.82rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.civic-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 12px;
}

.civic-actions .btn {
    font-size: 0.8rem !important;
    padding: 10px 16px !important;
}

.btn-civic-gov {
    background: linear-gradient(135deg, #0072ff, #00c6ff) !important;
}

.btn-civic-fastit {
    background: linear-gradient(135deg, #11998e, #38ef7d) !important;
}

/* --- Utility & Emergency Numbers Section Styles --- */
.utility-section {
    margin-top: 10px;
    margin-bottom: 25px;
    padding: 26px 30px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(0, 240, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.utility-header {
    text-align: left;
    margin-bottom: 20px;
}

.utility-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--secondary-neon);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.utility-header h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 4px;
}

.utility-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.emergency-numbers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 22px;
    width: 100%;
}

@media (max-width: 1100px) {
    .emergency-numbers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .emergency-numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.emergency-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: all 0.25s ease;
}

.emergency-card:hover {
    transform: translateY(-3px);
}

.emergency-card.nue:hover {
    background: rgba(0, 240, 255, 0.12);
    border-color: rgba(0, 240, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.25);
}

.emergency-card.red:hover {
    background: rgba(255, 50, 50, 0.12);
    border-color: rgba(255, 50, 50, 0.5);
    box-shadow: 0 0 15px rgba(255, 50, 50, 0.25);
}

.emergency-card.orange:hover {
    background: rgba(255, 140, 0, 0.12);
    border-color: rgba(255, 140, 0, 0.5);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.25);
}

.emergency-card.pink:hover {
    background: rgba(236, 0, 140, 0.12);
    border-color: rgba(236, 0, 140, 0.5);
    box-shadow: 0 0 15px rgba(236, 0, 140, 0.25);
}

.emergency-card.blue:hover {
    background: rgba(70, 130, 240, 0.12);
    border-color: rgba(70, 130, 240, 0.5);
    box-shadow: 0 0 15px rgba(70, 130, 240, 0.25);
}

.emergency-card.cyan:hover {
    background: rgba(0, 206, 201, 0.12);
    border-color: rgba(0, 206, 201, 0.5);
    box-shadow: 0 0 15px rgba(0, 206, 201, 0.25);
}

.emergency-icon {
    font-size: 1.2rem;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emergency-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.emergency-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.emergency-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.2;
    margin-top: 2px;
}

.pharmacy-finder-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(30, 215, 96, 0.06);
    border: 1px solid rgba(30, 215, 96, 0.3);
    border-radius: 14px;
    gap: 16px;
}

@media (max-width: 768px) {
    .pharmacy-finder-box {
        flex-direction: column;
        text-align: center;
    }
    .pharmacy-info {
        flex-direction: column;
        text-align: center;
    }
}

.pharmacy-info {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
}

.pharmacy-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(30, 215, 96, 0.15);
    border: 1px solid rgba(30, 215, 96, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1db954;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.pharmacy-info h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 2px;
}

.pharmacy-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.pharmacy-actions-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 900px) {
    .pharmacy-finder-box {
        flex-direction: column;
        text-align: center;
    }
    .pharmacy-info {
        flex-direction: column;
        text-align: center;
    }
    .pharmacy-actions-grid {
        justify-content: center;
        width: 100%;
    }
}

.btn-pharmacy-gps {
    background: linear-gradient(135deg, #1db954, #00cec9) !important;
    color: #000 !important;
    border: none;
    font-weight: 700;
    white-space: nowrap;
}

.btn-pharmacy-gps:hover {
    box-shadow: 0 0 20px rgba(30, 215, 96, 0.4);
    transform: translateY(-2px);
}

.btn-pharmacy-reg,
.btn-pharmacy-pb {
    font-size: 0.8rem !important;
    padding: 10px 14px !important;
    white-space: nowrap;
}

.btn-pharmacy:hover {
    box-shadow: 0 0 20px rgba(30, 215, 96, 0.4);
}

/* Live Stats Ticker */
.hero-stats-ticker {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 25px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    width: fit-content;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.hero-stats-ticker.global-stats {
    position: fixed;
    top: 105px;
    right: 60px;
    z-index: 99;
    margin: 0;
    backdrop-filter: blur(15px);
    background: rgba(7, 7, 12, 0.6);
    border: 1px solid rgba(255, 78, 0, 0.15); /* matching theme glow */
    box-shadow: 0 8px 32px rgba(255, 78, 0, 0.08);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-ping-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #39ff14; /* Neon green */
    box-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14;
    animation: statPing 1.6s ease-in-out infinite;
}

@keyframes statPing {
    0%, 100% { opacity: 0.35; transform: scale(0.9); }
    50%       { opacity: 1; transform: scale(1.1); }
}

.stat-icon {
    font-size: 0.95rem;
    color: var(--primary-neon);
    text-shadow: var(--text-glow-shadow);
}

.stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.03em;
}

.stat-desc {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.15);
}

.btn {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 15px 35px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-neon), var(--accent-neon));
    color: #fff;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 78, 0, 0.4);
}

.btn-glow {
    box-shadow: 0 0 15px rgba(255, 78, 0, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
    border-radius: 30px;
    background: transparent;
    border: 1px solid var(--secondary-neon);
    color: var(--secondary-neon);
    text-decoration: none;
}

.btn-sm:hover {
    background: var(--secondary-neon);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.btn-disabled {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.15);
    cursor: not-allowed;
}

/* --- Section 2: Biography grid --- */
.two-column {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.spec-item {
    border-left: 2px solid var(--secondary-neon);
    padding-left: 15px;
}

.spec-val {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.spec-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Glass Info Card right side */
.visual-card {
    position: relative;
    overflow: visible;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 1px solid var(--primary-neon);
    z-index: 1;
    opacity: 0.15;
    animation: ring-pulse 4s infinite linear;
    pointer-events: none;
}

@keyframes ring-pulse {
    0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

.card-inner {
    position: relative;
    z-index: 2;
}

.card-inner h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #fff;
}

.card-quote {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.5;
    position: relative;
    margin-bottom: 30px;
}

.genre-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border-radius: 20px;
    text-transform: uppercase;
}

.pill:hover {
    border-color: var(--secondary-neon);
    background: rgba(0, 240, 255, 0.05);
    color: var(--secondary-neon);
}

/* --- Section 3: Music Station & Deck --- */
.music-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Genre Filter Tabs */
.music-filter-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.filter-tab {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 7px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.filter-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
}

.filter-tab.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 78, 0, 0.3), rgba(255, 140, 0, 0.2));
    border-color: var(--primary-neon);
    box-shadow: 0 0 14px rgba(255, 78, 0, 0.25);
}

.track-list {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 460px;
    overflow-y: auto;
    padding-right: 8px;
}

/* Custom Scrollbar for track list */
.track-list::-webkit-scrollbar {
    width: 6px;
}

.track-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.track-list::-webkit-scrollbar-thumb {
    background: rgba(255, 78, 0, 0.3);
    border-radius: 10px;
}

.track-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 78, 0, 0.65);
}

.track-item {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.track-number {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-right: 20px;
    transition: var(--transition-fast);
}

.track-details {
    flex-grow: 1;
}

.track-title {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 2px;
}

.track-new-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
    background: linear-gradient(135deg, #ff4e00, #ff8c00);
    border-radius: 20px;
    padding: 2px 7px;
    margin-left: 6px;
    vertical-align: middle;
    box-shadow: 0 0 8px rgba(255, 78, 0, 0.6);
    animation: badgePulse 1.8s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 8px rgba(255, 78, 0, 0.6); }
    50%       { box-shadow: 0 0 16px rgba(255, 140, 0, 0.9); }
}

.track-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.track-action {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.track-actions-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.track-spotify-link {
    color: #1db954;
    font-size: 1.3rem;
    opacity: 0.7;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.track-spotify-link:hover {
    opacity: 1;
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(29, 185, 84, 0.6));
}

.track-youtube-link {
    color: #ff0000;
    font-size: 1.3rem;
    opacity: 0.7;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.track-youtube-link:hover {
    opacity: 1;
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.6));
}

.track-apple-link {
    color: #fa243c;
    font-size: 1.3rem;
    opacity: 0.7;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.track-apple-link:hover {
    opacity: 1;
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(250, 36, 60, 0.6));
}

.spotify-badge-container {
    margin-top: 25px;
    display: flex;
    justify-content: flex-start;
}

.btn-spotify-global {
    border-color: #1db954;
    color: #1db954;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-spotify-global:hover {
    background-color: #1db954;
    color: #fff;
    box-shadow: 0 0 20px rgba(29, 185, 84, 0.4);
    border-color: #1db954;
}

.btn-apple-global:hover {
    background-color: #fa243c;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(250, 36, 60, 0.4);
    border-color: #fa243c;
}

.play-icon {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-left: 2px;
}

/* Track item hover and active states */
.track-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.track-item.active {
    background: rgba(255, 78, 0, 0.08);
    border-color: var(--primary-neon);
    box-shadow: 0 0 20px rgba(255, 78, 0, 0.1);
}

.track-item.active .track-number {
    color: var(--primary-neon);
    text-shadow: var(--text-glow-orange);
}

.track-item.active .track-action {
    background: var(--primary-neon);
    box-shadow: var(--text-glow-orange);
}

.track-item.active.playing .track-action {
    background: var(--secondary-neon);
    box-shadow: var(--text-glow-shadow);
}

.track-item.active.playing .play-icon::before {
    content: "\f04c"; /* FontAwesome pause icon code */
}

/* 3D Turntable / Vinyl Player styling */
.player-deck {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    border-radius: 24px;
    max-width: 440px;
    margin: 0 auto;
}

.deck-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.deck-badge {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.deck-leds {
    display: flex;
    gap: 6px;
}

.led {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #222;
    transition: var(--transition-fast);
}

.led.lit {
    box-shadow: 0 0 8px currentColor;
}

.led.red.lit { background-color: var(--primary-neon); color: var(--primary-neon); }
.led.yellow.lit { background-color: #ffd200; color: #ffd200; }
.led.green.lit { background-color: #00ff66; color: #00ff66; }

.vinyl-container {
    position: relative;
    width: 260px;
    height: 260px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#youtube-player-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    background-color: #000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 20;
}

#youtube-player-container.show {
    opacity: 1;
    pointer-events: auto;
}

#youtube-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

#youtube-fallback-btn {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(7, 7, 12, 0.9);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.5);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
    z-index: 25;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

#youtube-fallback-btn:hover {
    transform: translateX(-50%) scale(1.05);
    background-color: #ff0000;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    border-color: #ff0000;
}

.vinyl-record {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, #333 4%, #111 6%, #181818 10%, #050505 12%, #111 30%, #070707 50%, #000 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease-out;
}

/* Vinyl grooves look */
.vinyl-record::after {
    content: '';
    position: absolute;
    top: 5px; left: 5px; right: 5px; bottom: 5px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 
        inset 0 0 0 10px rgba(0, 0, 0, 0.5),
        inset 0 0 0 20px rgba(255, 255, 255, 0.01),
        inset 0 0 0 40px rgba(0, 0, 0, 0.5),
        inset 0 0 0 60px rgba(255, 255, 255, 0.01),
        inset 0 0 0 80px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.vinyl-label {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-neon), var(--purple-deep));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    z-index: 5;
}

.vinyl-label::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--bg-dark);
}

.label-artist {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 2px;
}

.label-track {
    font-size: 0.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
    max-width: 60px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vinyl-arm {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 70px;
    height: 160px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 70 160'%3E%3Cpath d='M60 10 L60 80 L35 120 L25 140' stroke='%23888' stroke-width='4' fill='none'/%3E%3Ccircle cx='60' cy='10' r='10' fill='%23555'/%3E%3Crect x='15' y='135' width='20' height='15' fill='%23ff4e00' rx='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transform-origin: 60px 10px;
    transform: rotate(0deg);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
    pointer-events: none;
}

.audio-playing .vinyl-record {
    animation: rotate-vinyl 5s linear infinite;
}

.audio-playing .vinyl-arm {
    transform: rotate(26deg);
}

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

.player-controls {
    width: 100%;
}

.visualizer-bar-container {
    height: 40px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    margin-bottom: 15px;
    padding: 0 10px;
}

.visualizer-bar {
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.05);
    height: 4px;
    border-radius: 2px;
    transform-origin: bottom;
    will-change: transform;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.control-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.btn-control {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.btn-control:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--secondary-neon);
    transform: scale(1.08);
}

.btn-play-main {
    width: 56px;
    height: 56px;
    background: var(--primary-neon);
    border: none;
    box-shadow: var(--text-glow-orange);
    font-size: 1.25rem;
}

.btn-play-main:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--primary-neon);
    background: #ff6a00;
}

.audio-playing .btn-play-main {
    background: var(--secondary-neon);
    box-shadow: var(--text-glow-shadow);
}

.synth-indicator {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.synth-indicator i {
    color: var(--secondary-neon);
    animation: pulse-icon 1.5s infinite ease;
}

@keyframes pulse-icon {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 0.7; }
}

/* --- Section 4: Tour dates --- */
.tour-intro {
    max-width: 700px;
    margin-bottom: 40px;
}

.tour-table-container {
    width: 100%;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
}

.tour-table {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.tour-row {
    display: grid;
    grid-template-columns: 0.6fr 2fr 0.8fr 0.8fr;
    padding: 25px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
    transition: var(--transition-smooth);
}

.tour-row:last-child {
    border-bottom: none;
}

.tour-row.header-row {
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    padding: 15px 40px;
}

.tour-row:not(.header-row):hover {
    background: rgba(255, 255, 255, 0.02);
}

.tour-date {
    display: flex;
    flex-direction: column;
    font-family: 'Space Grotesk', sans-serif;
}

.tour-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary-neon);
}

.tour-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.tour-venue {
    display: flex;
    flex-direction: column;
}

.tour-venue strong {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 3px;
}

.venue-city {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    text-transform: uppercase;
}

.badge-soon {
    background: rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.2);
    color: var(--secondary-neon);
}

.badge-soldout {
    background: rgba(236, 0, 140, 0.1);
    border-color: rgba(236, 0, 140, 0.2);
    color: var(--accent-neon);
}

/* --- Section 4: Ultime Uscite (Latest Releases) --- */
.releases-header {
    text-align: center;
    margin-bottom: 40px;
}

.releases-header h2 {
    margin-bottom: 10px;
}

.releases-header p {
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.release-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.release-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 78, 0, 0.3);
    box-shadow: 0 12px 40px rgba(255, 78, 0, 0.1);
}

/* Featured release card (Nuova Uscita) */
.release-card-featured {
    position: relative;
    border-color: rgba(255, 78, 0, 0.4);
    box-shadow: 0 0 24px rgba(255, 78, 0, 0.15);
}

.release-card-featured:hover {
    box-shadow: 0 16px 50px rgba(255, 78, 0, 0.25);
}

.release-new-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    background: linear-gradient(135deg, #ff4e00, #ff8c00);
    border-radius: 20px;
    padding: 4px 10px;
    box-shadow: 0 0 10px rgba(255, 78, 0, 0.7);
    animation: badgePulse 1.8s ease-in-out infinite;
}

.release-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    cursor: pointer;
}

.release-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.release-card:hover .release-cover img {
    transform: scale(1.08);
}

.release-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
    width: 100%;
    height: 100%;
}

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

.release-play-overlay i {
    font-size: 2.2rem;
    color: #fff;
    filter: drop-shadow(0 0 12px rgba(255, 78, 0, 0.7));
}

.release-info {
    padding: 16px 18px;
}

.release-title {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.release-date {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.release-links {
    display: flex;
    gap: 14px;
}

.release-links a {
    font-size: 1.2rem;
    opacity: 0.6;
    transition: var(--transition-fast);
    text-decoration: none;
}

.release-links a:hover {
    opacity: 1;
    transform: scale(1.2);
}

.release-links a[title="Spotify"] {
    color: #1db954;
}

.release-links a[title="Apple Music"] {
    color: #fa243c;
}

.release-links a[title="YouTube"] {
    color: #ff0000;
}

/* --- Section 5: Contacts & Socials --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.contact-info {
    text-align: left;
}

.contact-description {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: center;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 25px;
    border-radius: 14px;
    width: 100%;
    max-width: 440px;
    transition: var(--transition-smooth);
}

.contact-detail-item:hover {
    border-color: rgba(0, 240, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.3rem;
    color: var(--secondary-neon);
    background: rgba(0, 240, 255, 0.05);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 4px 0;
    color: var(--text-muted);
}

.contact-detail-item p {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--secondary-neon);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    color: #fff;
    background: var(--primary-neon);
    border-color: var(--primary-neon);
    box-shadow: var(--text-glow-orange);
    transform: translateY(-4px);
}

/* Contact/Booking Form Elements */
.contact-form-container {
    padding: 30px;
    width: 100%;
}

.contact-form-container h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #fff;
}

.form-group {
    margin-bottom: 18px;
    text-align: left;
}

.form-group label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.form-group input, .form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px 14px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--secondary-neon);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* --- Slide Dot Navigation --- */
.slide-navigation {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 100;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--text-muted);
    opacity: 0.4;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 20px;
    height: 20px;
    border: 1px solid var(--secondary-neon);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.dot:hover {
    opacity: 0.8;
    background-color: #fff;
}

.dot.active {
    opacity: 1;
    background-color: var(--secondary-neon);
    box-shadow: var(--text-glow-shadow);
}

.dot.active::after {
    transform: translate(-50%, -50%) scale(1);
}

/* --- Scroll Prompt (Bottom) --- */
.scroll-prompt {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 100;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.scroll-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 1px solid var(--text-muted);
    border-radius: 10px;
    position: relative;
    opacity: 0.6;
}

.scroll-wheel {
    width: 4px;
    height: 6px;
    background-color: var(--secondary-neon);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-anim 1.5s infinite ease-in-out;
}

@keyframes scroll-anim {
    0% { transform: translate(-50%, 0); opacity: 1; }
    50% { transform: translate(-50%, 6px); opacity: 0.3; }
    100% { transform: translate(-50%, 0); opacity: 1; }
}

/* --- Responsive Adaptations --- */
@media (max-width: 1024px) {
    #main-header {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        background: rgba(7, 7, 12, 0.92);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .logo-text {
        font-size: 0.95rem;
    }
    
    .desktop-nav {
        display: flex !important;
        gap: 8px;
        overflow-x: auto;
        white-space: nowrap;
        max-width: 100%;
        padding: 4px 6px 8px 6px;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        scroll-snap-type: x mandatory;
    }
    
    .desktop-nav::-webkit-scrollbar {
        display: none;
    }
    
    .desktop-nav .nav-link {
        font-size: 0.8rem;
        padding: 8px 16px;
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 24px;
        transition: var(--transition-fast);
        scroll-snap-align: center;
    }
    
    .desktop-nav .nav-link.active {
        background: linear-gradient(135deg, #ff4e00 0%, #ec008c 100%);
        border-color: transparent;
        color: #fff;
        font-weight: 700;
        box-shadow: 0 4px 15px rgba(255, 78, 0, 0.4);
    }
    
    .section-slide {
        padding: 135px 20px 70px 20px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        align-items: flex-start;
    }
    
    .slide-content {
        justify-content: flex-start;
        padding-bottom: 50px;
    }
    
    .two-column, .music-layout, .contact-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-portrait {
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        opacity: 0.5;
    }
    
    .hero-portrait img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        opacity: 0.15;
        -webkit-mask-image: none;
        mask-image: none;
    }
    
    #hero .slide-content {
        margin-left: 0;
        max-width: 100%;
        align-items: center;
        text-align: center;
        padding-top: 30px;
    }
    
    .releases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    h2 {
        font-size: 2.1rem;
    }
    
    #hero h1.main-title {
        font-size: 2.8rem;
    }
    
    .visual-card, .player-deck {
        display: block;
        margin: 20px auto 0 auto;
        width: 100%;
        max-width: 440px;
    }
    
    .slide-navigation {
        display: none;
    }
    
    .hero-stats-ticker.global-stats {
        position: fixed;
        top: 132px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin: 0 auto;
        z-index: 99;
    }
}

@media (max-width: 768px) {
    .section-slide {
        padding: 130px 16px 70px 16px;
    }
    
    .hero-portrait img {
        opacity: 0.12;
    }
    
    .releases-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    h2 {
        font-size: 1.8rem !important;
        margin-bottom: 12px;
    }
    
    p {
        font-size: 0.92rem !important;
        margin-bottom: 18px;
    }
    
    #hero h1.main-title {
        font-size: 2.1rem;
        margin-bottom: 10px;
        line-height: 1.15;
    }
    
    #hero .subtitle {
        font-size: 1rem;
        margin-bottom: 18px;
    }
    
    .btn {
        font-size: 0.88rem;
        padding: 13px 22px;
        border-radius: 28px;
    }
    
    .cta-group {
        gap: 10px;
        flex-direction: column;
        width: 100%;
    }
    
    .cta-group .btn {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }
    
    .hero-social-subscribe {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-social-subscribe .subscribe-buttons {
        justify-content: center;
    }
    
    .hero-social-subscribe .sub-btn {
        flex: 1;
        min-width: 105px;
        justify-content: center;
        padding: 9px 12px;
        font-size: 0.75rem;
    }
    
    .spec-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .spec-val {
        font-size: 1.3rem;
    }
    
    .tour-row {
        grid-template-columns: 1.2fr 1fr;
        gap: 8px;
        padding: 12px;
    }
    
    .tour-row.header-row {
        display: none;
    }
    
    .tour-venue {
        grid-column: span 2;
    }
    
    .tour-status {
        justify-self: start;
    }
    
    .folk-dancer-bg {
        width: 220px;
        opacity: 0.10;
    }
}

@media (max-width: 480px) {
    .section-slide {
        padding: 125px 12px 65px 12px;
    }
    
    h2 {
        font-size: 1.55rem !important;
    }
    
    p {
        font-size: 0.85rem !important;
    }
    
    #hero h1.main-title {
        font-size: 1.75rem;
    }
    
    #hero .subtitle {
        font-size: 0.9rem;
    }
    
    .hero-new-release, .hero-lotto-card, .hero-whatsapp-card, .hero-course-promo {
        padding: 12px 14px;
        margin-top: 8px;
        max-width: 100%;
        border-radius: 14px;
    }
    
    .hero-new-release-info, .hero-lotto-info, .whatsapp-info, .hero-course-info {
        gap: 2px;
    }
    
    .hero-new-title, .hero-lotto-title, .whatsapp-title, .hero-course-title {
        font-size: 0.88rem;
    }
    
    .hero-new-sub, .hero-lotto-sub, .whatsapp-sub, .hero-course-sub {
        font-size: 0.7rem;
    }
    
    .hero-new-release-thumb {
        width: 58px;
        min-width: 58px;
        height: 38px;
    }
    
    .hero-lotto-icon, .hero-course-icon {
        width: 40px;
        height: 40px;
        font-size: 1.15rem;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .spec-item {
        padding: 10px;
    }
    
    .folk-dancer-bg {
        width: 150px;
        bottom: -2%;
        right: -3%;
        opacity: 0.08;
    }
    
    .hero-stats-ticker.global-stats {
        top: 140px;
        padding: 6px 10px;
        gap: 10px;
    }
    .hero-stats-ticker.global-stats .stat-num {
        font-size: 0.9rem;
    }
    .hero-stats-ticker.global-stats .stat-desc {
        font-size: 0.52rem;
    }
    .hero-stats-ticker.global-stats .stat-icon {
        font-size: 0.75rem;
    }
    .hero-stats-ticker.global-stats .stat-divider {
        height: 10px;
    }
}

/* Welcome Overlay Splash styling */
#welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 4, 8, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#welcome-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.welcome-box {
    text-align: center;
    padding: 50px 40px;
    max-width: 480px;
    width: 90%;
    border: 1px solid rgba(255, 78, 0, 0.25);
    box-shadow: 0 0 50px rgba(255, 78, 0, 0.12), inset 0 0 20px rgba(255, 78, 0, 0.05);
    border-radius: 16px;
}

.welcome-box h2 {
    font-size: 2.2rem;
    margin: 15px 0 8px 0;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ff4e00, #ec008c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 78, 0, 0.3);
}

.welcome-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

#btn-enter-site {
    font-size: 1.1rem;
    padding: 14px 35px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(255, 78, 0, 0.4);
    border-radius: 50px;
    letter-spacing: 1px;
}

/* AdSense Container Styling */
.promo-sponsor-box {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto 0 auto;
    padding: 12px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px dashed rgba(255, 255, 255, 0.1); /* dashed border for placeholder effect */
    border-radius: 12px;
    backdrop-filter: blur(5px);
    overflow: hidden;
    display: flex; /* Visible for all visitors */
    justify-content: center;
    align-items: center;
    grid-column: span 2; /* takes full grid width on desktop */
    min-height: 90px; /* guarantees height on local environment */
    position: relative;
}

@media (max-width: 1024px) {
    .promo-sponsor-box {
        grid-column: span 1;
        margin-top: 30px;
    }
}

/* Responsive Overrides for Promos Grid & WhatsApp Card */
@media (max-width: 1024px) {
    .hero-whatsapp-card {
        padding: 10px 12px;
        margin-top: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .whatsapp-info {
        gap: 0;
        text-align: left;
    }
    
    .whatsapp-title {
        font-size: 0.85rem;
    }
    
    .whatsapp-sub {
        font-size: 0.68rem;
    }
    
    .whatsapp-qr-container {
        width: 80px;
        height: 80px;
        padding: 5px;
    }
}

/* --- Hero Artists & Tour Card --- */
.hero-artists-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(249, 202, 36, 0.06);
    border: 1px solid rgba(249, 202, 36, 0.35);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
}

.hero-artists-card:hover {
    background: rgba(249, 202, 36, 0.16);
    border-color: rgba(249, 202, 36, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 0 22px rgba(249, 202, 36, 0.3);
}

.hero-artists-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(249, 202, 36, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9ca24;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.hero-artists-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-artists-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #f9ca24;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-artists-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.hero-artists-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* --- Artisti Calabresi & Live Tour 2026 Section Styles --- */
.artist-tour-filter-bar {
    display: flex;
    gap: 20px;
    padding: 16px 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 250px;
}

.filter-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    white-space: nowrap;
}

.tour-select {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    background: #0d0d17;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    outline: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tour-select:focus, .tour-select:hover {
    border-color: #f9ca24;
    box-shadow: 0 0 12px rgba(249, 202, 36, 0.25);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.artist-card {
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
    cursor: pointer;
}

.artist-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 202, 36, 0.5);
    box-shadow: 0 10px 25px rgba(249, 202, 36, 0.15);
}

.artist-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
}

.artist-card-badge.gold { background: rgba(249, 202, 36, 0.15); color: #f9ca24; border: 1px solid rgba(249, 202, 36, 0.3); }
.artist-card-badge.cyan { background: rgba(0, 240, 255, 0.15); color: #00f0ff; border: 1px solid rgba(0, 240, 255, 0.3); }
.artist-card-badge.orange { background: rgba(255, 78, 0, 0.15); color: #ff4e00; border: 1px solid rgba(255, 78, 0, 0.3); }
.artist-card-badge.purple { background: rgba(155, 89, 182, 0.15); color: #9b59b6; border: 1px solid rgba(155, 89, 182, 0.3); }
.artist-card-badge.neon { background: rgba(236, 0, 140, 0.15); color: #ec008c; border: 1px solid rgba(236, 0, 140, 0.3); }

.artist-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249, 202, 36, 0.2), rgba(255, 78, 0, 0.2));
    border: 2px solid rgba(249, 202, 36, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 0 18px rgba(249, 202, 36, 0.35);
    transition: transform 0.3s ease;
}

.artist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.artist-card:hover .artist-avatar img {
    transform: scale(1.1);
}

.tour-artist-avatar-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(249, 202, 36, 0.6);
    box-shadow: 0 0 6px rgba(249, 202, 36, 0.3);
}

.artist-fallback-icon {
    font-size: 1.5rem;
    color: #f9ca24;
}

.artist-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2px;
}

.artist-genre {
    font-size: 0.72rem;
    font-weight: 600;
    color: #f9ca24;
    margin-bottom: 10px;
    display: block;
}

.artist-bio {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 14px;
    flex-grow: 1;
}

.artist-hits {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
    padding-top: 8px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.artist-hits span {
    font-size: 0.75rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-sm {
    font-size: 0.75rem !important;
    padding: 8px 12px !important;
    width: 100%;
    justify-content: center;
}

/* Tour Dates Schedule List */
.tour-dates-container {
    padding: 26px;
    border-radius: 20px;
    background: rgba(13, 13, 23, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tour-dates-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.tour-dates-header h3 {
    font-size: 1.2rem;
    color: #fff;
}

.tour-count-badge {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 12px;
}

.tour-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tour-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.25s ease;
    gap: 16px;
}

.tour-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(249, 202, 36, 0.4);
    transform: translateX(4px);
}

.tour-date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, rgba(249, 202, 36, 0.15), rgba(255, 78, 0, 0.15));
    border: 1px solid rgba(249, 202, 36, 0.3);
    border-radius: 12px;
    flex-shrink: 0;
}

.tour-day {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #f9ca24;
    line-height: 1;
}

.tour-month {
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
}

.tour-info {
    flex-grow: 1;
    text-align: left;
}

.tour-artist-tag {
    font-size: 0.78rem;
    color: #f9ca24;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.tour-status-badge {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    text-transform: uppercase;
}

.tour-status-badge.gold { background: rgba(249, 202, 36, 0.2); color: #f9ca24; }
.tour-status-badge.purple { background: rgba(155, 89, 182, 0.2); color: #9b59b6; }

.tour-title {
    font-size: 0.98rem;
    color: #fff;
    margin-bottom: 4px;
}

.tour-details {
    display: flex;
    gap: 16px;
    font-size: 0.76rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.tour-action .btn {
    white-space: nowrap;
}

@media (max-width: 650px) {
    .tour-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tour-action {
        width: 100%;
    }
    
    .tour-action .btn {
        width: 100%;
        justify-content: center;
    }
}

.single-artist-grid {
    grid-template-columns: 1fr !important;
    max-width: 720px;
    margin: 0 auto 28px auto;
}

/* ==========================================================================
   Calabria Straordinaria — Official Events Portal Styles
   ========================================================================== */

.cs-events-filter-bar {
    display: flex;
    gap: 16px;
    padding: 16px 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-search-group {
    flex: 1 1 280px;
}

.cs-search-input {
    width: 100%;
    background: rgba(10, 15, 25, 0.8) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.88rem;
    transition: all 0.25s ease;
}

.cs-search-input:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 12px rgba(249, 202, 36, 0.3) !important;
    outline: none;
}

.cs-sync-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px;
    margin-bottom: 22px;
    font-size: 0.82rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 10px;
}

.cs-sync-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cs-count-badge {
    background: rgba(249, 202, 36, 0.15);
    color: #f9ca24;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.76rem;
}

.cs-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 22px;
    margin-bottom: 30px;
}

.cs-event-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0 !important;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(18, 24, 38, 0.7);
}

.cs-event-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 202, 36, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(249, 202, 36, 0.2);
}

.cs-event-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0d121f;
}

.cs-event-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cs-event-card:hover .cs-event-img-box img {
    transform: scale(1.06);
}

.cs-event-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}

.cs-badge {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.category-badge {
    background: rgba(10, 15, 25, 0.85);
    color: #00f0ff;
    border: 1px solid rgba(0, 240, 255, 0.4);
}

.date-badge {
    background: rgba(249, 202, 36, 0.9);
    color: #0b0f19;
    margin-left: auto;
}

.cs-event-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
    text-align: left;
}

.cs-event-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cs-event-subtitle {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cs-event-location {
    font-size: 0.78rem;
    color: #f9ca24;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.cs-event-footer {
    padding: 12px 16px 16px 16px;
    display: flex;
    gap: 10px;
}

.cs-event-btn {
    flex: 1;
    font-size: 0.72rem;
    padding: 6px 10px;
    justify-content: center;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cs-events-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-search-group {
        width: 100%;
    }
    
    .cs-events-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Home Page — Live Concert Today Widget Styles
   ========================================================================== */

.today-concert-widget {
    width: 100%;
    margin-bottom: 24px;
    padding: 18px 22px;
    border-radius: 16px;
    border: 2px solid rgba(249, 202, 36, 0.5);
    background: linear-gradient(135deg, rgba(14, 18, 30, 0.94) 0%, rgba(8, 12, 20, 0.96) 100%);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(249, 202, 36, 0.12);
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

.today-concert-widget:hover {
    border-color: rgba(249, 202, 36, 0.7);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(249, 202, 36, 0.25);
}

.today-widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.today-live-badge-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.today-badge-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.today-live-tag {
    font-size: 0.65rem;
    font-weight: 800;
    background: rgba(235, 77, 75, 0.2);
    color: #eb4d4b;
    border: 1px solid rgba(235, 77, 75, 0.5);
    padding: 3px 8px;
    border-radius: 20px;
    animation: pulse 1.8s infinite;
}

.today-widget-body {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.today-artist-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    box-shadow: 0 0 12px rgba(249, 202, 36, 0.3);
    flex-shrink: 0;
}

.today-artist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.today-concert-details {
    flex: 1 1 240px;
    text-align: left;
}

.today-artist-name {
    font-size: 1.08rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.today-event-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 400;
}

.today-location {
    font-size: 0.84rem;
    color: #f9ca24;
    margin: 0;
}

.today-widget-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-left: auto;
}

@media (max-width: 650px) {
    .today-widget-body {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .today-widget-actions {
        width: 100%;
        margin-left: 0;
    }
    
    .today-widget-actions .btn {
        flex: 1;
        justify-content: center;
    }
}

/* Multi-Concert List Styling for Today Widget */
.today-widget-multi-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.today-widget-item-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: background 0.3s ease;
}

.today-widget-item-row:hover {
    background: rgba(249, 202, 36, 0.08);
    border-color: rgba(249, 202, 36, 0.25);
}

/* --- Top 10 Eventi del Giorno Home Widget --- */
.top10-today-widget {
    margin-top: 26px;
    margin-bottom: 26px;
    padding: 26px;
    border-radius: 20px;
    background: rgba(10, 10, 18, 0.92);
    border: 2px solid rgba(249, 202, 36, 0.5);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(249, 202, 36, 0.25);
    width: 100%;
    backdrop-filter: blur(16px);
}

.top10-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 6px;
}

.top10-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gold-star {
    font-size: 1.5rem;
    color: #ffe066;
    text-shadow: 0 0 12px rgba(254, 211, 48, 0.8);
}

.top10-widget-title {
    font-size: 1.35rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.04em;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.top10-live-tag {
    font-size: 0.78rem;
    font-weight: 800;
    color: #ffe066;
    background: rgba(249, 202, 36, 0.2);
    border: 1.5px solid rgba(249, 202, 36, 0.5);
    padding: 5px 14px;
    border-radius: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 10px rgba(249, 202, 36, 0.2);
}

.top10-widget-subtitle {
    font-size: 0.92rem;
    color: #d0d4dc;
    font-weight: 500;
    margin-bottom: 22px;
    text-align: left;
}

.top10-events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 850px) {
    .top10-events-grid {
        grid-template-columns: 1fr;
    }
}

.top10-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(22, 22, 38, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
    text-align: left;
}

.top10-card:hover {
    transform: translateY(-4px);
    background: rgba(30, 30, 52, 0.98);
    border-color: rgba(249, 202, 36, 0.7);
    box-shadow: 0 10px 30px rgba(249, 202, 36, 0.3);
}

.top10-card-top-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.top10-rank-badge {
    font-size: 1.1rem;
    font-weight: 900;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    flex-shrink: 0;
}

.top10-rank-badge.rank-gold {
    background: linear-gradient(135deg, #ffe066, #ff4e00);
    color: #0d0d17;
    box-shadow: 0 0 16px rgba(255, 224, 102, 0.8);
}

.top10-rank-badge.rank-silver {
    background: linear-gradient(135deg, #ffffff, #a0a0a0);
    color: #0d0d17;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.top10-rank-badge.rank-bronze {
    background: linear-gradient(135deg, #ff9f43, #834c11);
    color: #ffffff;
    box-shadow: 0 0 12px rgba(255, 159, 67, 0.5);
}

.top10-img-box {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.top10-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top10-card-badges-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    margin-left: auto;
    text-align: right;
}

.top10-cat-badge {
    font-size: 0.72rem;
    font-weight: 800;
    color: #00f0ff;
    background: rgba(0, 240, 255, 0.2);
    border: 1px solid rgba(0, 240, 255, 0.4);
    padding: 3px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.top10-live-pulse {
    font-size: 0.72rem;
    font-weight: 800;
    color: #ff5252;
    background: rgba(255, 82, 82, 0.25);
    border: 1px solid rgba(255, 82, 82, 0.5);
    padding: 3px 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.top10-date-tag {
    font-size: 0.76rem;
    color: #ffffff;
    font-weight: 600;
    white-space: nowrap;
}

.top10-card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.top10-card-title {
    font-size: 1.08rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.35;
    white-space: normal;
    word-break: break-word;
}

.top10-card-location {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffe066;
    margin: 2px 0 0 0;
    white-space: normal;
    word-break: break-word;
}

.top10-card-sub {
    font-size: 0.82rem;
    color: #d0d4dc;
    margin: 4px 0 0 0;
    line-height: 1.4;
    white-space: normal;
    word-break: break-word;
}

.top10-card-footer {
    margin-top: 6px;
    width: 100%;
}

.btn-block-action {
    width: 100% !important;
    justify-content: center !important;
    font-weight: 700 !important;
    padding: 9px 14px !important;
    font-size: 0.82rem !important;
}

/* --- Mappa Eventi Interattiva (Leaflet) --- */
.top10-map-section {
    margin-top: 24px;
    width: 100%;
}

.top10-map-section.top10-map-top {
    margin-top: 0;
    margin-bottom: 22px;
    padding-top: 0;
}

.top10-map-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.top10-map-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.top10-map-container {
    width: 100%;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(249, 202, 36, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(249, 202, 36, 0.15);
}

@media (max-width: 650px) {
    .top10-map-container {
        height: 280px;
    }
}

/* Custom Leaflet popup styling */
.leaflet-popup-content-wrapper {
    background: rgba(16, 16, 28, 0.96) !important;
    color: #ffffff !important;
    border-radius: 14px !important;
    border: 1px solid rgba(249, 202, 36, 0.4) !important;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(10px);
}

.leaflet-popup-tip {
    background: rgba(16, 16, 28, 0.96) !important;
}

.leaflet-popup-content {
    margin: 10px 14px !important;
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
}

.map-popup-title {
    font-size: 1rem;
    font-weight: 800;
    color: #ffe066;
    margin: 0 0 4px 0;
}

.map-popup-location {
    font-size: 0.82rem;
    color: #d0d4dc;
    margin: 0 0 6px 0;
}

.map-popup-category {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    color: #00f0ff;
    background: rgba(0, 240, 255, 0.15);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 2px 8px;
    border-radius: 8px;
    text-transform: uppercase;
    margin-right: 6px;
}

.map-popup-live {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    color: #ff5252;
    background: rgba(255, 82, 82, 0.2);
    border: 1px solid rgba(255, 82, 82, 0.4);
    padding: 2px 8px;
    border-radius: 8px;
}

.map-popup-btn {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #0d0d17;
    background: linear-gradient(135deg, #ffe066, #f9ca24);
    padding: 5px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.map-popup-btn:hover {
    background: linear-gradient(135deg, #f9ca24, #ff4e00);
    color: #ffffff;
}

/* --- Contact Form Feedback --- */
.form-feedback {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.form-feedback-success {
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.4);
}

.form-feedback-error {
    color: #ff5252;
    background: rgba(255, 82, 82, 0.12);
    border: 1px solid rgba(255, 82, 82, 0.4);
}





