/* ==========================================
           GLOBAL: Green Theme
           ========================================== */
        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Helvetica Neue', 'Inter', -apple-system, sans-serif;
            background: #070709;
            color: #fff;
            min-height: 100vh;
        }

        :root {
            /* Green theme - True Rainbow Green 120° */
            --primary: #00ff00;
            --primary-dark: #009900;
            --primary-dim: rgba(0, 255, 0, 0.15);
            --text-muted: #888888;

            /* NYC Subway line colors - Basic Rainbow */
            --line-E: #00cc00;      /* E Line - Green (Education) */
            --line-T: #ffcc00;      /* T Line - Yellow (Teaching) */
            --line-R: #0066ff;      /* R Line - Blue (Research) */
            --line-P: #ff6600;      /* P Line - Orange (Performance) */
            --line-C: #9933ff;      /* C Line - Purple (Community) */
            --line-S: #ff0000;      /* S Line - Red (Software) */

            /* Zone colors */
            --zone-vietnam: #ff6b6b;
            --zone-singapore: #ffd93d;
            --zone-nyc: #4d96ff;
        }

        /* ==========================================
           DESKTOP NAV
           ========================================== */
        .nav-desktop {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            padding: 1.25rem 5vw;
            background: transparent;
            z-index: 1000;
        }

        .nav-desktop a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s ease;
            background: rgba(7, 7, 9, 0.9);
            padding: 0.5rem 1rem;
            border-radius: 6px;
        }

        .nav-desktop a:hover,
        .nav-desktop a.active {
            color: var(--primary);
        }

        /* ==========================================
           MOBILE NAV
           ========================================== */
        .nav-mobile {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-around;
            padding: 1rem;
            background: rgba(7, 7, 9, 0.95);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            z-index: 100;
        }

        .nav-mobile a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.7rem;
            text-align: center;
            transition: color 0.3s;
        }

        .nav-mobile a:hover,
        .nav-mobile a.active {
            color: var(--primary);
        }

        @media (min-width: 1024px) {
            .nav-mobile { display: none; }
        }

        @media (max-width: 1023px) {
            .nav-desktop { display: none; }
        }

        /* ==========================================
           HEADER - CV Metro
           ========================================== */
        .header {
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            background: #000;
            border-bottom: 1px solid #222;
            padding: 0.15rem 1rem;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            overflow: visible;
        }

        @media (max-width: 1023px) {
            .header { top: 0; border-top: 3px solid var(--primary); }
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .mta-badge {
            width: 24px;
            height: 24px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: #000;
            font-size: 0.3rem;
            text-align: center;
            line-height: 1;
        }

        .header-title h1 {
            font-size: 0.85rem;
            font-weight: 700;
        }

        .header-title p {
            font-size: 0.5rem;
            color: #888;
            line-height: 1.2;
        }

        /* View Toggle - Green Theme */
        .view-toggle {
            display: flex;
            background: #1a1a1a;
            border-radius: 8px;
            padding: 4px;
            border: 1px solid #333;
        }

        .view-toggle {
            position: relative;
        }

        .view-toggle-hint {
            position: absolute;
            top: -18px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.55rem;
            color: var(--primary);
            white-space: nowrap;
            animation: fadeInOut 3s ease-in-out infinite;
        }

        .header-center {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 1.25rem;
        }

        .scroll-hint-center {
            font-size: 0.55rem;
            color: var(--primary);
            white-space: nowrap;
            animation: fadeInOut 3s ease-in-out infinite, pulse 2s ease-in-out infinite;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
        }

        .scroll-hint-horizontal {
            display: inline;
        }

        .scroll-hint-vertical {
            display: none;
        }

        .header-center.vertical .scroll-hint-horizontal {
            display: none;
        }

        .header-center.vertical .scroll-hint-vertical {
            display: inline;
        }

        @keyframes fadeInOut {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 1; }
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 102, 0); }
            50% { box-shadow: 0 0 8px 2px rgba(0, 255, 102, 0.4); }
        }

        .view-btn {
            padding: 0.25rem 0.5rem;
            border: none;
            background: transparent;
            color: #666;
            font-size: 0.6rem;
            font-weight: 600;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            animation: pulse 2s ease-in-out infinite;
        }

        .view-btn.active {
            background: var(--primary);
            color: #000;
            animation: none;
        }

        .view-btn:hover:not(.active) {
            color: var(--primary);
            animation: none;
        }

        /* PDF View */
        .pdf-view {
            padding: 1rem 2rem;
            display: flex;
            justify-content: center;
        }

        .pdf-view.hidden {
            display: none;
        }

        .pdf-container {
            width: 100%;
            max-width: 1200px;
            display: flex;
            flex-direction: column;
            background: #1a1a1a;
            border-radius: 8px;
            overflow: hidden;
        }

        .pdf-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0.75rem;
            background: #222;
            border-bottom: 1px solid #333;
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .pdf-download-link {
            color: var(--primary);
            text-decoration: none;
            font-size: 0.7rem;
        }

        .pdf-download-link:hover {
            text-decoration: underline;
        }

        .pdf-preview {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            padding: 0.5rem;
            background: #1a1a1a;
        }

        .pdf-preview img {
            width: 100%;
            height: auto;
            display: block;
            background: #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        }

        /* Line Legend - Header with vertical overflow */
        .line-legend-header {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            overflow: visible;
        }

        .legend-row {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.2s;
            position: relative;
        }

        .legend-row:hover, .legend-row.active {
            opacity: 1;
        }

        .legend-row.active .line-bullet {
            box-shadow: 0 0 8px currentColor;
        }

        .line-bullet {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            color: #fff;
        }

        .line-name {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.75rem;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            margin-top: 0.3rem;
            letter-spacing: 0.04em;
            white-space: nowrap;
            opacity: 0.9;
            font-weight: 500;
        }

        /* ==========================================
           MAIN CONTAINER
           ========================================== */
        .main-container {
            padding-top: 100px;
            min-height: 100vh;
        }

        @media (max-width: 1023px) {
            .main-container { padding-top: 50px; }
        }

        /* ==========================================
           COMPACT VIEW (from 8g)
           ========================================== */
        .compact-view {
            display: block;
            overflow-x: auto;
            padding: 1rem 1rem 1rem 1rem;
        }

        .compact-map {
            position: relative;
            min-width: 2300px;
            min-height: 950px;
            height: calc(100vh - 140px);
            padding-bottom: 20px;
        }

        @media (max-width: 1023px) {
            .compact-map { height: calc(100vh - 100px); min-height: 600px; }
        }

        /* Tablet specific (769px - 1023px) - ensure map displays */
        @media (min-width: 769px) and (max-width: 1023px) {
            .compact-view {
                display: block !important;
                overflow-x: auto !important;
                overflow-y: hidden !important;
                -webkit-overflow-scrolling: touch;
            }

            .compact-map {
                display: block !important;
                min-width: 2300px !important;
                min-height: 700px !important;
            }
        }

        /* Phone specific (up to 768px) - ensure map displays */
        @media (max-width: 768px) {
            .compact-view {
                display: block !important;
                overflow-x: auto !important;
                overflow-y: hidden !important;
                -webkit-overflow-scrolling: touch;
            }

            .compact-map {
                display: block !important;
                min-width: 2300px !important;
                min-height: 600px !important;
            }
        }

        /* Zone Ribbons */
        .zone-ribbon {
            position: absolute;
            top: 0;
            bottom: 0;
            height: 100%;
            border-left: 3px solid;
            opacity: 0.12;
        }

        /* Zone ribbon widths match the year-axis scale (1992-2027 → /35 → 55px/year + 70px left offset) */
        .zone-ribbon.vietnam1 {
            left: 0;
            width: 675px;          /* up to yearToX(2003) */
            background: linear-gradient(90deg, var(--zone-vietnam) 0%, var(--zone-vietnam) 10%, transparent);
            border-color: var(--zone-vietnam);
            border-left: none;
        }

        .zone-ribbon.singapore {
            left: 675px;           /* yearToX(2003) */
            width: 275px;          /* 5 years × 55px */
            background: linear-gradient(90deg, var(--zone-singapore), transparent);
            border-color: var(--zone-singapore);
        }

        .zone-ribbon.vietnam2 {
            left: 950px;           /* yearToX(2008) */
            width: 275px;          /* 5 years × 55px */
            background: linear-gradient(90deg, var(--zone-vietnam), transparent);
            border-color: var(--zone-vietnam);
        }

        .zone-ribbon.nyc {
            left: 1225px;          /* yearToX(2013) */
            right: 0;
            background: linear-gradient(90deg, var(--zone-nyc), var(--zone-nyc) 70%, transparent);
            border-color: var(--zone-nyc);
        }

        /* Zone Headers */
        .zone-header {
            position: absolute;
            top: 45px;
            font-size: 1.3rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            opacity: 0.5;
        }

        .zone-header.vietnam1 { left: 15px; color: var(--zone-vietnam); }
        .zone-header.singapore { left: 690px; color: var(--zone-singapore); }
        .zone-header.vietnam2 { left: 965px; color: var(--zone-vietnam); font-size: 1rem; }
        .zone-header.nyc { left: 1240px; color: var(--zone-nyc); }

        .zone-years {
            font-size: 0.45em;
            font-weight: 400;
            display: block;
            opacity: 0.7;
            letter-spacing: 0.08em;
        }

        /* SVG Lines */
        svg.metro-svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .metro-path {
            fill: none;
            stroke-width: 6;
            stroke-linecap: round;
            stroke-linejoin: round;
            opacity: 0.85;
            transition: opacity 0.3s, stroke-width 0.3s;
        }

        .metro-path.dimmed { opacity: 0.08; }
        .metro-path.highlighted { stroke-width: 10; opacity: 1; }

        /* Compact Stations */
        .compact-station {
            position: absolute;
            transform: translate(-50%, -50%);
            cursor: pointer;
            z-index: 20;
            transition: all 0.2s;
        }

        .compact-station.dimmed { opacity: 0.12; pointer-events: none; }

        .compact-dot {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: #fff;
            border: 4px solid;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.6rem;
            transition: all 0.2s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.4);
        }

        .compact-station:hover .compact-dot {
            transform: scale(1.4);
            box-shadow: 0 0 20px currentColor;
        }

        .compact-station.interchange .compact-dot {
            width: 32px;
            height: 32px;
            border-width: 0;
            border-radius: 50%;
            position: relative;
            box-shadow: 0 0 0 2px #fff, 0 4px 15px rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            color: #fff;
        }

        /* Inner circle to create donut effect */
        .compact-station.interchange .compact-dot::after {
            content: '';
            position: absolute;
            top: 6px;
            left: 6px;
            right: 6px;
            bottom: 6px;
            background: #0a0a0a;
            border-radius: 50%;
        }

        /* Number text above the inner circle */
        .compact-station.interchange .compact-dot .dot-number {
            position: relative;
            z-index: 2;
        }

        .compact-label {
            position: absolute;
            white-space: nowrap;
            font-size: 0.7rem;
            color: #fff;
            transition: all 0.2s;
            pointer-events: none;
            text-shadow: 0 0 8px #000, 0 0 4px #000, 0 1px 2px #000;
            background: rgba(0,0,0,0.6);
            padding: 2px 6px;
            border-radius: 4px;
        }

        .compact-station:hover .compact-label {
            color: #fff;
            font-weight: 600;
        }

        .compact-station.label-top .compact-label { bottom: 100%; top: auto; left: 50%; right: auto; transform: translateX(-50%); margin-bottom: 8px; text-align: center; }
        .compact-station.label-bottom .compact-label { top: 100%; bottom: auto; left: 50%; right: auto; transform: translateX(-50%); margin-top: 8px; text-align: center; }
        .compact-station.label-right .compact-label { left: 100%; right: auto; top: 50%; bottom: auto; transform: translateY(-50%); margin-left: 10px; text-align: left; }
        .compact-station.label-left .compact-label { right: 100%; left: auto; top: 50%; bottom: auto; transform: translateY(-50%); margin-right: 10px; text-align: right; }

        .compact-year { font-size: 0.6rem; color: #666; }
        .compact-title { font-weight: 500; }

        /* Year Axis */
        .year-axis {
            position: absolute;
            top: 10px;
            left: 0;
            right: 0;
            height: 25px;
            border-bottom: 1px solid #333;
        }

        .year-tick {
            position: absolute;
            top: 5px;
            transform: translateX(-50%);
            font-size: 0.5rem;
            color: #444;
        }

        .year-tick::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            width: 1px;
            height: 6px;
            background: #333;
        }

        .year-tick-major {
            font-size: 0.65rem;
            color: #fff;
            font-weight: 600;
        }

        .year-tick-major::after {
            height: 10px;
            background: #666;
        }

        /* ==========================================
           EXPANDED VIEW (from 8h)
           ========================================== */
        .expanded-view {
            display: none;
            overflow-x: hidden;
            overflow-y: auto;
            padding: 1rem 1rem 4rem 1rem;
        }

        .expanded-view.active { display: block; }
        .compact-view.hidden { display: none; }

        .expanded-timeline {
            display: grid;
            grid-template-columns: repeat(4, 25%);
            gap: 0;
            width: 100%;
            max-width: calc(100vw - 2rem);
        }

        /* Expanded view responsive - iPad: 2 columns */
        @media (max-width: 1023px) and (min-width: 768px) {
            .expanded-timeline {
                grid-template-columns: repeat(2, 50%);
            }
        }

        /* Expanded view responsive - Mobile: 1 column */
        @media (max-width: 767px) {
            .expanded-timeline {
                grid-template-columns: 1fr;
            }
            .zone-column {
                padding: 0.75rem;
            }
            .zone-badge {
                width: 32px;
                height: 32px;
                font-size: 0.75rem;
            }
            .zone-column-title h3 {
                font-size: 0.9rem;
            }
        }

        /* Zone columns */
        .zone-column {
            padding: 1rem;
            border-left: 3px solid;
            min-width: 0;
        }

        .zone-column.vietnam1 {
            border-color: var(--zone-vietnam);
        }

        .zone-column.singapore {
            border-color: var(--zone-singapore);
        }

        .zone-column.vietnam2 {
            border-color: var(--zone-vietnam);
        }

        .zone-column.nyc {
            border-color: var(--zone-nyc);
        }

        .zone-column-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid #222;
        }

        .zone-badge {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            flex-shrink: 0;
        }

        .zone-badge.vietnam { background: var(--zone-vietnam); color: #fff; }
        .zone-badge.singapore { background: var(--zone-singapore); color: #000; }
        .zone-badge.nyc { background: var(--zone-nyc); color: #fff; }

        .zone-badge small { font-size: 0.35rem; font-weight: 500; opacity: 0.8; }

        .zone-column-title h3 { font-size: 1rem; font-weight: 700; }
        .zone-column-title p { font-size: 0.7rem; color: #888; }

        /* Station rows */
        .station-row {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid #1a1a1a;
            transition: all 0.2s;
        }

        .station-row:hover {
            background: rgba(255,255,255,0.02);
        }

        .station-row.dimmed { opacity: 0.12; }

        .row-lines {
            display: flex;
            flex-direction: column;
            gap: 2px;
            width: 24px;
            flex-shrink: 0;
        }

        .row-line-dot {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.6rem;
            color: #fff;
        }

        .row-content { flex: 1; min-width: 0; }

        .row-year {
            font-size: 0.6rem;
            color: #555;
            font-weight: 600;
        }

        .row-title {
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.1rem;
        }

        .row-org {
            font-size: 0.75rem;
            color: #888;
        }

        .row-desc {
            font-size: 0.7rem;
            color: #555;
            margin-top: 0.25rem;
            line-height: 1.4;
        }

        /* Interchange highlight */
        .station-row.interchange {
            background: rgba(0,255,102,0.03);
            border: 1px solid rgba(0,255,102,0.15);
            border-radius: 10px;
            padding: 0.75rem;
            margin: 0.5rem 0;
        }

        .station-row.interchange .row-title {
            color: var(--primary);
        }

        /* Tooltip */
        .tooltip {
            position: fixed;
            background: rgba(15,15,15,0.98);
            border: 1px solid var(--primary-dark);
            border-radius: 12px;
            padding: 1.25rem;
            max-width: 300px;
            z-index: 200;
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s;
            pointer-events: none;
        }

        .tooltip.visible { opacity: 1; visibility: visible; }

        .tooltip-header {
            display: flex;
            gap: 0.4rem;
            margin-bottom: 0.5rem;
        }

        .tooltip-bullet {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            color: #fff;
        }

        .tooltip-title { font-size: 1.05rem; font-weight: 700; }
        .tooltip-org { font-size: 0.85rem; color: #888; margin-bottom: 0.4rem; }
        .tooltip-desc { font-size: 0.8rem; color: #aaa; line-height: 1.6; }
        .tooltip-year { font-size: 0.7rem; color: var(--primary); margin-top: 0.5rem; font-weight: 600; }

        /* Scroll hint inline */
        .scroll-hint-inline {
            font-size: 0.65rem;
            color: var(--primary);
            margin-left: 0.5rem;
            opacity: 0.7;
        }

        /* Hide old scroll hint */
        .scroll-hint {
            display: none;
        }

        /* Stats footer */
        .stats-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(10,10,10,0.95);
            border-top: 1px solid #222;
            padding: 0.5rem 2rem;
            display: flex;
            justify-content: center;
            gap: 2rem;
            z-index: 90;
            backdrop-filter: blur(10px);
        }

        @media (max-width: 1023px) {
            .stats-bar {
                padding: 0.5rem 1rem;
                font-size: 0.7rem;
            }
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .stat-bullet {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.6rem;
            color: #fff;
        }

        .stat-count {
            font-size: 0.7rem;
            color: #888;
        }

        @media (max-width: 600px) {
            .line-legend-header {
                flex-wrap: wrap;
                gap: 0.25rem;
            }
        }

        /* Footer */
        .site-footer {
            margin-top: 4rem;
            padding: 2rem 5vw 6rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            text-align: center;
        }
        .footer-contact { margin: 1rem auto; max-width: 400px; }
        .footer-contact-btn { display: inline-block; padding: 0.75rem 1.5rem; background: transparent; border: 1px solid var(--primary); border-radius: 8px; color: var(--primary); font-weight: 500; font-size: 0.85rem; text-decoration: none; cursor: pointer; transition: all 0.3s ease; }
        .footer-contact-btn:hover { background: var(--primary); color: #000; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 204, 0, 0.3); }
        .footer-social { display: flex; justify-content: center; gap: 1.5rem; margin: 1.5rem 0; }
        .footer-social a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.3s ease; }
        .footer-social a:hover { color: var(--primary); }
        .social-icon { width: 20px; height: 20px; opacity: 0.5; transition: opacity 0.3s ease; }
        .footer-social a:hover .social-icon { opacity: 1; }
        .footer-copyright { font-size: 0.75rem; color: var(--text-muted); margin-top: 1rem; }
        .footer-credit { font-size: 0.65rem; color: #555; margin-top: 0.5rem; letter-spacing: 0.02em; }

        /* ==========================================
           DECORATIVE IMAGES
           ========================================== */
        .deco-footer-image {
            position: absolute;
            left: 1260px; /* x position of 2013: (2013-1992)/34*1925+70 = 1189, offset for image center */
            bottom: 0;
            width: auto;
            height: 90vh;
            z-index: 1;
            pointer-events: none;
        }

        .site-footer {
            position: relative;
            overflow: visible;
        }

        @media (max-width: 1200px) {
            .deco-footer-image {
                right: -10vw;
                height: 50vh;
            }
        }

        @media (max-width: 768px) {
            .deco-footer-image {
                position: fixed;
                left: auto;
                right: 0;
                bottom: 0;
                height: 40vh;
                opacity: 0.15;
            }
        }

        /* Family image under 1992 station */
        .family-image {
            position: absolute;
            left: 30px;
            top: 200px;
            width: 140px;
            height: auto;
            opacity: 0.85;
            pointer-events: none;
            z-index: 5;
        }

        /* AT image fixed to bottom of viewport, touching stats bar */
        .at-nyc-image {
            position: fixed;
            left: 1200px;
            bottom: -15px; /* height of stats bar minus 50px */
            width: auto;
            height: 70vh;
            opacity: 1;
            pointer-events: none;
            z-index: 1000;
        }

        @media (max-width: 768px) {
            .family-image {
                width: 80px;
                top: 180px;
            }
            .at-nyc-image {
                position: fixed;
                left: auto;
                right: 0;
                bottom: 0;
                height: 50vh;
                opacity: 0.2;
            }
        }

        @media (min-width: 769px) and (max-width: 1023px) {
            .at-nyc-image {
                left: auto;
                right: 10vw;
                bottom: 0;
                height: 60vh;
            }
        }
