/* ===================================================
   NOIZZLY – Main Stylesheet
   Colors: bg #131313 | accent #57ff8d | text #fff
   =================================================== */

:root {
    --nz-bg:        #131313;
    --nz-green:     #57ff8d;
    --nz-green-40:  rgba(87,255,141,0.4);
    --nz-green-15:  rgba(87,255,141,0.15);
    --nz-white:     #ffffff;
    --nz-white-60:  rgba(255,255,255,0.6);
    --nz-white-20:  rgba(255,255,255,0.2);
    --nz-card-bg:   rgba(19,19,19,0.85);
    --nz-radius:    10px;
    --nz-radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background: var(--nz-bg);
    color: var(--nz-white);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; }

.nz-accent   { color: var(--nz-green); }
.nz-muted    { color: var(--nz-white-60); }
.nz-text-300 { font-weight: 300; }
.nz-text-600 { font-weight: 600; }
.nz-text-700 { font-weight: 700; }
.nz-uppercase { text-transform: uppercase; }

/* ===== BUTTONS ===== */
.nz-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(127deg, var(--nz-green) 0%, var(--nz-green-40) 100%);
    border: none;
    border-radius: var(--nz-radius);
    color: var(--nz-white);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: opacity .2s, transform .15s;
    backdrop-filter: blur(25px);
    white-space: nowrap;
}
.nz-btn-primary:hover { opacity: .85; color: var(--nz-white); transform: translateY(-1px); }

.nz-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(127deg, rgba(255,255,255,.15) 0%, rgba(255,255,255,.01) 100%);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--nz-radius);
    color: var(--nz-white);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: opacity .2s, border-color .2s;
    backdrop-filter: blur(25px);
    white-space: nowrap;
}
.nz-btn-secondary:hover { opacity: .8; color: var(--nz-white); border-color: var(--nz-green); }

/* ===== NAVIGATION ===== */
.nz-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    z-index: 1000;
    background: rgba(19,19,19,.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background .3s;
}
.nz-nav.scrolled { background: rgba(19,19,19,.97); }

.nz-logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--nz-white);
    text-decoration: none;
}
.nz-logo { text-decoration: none; }
.nz-logo:hover .nz-logo-text { color: var(--nz-green); }

.nz-logo-img {
    height: 44px;
    width: auto;
    display: block;
    transition: opacity .2s;
}
.nz-logo:hover .nz-logo-img { opacity: .85; }

.nz-menu {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
}
.nz-menu li a {
    color: var(--nz-white-60);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color .2s;
}
.nz-menu li a:hover,
.nz-menu li a.active { color: var(--nz-white); }

.nz-hamburger {
    background: none;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 6px;
    color: var(--nz-white);
    font-size: 22px;
    padding: 4px 10px;
    cursor: pointer;
}

.nz-offcanvas {
    background: rgba(13,13,13,.97);
    border-left: 1px solid rgba(255,255,255,.08);
}
.nz-mobile-menu li a {
    display: block;
    padding: 12px 0;
    color: var(--nz-white-60);
    font-size: 17px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    text-decoration: none;
    transition: color .2s;
}
.nz-mobile-menu li a:hover { color: var(--nz-green); }

/* ===== COMMON PAGE WRAPPER ===== */
.nz-page { padding-top: 72px; }

/* ===== GLOW / BACKGROUND DECORATIONS ===== */
.nz-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.nz-glow-green {
    background: radial-gradient(ellipse, rgba(87,255,141,.25) 0%, transparent 70%);
}

/* ===========================
   HOME PAGE
   =========================== */

/* ----- HERO ----- */
.nz-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 200px;
    overflow: hidden;
}

/* Hero glow — provided artwork, placed along the bottom edge, full width */
.nz-hero-bg-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    background-image: url('/assets/img/hero-glow.jpg');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    z-index: 0;
}

.nz-watermark {
    position: absolute;
    font-size: clamp(120px, 20vw, 400px);
    font-weight: 700;
    /* Solid at the top, fading out toward the bottom — emerges from below */
    background: linear-gradient(180deg,
        rgba(255,255,255,.09) 0%,
        rgba(255,255,255,.055) 45%,
        transparent            100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    user-select: none;
    pointer-events: none;
    letter-spacing: -.02em;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    line-height: 1;
    z-index: 0;
}

.nz-hero-title {
    font-size: clamp(36px, 6vw, 80px);
    font-weight: 300;
    line-height: 1.2;
    max-width: 1100px;
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
}
.nz-hero-title .bold  { font-weight: 600; }
.nz-hero-title .green { color: var(--nz-green); font-weight: 600; }

.nz-hero-sub {
    font-size: clamp(15px, 1.5vw, 19px);
    font-weight: 300;
    color: var(--nz-white-60);
    line-height: 1.7;
    max-width: 820px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.nz-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* ----- SECTION: POSITION ----- */
.nz-section-position {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-top: -120px;   /* pull up toward the hero glow */
}

.nz-position-title {
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
}

.nz-position-body {
    font-size: 15px;
    line-height: 1.75;
    color: var(--nz-white-60);
}
.nz-position-body .highlight { color: var(--nz-white); font-weight: 700; }

/* ----- STATS SECTION ----- */
.nz-stats-section {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}

.nz-section-title {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
}

.nz-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

/* ── Stat circles — exact match to design screenshot ── */

/*
   Technique: outer wrapper carries conic-gradient "border" (2px padding).
   Inner div has the dark background.
   box-shadow creates the green glow spreading below the circle.
*/
.nz-stat-wrap {
    position: relative;
    width: 196px;
    height: 196px;
    margin: 0 auto 0;
    border-radius: 50%;
    padding: 1.5px;
}

/* ── Variant A: glow at the BOTTOM (odd circles 1, 3) ── */
.nz-stat-wrap.is-down {
    background:
        conic-gradient(
            from 0deg at 50% 50%,
            transparent            0deg,
            transparent            72deg,
            rgba(87,255,141,0.35) 112deg,
            rgba(87,255,141,1)    180deg,
            rgba(87,255,141,0.35) 248deg,
            transparent           288deg,
            transparent           360deg
        ),
        linear-gradient(rgba(255,255,255,0.09), rgba(255,255,255,0.09));
    box-shadow:
        0 24px 50px -6px  rgba(87,255,141,0.60),
        0 12px 26px -8px  rgba(87,255,141,0.40);
}

/* ── Variant B: glow at the TOP (even circles 2, 4) ── */
.nz-stat-wrap.is-up {
    background:
        conic-gradient(
            from 0deg at 50% 50%,
            rgba(87,255,141,1)    0deg,
            rgba(87,255,141,0.35) 68deg,
            transparent           108deg,
            transparent           252deg,
            rgba(87,255,141,0.35) 292deg,
            rgba(87,255,141,1)    360deg
        ),
        linear-gradient(rgba(255,255,255,0.09), rgba(255,255,255,0.09));
    box-shadow:
        0 -24px 50px -6px  rgba(87,255,141,0.60),
        0 -12px 26px -8px  rgba(87,255,141,0.40);
}

.nz-stat-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /* Very dark, nearly flat centre */
    background: radial-gradient(circle at 50% 42%, #141414 0%, #0a0a0a 78%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nz-stat-value {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: var(--nz-white);
    line-height: 1;
    letter-spacing: -.01em;
}
.nz-stat-label {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: .15em;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    margin-top: 6px;
}
.nz-stat-desc {
    font-size: 14px;
    color: rgba(255,255,255,.65);
    margin-top: 18px;
    line-height: 1.5;
    text-align: center;
}

/* ----- TESTIMONIALS ----- */
.nz-testimonials {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.nz-testimonials::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 460px;
    background: radial-gradient(ellipse 62% 50% at 50% 50%, rgba(87,255,141,.16) 0%, transparent 62%);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

.nz-testimonials .container { position: relative; z-index: 1; }

.nz-review-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--nz-radius-lg);
    padding: 32px 28px;
    height: 100%;
    position: relative;
    z-index: 1;
    transition: border-color .3s, box-shadow .3s;
}
.nz-review-card:hover {
    border-color: var(--nz-green);
    box-shadow: 0 0 30px rgba(87,255,141,.1);
}

.nz-review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--nz-white);
    margin-bottom: 20px;
}

.nz-review-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,.18);
    margin-bottom: 18px;
}

.nz-review-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

.nz-review-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--nz-white-20);
    flex-shrink: 0;
    object-fit: cover;
}
.nz-review-name  { font-weight: 700; font-size: 16px; }
.nz-review-role  { font-size: 14px; color: var(--nz-white-60); }

.nz-review-score {
    border: .5px solid rgba(255,255,255,.6);
    border-radius: 4px;
    padding: 4px 10px;
    color: var(--nz-green);
    font-size: 14px;
    white-space: nowrap;
}

/* ===========================
   SEARCH / ANALYTICS PAGE
   =========================== */

.nz-search-hero {
    padding: 120px 24px 60px;
    text-align: center;
    position: relative;
}

.nz-search-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.15;
    max-width: 780px;
    margin: 0 auto 8px;
}
.nz-search-title .bold   { font-weight: 700; }
.nz-search-title .green  { color: var(--nz-green); font-weight: 700; }
.nz-search-title .italic { font-style: italic; }

.nz-title-bar {
    width: 120px;
    height: 6px;
    background: var(--nz-green);
    margin: 18px auto 24px;
    border-radius: 3px;
}

.nz-search-subtitle {
    color: var(--nz-white-60);
    font-size: 15px;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 36px;
}

/* Search input bar */
.nz-search-wrap {
    position: relative;
    max-width: 460px;
    margin: 0 auto;
}

.nz-search-input {
    width: 100%;
    height: 58px;
    border-radius: 100px;
    border: 1.5px solid var(--nz-green);
    background: transparent;
    color: var(--nz-white);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-style: italic;
    padding: 0 60px 0 28px;
    outline: none;
    transition: box-shadow .2s;
}
.nz-search-input::placeholder { color: rgba(255,255,255,.45); }
.nz-search-input:focus { box-shadow: 0 0 20px rgba(87,255,141,.3); }

.nz-search-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--nz-green);
    border: none;
    color: #111;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .2s;
}
.nz-search-btn:hover { opacity: .8; }

/* Category toggle tabs */
.nz-cat-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.nz-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--nz-radius);
    border: 1px solid rgba(255,255,255,.15);
    background: transparent;
    color: var(--nz-white-60);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s;
    backdrop-filter: blur(10px);
}
.nz-cat-btn:hover { border-color: var(--nz-green); color: var(--nz-white); }
.nz-cat-btn.active {
    background: linear-gradient(127deg, var(--nz-green) 0%, var(--nz-green-40) 100%);
    border-color: transparent;
    color: var(--nz-white);
}

/* Main glowing box container */
.nz-result-box {
    border: 1px solid var(--nz-green);
    border-radius: 32px;
    box-shadow: 0 0 50px rgba(87,255,141,.35), inset 0 0 40px rgba(87,255,141,.04);
    padding: 40px 32px;
    margin: 0 auto;
    max-width: 900px;
    position: relative;
    min-height: 300px;
    background: rgba(13,13,13,.6);
    backdrop-filter: blur(10px);
}

/* Song info panel inside box */
.nz-song-panel {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    flex-wrap: wrap;
}

.nz-song-thumbnail {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,.1);
}

.nz-song-title  { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.nz-song-artist { font-size: 15px; color: var(--nz-green); font-weight: 500; margin-bottom: 10px; }

.nz-song-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.nz-song-meta span {
    font-size: 13px;
    color: var(--nz-white-60);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nz-yt-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255,0,0,.15);
    border: 1px solid rgba(255,0,0,.3);
    border-radius: 6px;
    color: #ff4444;
    font-size: 13px;
    text-decoration: none;
    transition: background .2s;
}
.nz-yt-link:hover { background: rgba(255,0,0,.25); color: #ff4444; }

/* Country position list */
.nz-country-list { display: flex; flex-direction: column; gap: 8px; }

.nz-country-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(255,255,255,.03);
    transition: background .2s;
}
.nz-country-row:hover { background: rgba(255,255,255,.06); }
.nz-country-row.trending { background: rgba(87,255,141,.06); }
.nz-country-row.trending:hover { background: rgba(87,255,141,.1); }

.nz-country-left { display: flex; align-items: center; gap: 12px; }

.nz-flag {
    width: 28px;
    height: 20px;
    border-radius: 3px;
    object-fit: cover;
    flex-shrink: 0;
}

.nz-country-name { font-size: 15px; font-weight: 400; text-transform: uppercase; letter-spacing: .05em; }

.nz-position-badge {
    font-size: 18px;
    font-weight: 700;
    color: var(--nz-green);
    min-width: 50px;
    text-align: right;
}
.nz-position-badge.not-trending {
    font-size: 13px;
    color: rgba(255,255,255,.25);
    font-weight: 400;
}

.nz-divider-line {
    height: 1px;
    background: rgba(217,217,217,.2);
    margin: 2px 0;
}

/* Placeholder / loading */
.nz-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: var(--nz-white-60);
}
.nz-placeholder i { font-size: 56px; color: rgba(87,255,141,.2); margin-bottom: 16px; display: block; }
.nz-placeholder p { font-size: 15px; }

.nz-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(87,255,141,.2);
    border-top-color: var(--nz-green);
    border-radius: 50%;
    animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== FOOTER ===== */
.nz-footer {
    background: var(--nz-bg);
    border-top: 1px solid #373737;
    margin-top: 80px;
}
.nz-footer-divider { height: 1px; background: rgba(255,255,255,.07); }

.nz-footer-heading {
    font-size: 17px;
    font-weight: 600;
    color: var(--nz-white);
    margin-bottom: 16px;
    text-transform: capitalize;
}

.nz-footer-tagline {
    font-size: 13px;
    color: var(--nz-white-60);
    line-height: 1.6;
}
.nz-footer-copy { font-size: 13px; color: rgba(255,255,255,.35); margin-top: 12px; }

.nz-footer-links {
    list-style: none;
    padding: 0; margin: 0;
}
.nz-footer-links li { margin-bottom: 8px; }
.nz-footer-links a {
    color: var(--nz-white-60);
    text-decoration: none;
    font-size: 15px;
    transition: color .2s;
}
.nz-footer-links a:hover { color: var(--nz-green); }

.nz-footer-contact { list-style: none; padding: 0; margin: 0; }
.nz-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--nz-white-60);
    font-size: 15px;
}
.nz-footer-contact i { font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.nz-footer-contact a { color: var(--nz-white-60); text-decoration: none; }
.nz-footer-contact a:hover { color: var(--nz-green); }

.nz-footer-label { color: var(--nz-white-60); font-size: 14px; margin-bottom: 8px; }

.nz-newsletter-input {
    height: 46px;
    border-radius: var(--nz-radius);
    border: 1.5px solid rgba(255,255,255,.22);
    background: transparent;
    color: var(--nz-white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 0 16px;
    outline: none;
    min-width: 0;
    transition: border-color .2s;
}
.nz-newsletter-input:focus { border-color: var(--nz-green); }
.nz-newsletter-input::placeholder { color: var(--nz-white-60); }

.nz-social-icons { display: flex; gap: 10px; }
.nz-social-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(127deg, var(--nz-green) 0%, var(--nz-green-40) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 20px;
    text-decoration: none;
    transition: opacity .2s, transform .2s;
}
.nz-social-btn:hover { opacity: .85; transform: translateY(-2px); color: #111; }

.nz-partner-strip {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    color: rgba(255,255,255,.35);
    font-size: 13px;
}

/* ===== SECTION SEPARATOR ===== */
.nz-section-sep {
    border: none;
    border-top: 1px solid rgba(255,255,255,.07);
    margin: 0;
}

/* ===== ALERT MESSAGES ===== */
.nz-alert-success {
    padding: 10px 16px;
    border-radius: 8px;
    background: rgba(87,255,141,.12);
    border: 1px solid rgba(87,255,141,.3);
    color: var(--nz-green);
    font-size: 14px;
}
.nz-alert-error {
    padding: 10px 16px;
    border-radius: 8px;
    background: rgba(255,80,80,.1);
    border: 1px solid rgba(255,80,80,.3);
    color: #ff6b6b;
    font-size: 14px;
}

/* ===== SONG PICKER ===== */
.nz-picker-list { display: flex; flex-direction: column; }

.nz-pick-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: background .15s;
}
.nz-pick-card:hover { background: rgba(255,255,255,.05); }

/* Highlight the top-ranked result */
.nz-pick-card--top {
    background: rgba(87,255,141,.06);
    border: 1px solid rgba(87,255,141,.18);
    border-radius: 10px;
}
.nz-pick-card--top:hover { background: rgba(87,255,141,.1); }

.nz-pick-thumb {
    width: 72px;
    height: 54px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,.08);
}
.nz-pick-thumb--empty {
    background: rgba(255,255,255,.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.3);
    font-size: 22px;
}

.nz-pick-info { flex: 1; min-width: 0; }

.nz-pick-title {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}
.nz-pick-channel {
    font-size: 13px;
    color: var(--nz-green);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nz-pick-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: rgba(255,255,255,.4);
}
.nz-pick-meta span { display: flex; align-items: center; gap: 4px; }

.nz-pick-btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: rgba(255,255,255,.3);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .15s, background .15s;
}
.nz-pick-card--top .nz-pick-btn { color: var(--nz-green); }
.nz-pick-card:hover .nz-pick-btn { color: var(--nz-white); background: rgba(87,255,141,.1); }

/* "Nije ova pesma?" — small discrete link at bottom */
.nz-wrong-song-wrap {
    text-align: center;
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.06);
}
.nz-wrong-song-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,.25);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    transition: color .2s;
}
.nz-wrong-song-btn:hover { color: rgba(255,255,255,.6); }

/* Picker: slightly smaller cards (secondary UI) */
.nz-pick-card { padding: 12px 10px; }
.nz-pick-thumb { width: 64px; height: 48px; }

/* Country list section labels */
.nz-list-label {
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--nz-bg); }
::-webkit-scrollbar-thumb { background: rgba(87,255,141,.3); border-radius: 3px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .nz-hero { padding: 100px 24px 60px; }
    .nz-result-box { padding: 28px 20px; }
}

@media (max-width: 575px) {
    .nz-search-hero { padding: 100px 16px 40px; }
    .nz-result-box  { border-radius: 20px; padding: 20px 16px; }
    .nz-song-panel  { flex-direction: column; }
}
