/* ============================================================
   NeonFlix — Netflix / Disney+ Dedicated Page
   ============================================================ */

:root {
    --nf-bg: #141414;
    --nf-surface: #1a1a2e;
    --nf-card: #1f1f30;
    --nf-border: #2a2a3c;
    --nf-text: #e5e5e5;
    --nf-dim: #808080;
    --nf-red: #e50914;
    --nf-red-hover: #b20710;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--nf-bg);
    color: var(--nf-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* ===== NAVBAR ===== */
.nf-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 48px; height: 68px;
    display: flex; align-items: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, transparent);
    transition: background 0.35s;
}
.nf-nav.scrolled { background: rgba(20,20,20,0.97); box-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.nf-nav-inner { display: flex; align-items: center; width: 100%; gap: 36px; }
.nf-logo { font-size: 1.5rem; font-weight: 900; letter-spacing: 2px; color: #fff; text-transform: uppercase; white-space: nowrap; }
.nf-logo span { color: var(--nf-red); }
.nf-nav-links { display: flex; gap: 24px; }
.nf-nav-links a { font-size: 0.85rem; font-weight: 500; color: #bbb; transition: color 0.2s; }
.nf-nav-links a:hover { color: #fff; }
.nf-nav-right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.nf-icon-link { color: #bbb; font-size: 1rem; transition: color 0.2s; }
.nf-icon-link:hover { color: #fff; }
.nf-avatar-btn { background: none; border: none; cursor: pointer; padding: 0; }
.nf-avatar-sm {
    width: 32px; height: 32px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem; color: #fff;
    transition: transform 0.2s;
}
.nf-avatar-sm:hover { transform: scale(1.1); }
.nf-avatar-sm-red { background: #e50914; }
.nf-avatar-sm-blue { background: #1e88e5; }
.nf-avatar-sm-green { background: #43a047; }
.nf-avatar-sm-yellow { background: #f9a825; }
.nf-avatar-sm-purple { background: #8e24aa; }
.nf-avatar-sm-orange { background: #fb8c00; }
.nf-avatar-sm-pink { background: #d81b60; }
.nf-avatar-sm-cyan { background: #00acc1; }

/* ===== HERO ===== */
.nf-hero {
    position: relative; width: 100%; height: 85vh; min-height: 500px; max-height: 750px;
    background-size: cover; background-position: center 15%; display: flex; align-items: flex-end;
}
.nf-hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(to right, rgba(20,20,20,0.95) 0%, rgba(20,20,20,0.5) 40%, transparent 65%),
        linear-gradient(to top, var(--nf-bg) 2%, transparent 35%),
        linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 25%);
    z-index: 1;
}
.nf-hero-overlay { position: relative; z-index: 2; padding: 0 48px 100px; max-width: 650px; }
.nf-hero-overlay h1 { font-size: 3rem; font-weight: 900; line-height: 1.05; margin: 10px 0 14px; text-shadow: 2px 2px 10px rgba(0,0,0,0.6); }
.nf-hero-overlay .lead {
    font-size: 0.95rem; line-height: 1.6; color: #ccc; margin-bottom: 24px;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.nf-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== HERO CAROUSEL ===== */
.nf-hero-carousel {
    position: relative; width: 100%; height: 85vh; min-height: 500px; max-height: 750px;
    overflow: hidden; background: var(--nf-bg);
}
.nf-hero-slide {
    position: absolute; inset: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center 15%;
    display: flex; align-items: flex-end; opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}
.nf-hero-slide.active { opacity: 1; pointer-events: auto; }
.nf-hero-slide::before {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(to right, rgba(20,20,20,0.95) 0%, rgba(20,20,20,0.5) 40%, transparent 65%),
        linear-gradient(to top, var(--nf-bg) 2%, transparent 35%),
        linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 25%);
    z-index: 1;
}
.nf-hero-slide .nf-hero-overlay { position: relative; z-index: 2; padding: 0 48px 100px; max-width: 650px; }
.nf-hero-slide .nf-hero-overlay h1 { font-size: 3rem; font-weight: 900; line-height: 1.05; margin: 10px 0 14px; text-shadow: 2px 2px 10px rgba(0,0,0,0.6); }
.nf-hero-slide .nf-hero-overlay .lead {
    font-size: 0.95rem; line-height: 1.6; color: #ccc; margin-bottom: 24px;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.nf-hero-slide .nf-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.nf-hero-arrow {
    position: absolute; top: 40%; z-index: 10; background: rgba(0,0,0,0.4); border: none; color: #fff;
    width: 48px; height: 48px; border-radius: 50%; font-size: 1.2rem; cursor: pointer;
    opacity: 0; transition: opacity 0.3s, background 0.3s; display: flex; align-items: center; justify-content: center;
}
.nf-hero-carousel:hover .nf-hero-arrow { opacity: 1; }
.nf-hero-arrow:hover { background: rgba(229,9,20,0.8); }
.nf-hero-arrow-left { left: 16px; }
.nf-hero-arrow-right { right: 16px; }
.nf-hero-dots {
    position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%); z-index: 10;
    display: flex; gap: 8px;
}
.nf-hero-dot {
    width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.5);
    background: transparent; cursor: pointer; transition: all 0.3s; padding: 0;
}
.nf-hero-dot.active { background: #e50914; border-color: #e50914; transform: scale(1.3); }
.nf-hero-dot:hover { border-color: #fff; }

/* ===== WELCOME BAR ===== */
.nf-welcome-bar { padding: 88px 48px 0; }
.nf-welcome-text { font-size: 1rem; color: #aaa; font-weight: 500; }

/* ===== BUTTONS ===== */
.btn-nf-play {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border: none; border-radius: 4px;
    font-size: 1rem; font-weight: 700; cursor: pointer;
    background: #fff; color: #000; transition: all 0.2s; text-decoration: none;
}
.btn-nf-play:hover { background: rgba(255,255,255,0.75); color: #000; }
.btn-nf-info {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border: none; border-radius: 4px;
    font-size: 1rem; font-weight: 700; cursor: pointer;
    background: rgba(109,109,110,0.7); color: #fff; transition: all 0.2s; text-decoration: none;
}
.btn-nf-info:hover { background: rgba(109,109,110,0.4); color: #fff; }

/* ===== CAROUSEL ===== */
.nf-carousel { position: relative; margin: 0 0 12px; padding: 0 48px; }
.nf-carousel-title {
    font-size: 1.15rem; font-weight: 700; margin-bottom: 10px;
    display: flex; align-items: center; gap: 8px;
}
.nf-carousel-title .see-all { font-size: 0.75rem; font-weight: 500; color: #5799ef; margin-left: 8px; }
.nf-carousel-title .see-all:hover { text-decoration: underline; }
.nf-carousel-wrap { position: relative; }
.nf-carousel-track {
    display: flex; gap: 6px;
    overflow-x: auto; scroll-behavior: smooth;
    scrollbar-width: none; padding: 8px 40px 16px;
}
.nf-carousel-track::-webkit-scrollbar { display: none; }
.nf-carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 80px; border: none; border-radius: 4px;
    background: rgba(20,20,20,0.85); color: #fff; font-size: 1.2rem;
    cursor: pointer; z-index: 5; display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; opacity: 0;
}
.nf-carousel-wrap:hover .nf-carousel-arrow { opacity: 1; }
.nf-carousel-arrow:hover { background: rgba(40,40,60,0.95); }
.nf-carousel-arrow-left { left: 0; }
.nf-carousel-arrow-right { right: 0; }

/* ===== POSTER CARD ===== */
.nf-card {
    flex: 0 0 165px; border-radius: 4px; overflow: hidden;
    position: relative; cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--nf-card);
    text-decoration: none; color: inherit; display: block;
}
.nf-card:hover { transform: scale(1.3); z-index: 10; box-shadow: 0 10px 40px rgba(0,0,0,0.8); }
.nf-card img { width: 100%; aspect-ratio: 2/3; object-fit: cover; display: block; }
.nf-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(transparent 35%, rgba(0,0,0,0.9) 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 10px 12px; opacity: 0; transition: opacity 0.25s;
}
.nf-card:hover .nf-card-overlay { opacity: 1; }
.nf-card-overlay h6 { font-size: 0.72rem; font-weight: 700; margin: 0 0 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nf-card-overlay .meta { font-size: 0.62rem; color: #aaa; display: flex; gap: 6px; align-items: center; }
.nf-card-overlay .meta .nf-match { color: #46d369; font-weight: 700; }

/* Small card */
.nf-card-sm { display: block; text-decoration: none; color: inherit; transition: transform 0.2s; }
.nf-card-sm:hover { transform: scale(1.05); }
.nf-card-sm img { width: 100%; border-radius: 4px; aspect-ratio: 2/3; object-fit: cover; display: block; }
.nf-card-sm-info { padding: 6px 2px; }
.nf-card-sm-info h6 { font-size: 0.8rem; font-weight: 600; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nf-card-sm-info small { font-size: 0.7rem; color: var(--nf-dim); }

/* ===== DETAIL HERO ===== */
.nf-detail-hero {
    position: relative; width: 100%; min-height: 550px;
    background-size: cover; background-position: center top;
    display: flex; align-items: flex-end;
}
.nf-detail-hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(to top, var(--nf-bg) 3%, rgba(20,20,30,0.5) 35%, transparent 60%),
        linear-gradient(to right, rgba(20,20,30,0.95) 0%, rgba(20,20,30,0.3) 45%, transparent 65%);
    z-index: 1;
}
.nf-detail-hero .container { position: relative; z-index: 2; padding-bottom: 60px; }
.nf-detail-hero h1 { font-size: 2.8rem; font-weight: 900; line-height: 1.05; margin-bottom: 8px; text-shadow: 2px 2px 8px rgba(0,0,0,0.5); }
.nf-detail-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; flex-wrap: wrap; }
.nf-detail-meta .nf-rating { color: #46d369; font-weight: 700; }
.nf-overview { max-width: 550px; font-size: 0.92rem; line-height: 1.6; color: #ccc; margin-bottom: 20px; }
.nf-detail-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.nf-detail-genres { display: flex; gap: 6px; flex-wrap: wrap; }
.nf-detail-genres .badge { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: #aaa; font-weight: 400; font-size: 0.72rem; padding: 3px 10px; border-radius: 3px; }

/* ===== SEARCH ===== */
.nf-search-page { padding: 120px 48px 40px; max-width: 800px; margin: 0 auto; }
.nf-search-wrap { position: relative; margin-bottom: 32px; }
.nf-search-wrap i { position: absolute; left: 0; top: 50%; transform: translateY(-50%); color: #666; font-size: 1.1rem; }
.nf-search-wrap input {
    width: 100%; padding: 12px 12px 12px 36px;
    border: none; border-bottom: 2px solid #444;
    background: transparent; color: #fff; font-size: 1.1rem; outline: none; transition: border-color 0.3s;
}
.nf-search-wrap input:focus { border-bottom-color: #fff; }
.nf-search-wrap input::placeholder { color: #666; }

/* ===== GRID (browse) ===== */
.nf-grid-page { padding: 100px 48px 40px; }
.nf-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 8px; }

/* ===== FILTER PILLS ===== */
.nf-filters { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; margin-bottom: 20px; }
.nf-filters .pill {
    padding: 6px 16px; border: 1px solid #444; border-radius: 20px;
    font-size: 0.78rem; color: #bbb; background: transparent;
    cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.nf-filters .pill:hover { border-color: #fff; color: #fff; }
.nf-filters .pill.active { background: #fff; color: #000; border-color: #fff; }

/* ===== CATEGORIES PAGE ===== */
.nf-categories-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px;
}
.nf-category-card {
    position: relative; overflow: hidden; border-radius: 8px; padding: 32px 24px;
    display: flex; align-items: flex-end; min-height: 120px;
    text-decoration: none; color: #fff; transition: transform 0.2s, box-shadow 0.2s;
}
.nf-category-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.5); }
.nf-category-card-bg {
    position: absolute; inset: 0;
    background: var(--gc);
    opacity: 0.15; transition: opacity 0.3s;
}
.nf-category-card:hover .nf-category-card-bg { opacity: 0.25; }
.nf-category-card-content { position: relative; z-index: 1; }
.nf-category-card-content h5 { font-size: 1.1rem; font-weight: 700; margin: 0; }
.nf-category-card-content small { color: rgba(255,255,255,0.5); }
.nf-category-card-icon { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.2rem; color: rgba(255,255,255,0.3); z-index: 1; }

/* ===== CONTENT INDEX FOOTER ===== */
.nf-content-index { border-top: 1px solid #222; padding: 40px 0; margin-top: 40px; }
.nf-content-index-inner { padding: 0 48px; }
.nf-content-index-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; color: #aaa; }
.nf-content-index-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px;
}
.nf-genre-card {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px; border-radius: 6px; overflow: hidden;
    background: linear-gradient(135deg, var(--gc) 0%, rgba(30,30,50,0.9) 100%);
    text-decoration: none; color: #fff; font-weight: 600; font-size: 0.88rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.nf-genre-card:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.nf-genre-card-name { z-index: 1; }
.nf-genre-card i { font-size: 0.8rem; opacity: 0.4; }

/* ===== PROFILE SELECT (Netflix-style) ===== */
.nf-profiles-page {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center; padding: 40px 20px;
}
.nf-profiles-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 40px; color: #fff; }
.nf-profiles-grid { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.nf-profile-card {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    cursor: pointer; transition: transform 0.2s; text-decoration: none; color: inherit;
    background: none; border: none; padding: 0;
}
.nf-profile-card:hover { transform: scale(1.08); }
.nf-profile-avatar-btn {
    background: none; border: none; cursor: pointer; padding: 0;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.nf-profile-avatar {
    width: 120px; height: 120px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.nf-profile-icon { font-size: 2.5rem; font-weight: 700; color: #fff; z-index: 1; }
.nf-profile-name { font-size: 0.85rem; color: #aaa; font-weight: 500; text-align: center; }
.nf-profile-kids-badge {
    position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
    font-size: 0.55rem; font-weight: 800; background: #43a047; color: #fff;
    padding: 1px 6px; border-radius: 3px; letter-spacing: 1px;
}
.nf-profile-kids { border: 3px solid #43a047; }
.nf-profile-add .nf-profile-avatar-add {
    width: 120px; height: 120px; border-radius: 12px;
    border: 2px dashed #555; display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: #555; transition: all 0.2s;
}
.nf-profile-add:hover .nf-profile-avatar-add { border-color: #fff; color: #fff; }

/* ===== AVATAR PICKER ===== */
.nf-avatar-picker { display: flex; flex-direction: column; gap: 16px; }
.nf-avatar-picker-section { display: flex; gap: 12px; flex-wrap: wrap; }
.nf-avatar-option {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    cursor: pointer; transition: transform 0.2s;
}
.nf-avatar-option:hover { transform: scale(1.1); }
.nf-avatar-option.selected .nf-avatar-preview { box-shadow: 0 0 0 3px #fff; }
.nf-avatar-preview {
    width: 64px; height: 64px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.nf-avatar-emoji { font-size: 1.5rem; position: absolute; top: 4px; right: 4px; }
.nf-avatar-initial { font-size: 1.5rem; font-weight: 700; color: #fff; z-index: 1; }
.nf-avatar-option small { font-size: 0.65rem; color: #888; }

/* ===== PLAYER ===== */
.nf-player-page { padding: 80px 48px 40px; max-width: 1100px; margin: 0 auto; }
.nf-player-container { border-radius: 8px; overflow: hidden; }
.nf-player-wrap video { width: 100%; border-radius: 6px; background: #000; aspect-ratio: 16/9; }
.nf-player-empty { text-align: center; padding: 80px 20px; color: var(--nf-dim); }
.nf-player-empty i { font-size: 3rem; margin-bottom: 12px; opacity: 0.3; display: block; }

/* ===== PROFILE ===== */
.nf-profile-page { padding: 100px 48px 40px; max-width: 1100px; margin: 0 auto; }
.nf-profile-card-page { background: rgba(0,0,0,0.3); border-radius: 8px; padding: 32px; text-align: center; }
.nf-avatar {
    width: 80px; height: 80px; border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 2rem; color: #fff;
}
.nf-avatar-red { background: #e50914; }
.nf-avatar-blue { background: #1e88e5; }
.nf-avatar-green { background: #43a047; }
.nf-avatar-yellow { background: #f9a825; }
.nf-avatar-purple { background: #8e24aa; }
.nf-avatar-orange { background: #fb8c00; }
.nf-avatar-pink { background: #d81b60; }
.nf-avatar-cyan { background: #00acc1; }

/* ===== ADMIN ===== */
.nf-admin-page { padding: 100px 48px 40px; max-width: 1400px; margin: 0 auto; }
.nf-admin-page .nav-pills .nav-link {
    background: transparent; color: #888; border: 1px solid #333;
    border-radius: 20px; font-size: 0.78rem; padding: 5px 14px; margin-right: 4px;
}
.nf-admin-page .nav-pills .nav-link.active { background: #fff; color: #000; border-color: #fff; }

/* ===== AUTH ===== */
.nf-auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.nf-auth-card {
    background: rgba(0,0,0,0.75); border-radius: 4px;
    padding: 48px 40px; width: 100%; max-width: 380px;
}
.nf-auth-card h4 { font-size: 2rem; font-weight: 700; margin-bottom: 28px; }
.nf-auth-card .form-control {
    background: #333; border: none; border-radius: 4px;
    color: #fff; padding: 14px 16px; font-size: 0.9rem; margin-bottom: 16px;
}
.nf-auth-card .form-control:focus { box-shadow: 0 0 0 2px #e50914; }
.nf-auth-card .form-control::placeholder { color: #8c8c8c; }
.nf-auth-card .btn-nf-play {
    width: 100%; padding: 14px; font-size: 1rem; margin-top: 8px;
    background: #e50914; color: #fff; border: none; border-radius: 4px;
    font-weight: 700; cursor: pointer;
}
.nf-auth-card .btn-nf-play:hover { background: #b20710; }

/* ===== FOOTER ===== */
.nf-footer { border-top: 1px solid #222; padding: 32px 48px; text-align: center; font-size: 0.75rem; color: #555; }
.nf-footer a { color: #888; transition: color 0.2s; }
.nf-footer a:hover { color: #fff; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #444; border-radius: 3px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nf-nav { padding: 0 16px; height: 56px; }
    .nf-nav-links { display: none; }
    .nf-hero-carousel { height: 65vh; min-height: 350px; }
    .nf-hero-slide .nf-hero-overlay { padding: 0 16px 60px; }
    .nf-hero-slide .nf-hero-overlay h1 { font-size: 1.8rem; }
    .nf-hero-arrow { width: 36px; height: 36px; font-size: 0.9rem; }
    .nf-welcome-bar { padding: 68px 16px 0; }
    .nf-carousel { padding: 0 16px; }
    .nf-carousel-track { padding: 8px 16px 16px; }
    .nf-carousel-arrow { display: none; }
    .nf-card { flex: 0 0 120px; }
    .nf-card:hover { transform: scale(1.15); }
    .nf-grid-page { padding: 80px 16px 20px; }
    .nf-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 4px; }
    .nf-search-page { padding: 80px 16px 20px; }
    .nf-detail-hero { min-height: 350px; }
    .nf-detail-hero h1 { font-size: 1.6rem; }
    .nf-admin-page { padding: 80px 16px 20px; }
    .nf-profiles-title { font-size: 1.6rem; }
    .nf-profile-avatar { width: 80px; height: 80px; }
    .nf-profile-icon { font-size: 1.8rem; }
    .nf-categories-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
    .nf-content-index-inner { padding: 0 16px; }
    .nf-content-index-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
    .nf-footer { padding: 24px 16px; }
}
