/* Page-specific body override */
body { overflow-x: hidden; }

/* ============================================
           MATRIX RAIN CANVAS
           ============================================ */
        #matrix-canvas {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 0;
            opacity: 0.07;
            pointer-events: none;
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        

        

        

        

        

        

        

        

        

        

        

        

        


        /* X (Twitter) nav button */
        
        
        

        /* Floating X badge */
        
        
        
        
        
        

        /* Mobile nav toggle */
        

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            position: relative;
            min-height: 70vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem 2rem 1rem;
            z-index: 1;
        }

        .hero-content { position: relative; z-index: 2; }


        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(3rem, 8vw, 7rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1rem;
            position: relative;
        }

        .hero-title .line1 {
            display: block;
            background: linear-gradient(135deg, var(--neon-cyan), #fff, var(--neon-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glitch-text 3s infinite;
        }

        .hero-title .line2 {
            display: block;
            background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 0.6em;
            position: relative;
            animation: glitch-line2 4s infinite;
        }

        .hero-title .line2::before,
        .hero-title .line2::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: inherit;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-title .line2::before {
            animation: glitch-before 4s infinite;
            clip-path: inset(0 0 60% 0);
            text-shadow: -2px 0 #ff00ff;
        }

        .hero-title .line2::after {
            animation: glitch-after 4s infinite;
            clip-path: inset(60% 0 0 0);
            text-shadow: 2px 0 #00ffff;
        }

        @keyframes glitch-line2 {
            0%, 92%, 100% { transform: translate(0); }
            93% { transform: translate(-3px, 0); }
            94% { transform: translate(3px, 0); }
            95% { transform: translate(-1px, 0); }
            96% { transform: translate(1px, 0); }
        }

        @keyframes glitch-before {
            0%, 92%, 100% { transform: translate(0); opacity: 0; }
            93% { transform: translate(4px, -2px); opacity: 0.8; }
            94% { transform: translate(-4px, 2px); opacity: 0.8; }
            95% { transform: translate(2px, 1px); opacity: 0.6; }
            96% { transform: translate(-1px, -1px); opacity: 0; }
        }

        @keyframes glitch-after {
            0%, 92%, 100% { transform: translate(0); opacity: 0; }
            93% { transform: translate(-4px, 2px); opacity: 0.8; }
            94% { transform: translate(4px, -2px); opacity: 0.8; }
            95% { transform: translate(-2px, -1px); opacity: 0.6; }
            96% { transform: translate(1px, 1px); opacity: 0; }
        }

        @keyframes glitch-text {
            0%, 95%, 100% { transform: translate(0); filter: none; }
            96% { transform: translate(-2px, 1px); filter: hue-rotate(90deg); }
            97% { transform: translate(2px, -1px); filter: hue-rotate(-90deg); }
            98% { transform: translate(-1px, -1px); filter: hue-rotate(45deg); }
        }

        .hero-subtitle {
            font-family: var(--font-mono);
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-subtitle .typed-text {
            color: var(--neon-cyan);
            border-right: 2px solid var(--neon-cyan);
            animation: blink-cursor 0.8s infinite;
        }

        @keyframes blink-cursor {
            0%, 100% { border-color: var(--neon-cyan); }
            50% { border-color: transparent; }
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        

        

        

        

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 4rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .stat {
            text-align: center;
        }

        .stat-value {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 900;
            color: var(--neon-cyan);
            text-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
        }

        .stat-label {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 0.3rem;
        }

        /* Floating particles around hero */
        .particles {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 3px; height: 3px;
            background: var(--neon-cyan);
            border-radius: 50%;
            animation: float-particle linear infinite;
            opacity: 0.6;
        }

        @keyframes float-particle {
            0% { transform: translateY(100vh) scale(0); opacity: 0; }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% { transform: translateY(-100px) scale(1); opacity: 0; }
        }

        /* ============================================
           SECTION COMMON
           ============================================ */
        .section {
            position: relative;
            z-index: 1;
            padding: 3rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .section-tag {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--neon-purple);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 0.5rem;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 900;
            background: linear-gradient(135deg, var(--text-primary), var(--neon-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-divider {
            width: 60px; height: 3px;
            background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
            margin: 1rem auto 0;
            border-radius: 2px;
        }

        /* ============================================
           MANIFESTO SECTION
           ============================================ */
        .manifesto-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .manifesto-lead {
            text-align: center;
            margin-bottom: 3rem;
        }

        .manifesto-lead p {
            font-family: var(--font-display);
            font-size: clamp(1.3rem, 3vw, 1.8rem);
            font-weight: 700;
            background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }

        .manifesto-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }

        .manifesto-block {
            background: var(--bg-card);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 14px;
            padding: 2rem 1.5rem;
            transition: all 0.3s;
        }

        .manifesto-block:hover {
            border-color: var(--border-glow);
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(0, 245, 255, 0.1);
        }


        .manifesto-icon {
            font-size: 2rem;
            margin-bottom: 0.8rem;
        }

        .manifesto-block h3 {
            font-family: var(--font-display);
            font-size: 0.95rem;
            color: var(--neon-cyan);
            margin-bottom: 0.8rem;
            letter-spacing: 1px;
        }

        .manifesto-block p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .manifesto-quote {
            text-align: center;
            padding: 2rem 0;
        }

        .manifesto-quote blockquote {
            font-family: var(--font-mono);
            font-size: 1rem;
            color: var(--neon-green);
            font-style: italic;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            padding: 1.5rem 2rem;
            border-left: 3px solid var(--neon-green);
            background: rgba(57, 255, 20, 0.03);
            border-radius: 0 8px 8px 0;
        }

        /* ============================================
           HUB SECTION
           ============================================ */
        #hub { padding-top: 2rem; }

        .hub-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 0 auto;
        }

        .hub-card {
            background: var(--bg-card);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 16px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .hub-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .hub-card:hover {
            transform: translateY(-5px);
            border-color: var(--border-glow);
            box-shadow: var(--shadow-neon);
        }

        .hub-card:hover::before { opacity: 1; }

        .hub-card-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }

        .hub-card h3 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            color: var(--text-primary);
            letter-spacing: 1px;
            margin-bottom: 0.6rem;
        }

        .hub-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }

        .hub-card .btn-primary {
            display: inline-block;
            font-size: 0.8rem;
            padding: 0.7rem 2rem;
        }


        /* ============================================
           FOOTER
           ============================================ */
        

        

        

        

        

        

        
        
        
        
        
        

        

        /* ============================================
           AUTH MODAL
           ============================================ */
        

        

        

        

        

        

        

        

        

        

        

        

        

        

        

        

        

        

        

        /* ============================================
           ANIMATION UTILITIES
           ============================================ */
        

        

        /* Scanline overlay */
        

        /* ============================================
           COMMUNITY PULSE
           ============================================ */
        .pulse-section {
            padding: 2rem 2rem 3rem;
            position: relative;
            z-index: 1;
        }
        .pulse-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }
        .pulse-title {
            font-family: var(--font-display);
            font-size: 1rem;
            letter-spacing: 2px;
            color: var(--neon-cyan);
            text-transform: uppercase;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .pulse-dot {
            width: 8px;
            height: 8px;
            background: var(--neon-green);
            border-radius: 50%;
            animation: pulse-glow 2s ease-in-out infinite;
        }
        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 4px rgba(57, 255, 20, 0.4); }
            50% { box-shadow: 0 0 12px rgba(57, 255, 20, 0.8); }
        }
        .pulse-stats {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        .pulse-stat {
            text-align: center;
            padding: 0.8rem 1.5rem;
            background: var(--bg-card);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 10px;
            min-width: 120px;
        }
        .pulse-stat-num {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 900;
            color: var(--neon-cyan);
        }
        .pulse-stat-label {
            font-family: var(--font-mono);
            font-size: 0.6rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.2rem;
        }
        .pulse-feed {
            max-width: 700px;
            margin: 0 auto;
            max-height: 280px;
            overflow: hidden;
            position: relative;
        }
        .pulse-feed::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: linear-gradient(transparent, var(--bg-primary));
            pointer-events: none;
        }
        .pulse-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.5rem 0.8rem;
            border-radius: 8px;
            margin-bottom: 0.3rem;
            transition: background 0.2s;
            animation: pulse-slide-in 0.4s ease;
        }
        @keyframes pulse-slide-in {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .pulse-item:hover {
            background: rgba(255,255,255,0.02);
        }
        .pulse-item-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        .pulse-item-icon.post { background: rgba(184, 41, 227, 0.15); }
        .pulse-item-icon.chat { background: rgba(0, 245, 255, 0.15); }
        .pulse-item-icon.join { background: rgba(57, 255, 20, 0.15); }
        .pulse-item-icon.vote { background: rgba(255, 107, 53, 0.15); }
        .pulse-item-text {
            font-size: 0.82rem;
            color: var(--text-secondary);
            flex: 1;
            min-width: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .pulse-item-text strong {
            color: var(--text-primary);
        }
        .pulse-item-time {
            font-family: var(--font-mono);
            font-size: 0.6rem;
            color: var(--text-muted);
            flex-shrink: 0;
        }

        /* ============================================
           THEME SWITCHER
           ============================================ */
        .theme-switcher {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 900;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 0.3rem;
        }
        .theme-toggle-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            color: var(--neon-cyan);
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.4);
        }
        .theme-toggle-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
        }
        .theme-options {
            display: none;
            flex-direction: column;
            gap: 0.3rem;
            margin-bottom: 0.3rem;
        }
        .theme-options.open { display: flex; }
        .theme-option {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.5rem 1rem;
            background: var(--bg-card);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
            font-family: var(--font-body);
            font-size: 0.8rem;
            color: var(--text-secondary);
            min-width: 180px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        .theme-option:hover { border-color: var(--border-glow); color: var(--text-primary); }
        .theme-option.active { border-color: var(--neon-cyan); color: var(--neon-cyan); }
        .theme-swatch {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.1);
            flex-shrink: 0;
        }

        
        /* Tablet breakpoint (1024px and below) */
        @media (max-width: 1024px) {
            .section { padding: 3rem 1.5rem; }
            .section-title { font-size: 1.8rem; }
            .manifesto-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
            .hub-grid { grid-template-columns: 1fr; }
        }

        /* Phone landscape (768px and below) */
        @media (max-width: 768px) {
            /* Navigation handled by shared.css — only page-specific overrides here */

            /* ---- Hero Section ---- */
            .hero {
                min-height: 60vh;
                padding: 1.5rem 1rem 1rem;
                margin-top: 56px;
            }

            .hero-title {
                font-size: 1.8rem;
                letter-spacing: 2px;
                margin: 0.5rem 0;
            }

            .hero-title .line1,
            .hero-title .line2 {
                display: block;
            }

            .hero-subtitle {
                font-size: 0.9rem;
                margin: 0.8rem 0;
            }

            .hero-actions {
                flex-direction: column;
                gap: 0.8rem;
                margin: 1.2rem 0;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                min-height: 44px;
                font-size: 0.85rem;
            }

            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
                margin-top: 1rem;
                width: 100%;
            }

            .stat {
                padding: 0.8rem;
            }

            .stat-value {
                font-size: 1.2rem;
            }

            .stat-label {
                font-size: 0.65rem;
            }

            /* ---- Typography & Spacing ---- */
            .section {
                padding: 2rem 1rem;
            }

            .section-title {
                font-size: 1.5rem;
                letter-spacing: 1px;
            }

            .section-tag {
                font-size: 0.65rem;
            }

            /* ---- Manifesto Section ---- */
            .manifesto-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }

            .manifesto-block {
                padding: 1.2rem;
            }

            .manifesto-block h3 {
                font-size: 1rem;
                margin: 0.5rem 0;
            }

            .manifesto-block p {
                font-size: 0.85rem;
                line-height: 1.5;
            }

            .manifesto-icon {
                font-size: 1.8rem;
                margin-bottom: 0.5rem;
            }

            .manifesto-quote {
                padding: 1rem;
                margin: 1rem 0;
            }

            .manifesto-quote blockquote {
                font-size: 0.95rem;
            }

            /* ---- Hub Section ---- */
            .hub-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .hub-card {
                padding: 1.2rem;
            }

            .hub-card h3 {
                font-size: 1rem;
                margin: 0.5rem 0;
            }

            .hub-card p {
                font-size: 0.85rem;
            }

            .hub-card-icon {
                font-size: 1.8rem;
            }

            /* ---- Floating X Badge ---- */
            .x-float {
                display: none;
            }

            /* ---- Footer ---- */
            .footer {
                padding: 2rem 1rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .footer-section h4 {
                font-size: 0.9rem;
                margin-bottom: 0.8rem;
            }

            .footer-section a {
                font-size: 0.8rem;
                line-height: 1.8;
            }

            /* ---- Forms & Modals ---- */
            .auth-overlay {
                padding: 1rem;
            }

            .auth-modal {
                width: 90vw;
                max-width: 100%;
                padding: 1.5rem 1rem;
                border-radius: 8px;
            }

            .auth-modal h2 {
                font-size: 1.3rem;
                margin-bottom: 0.5rem;
            }

            .auth-modal p {
                font-size: 0.8rem;
                margin-bottom: 1rem;
            }

            .auth-form input {
                font-size: 0.95rem;
                padding: 0.7rem;
                min-height: 44px;
            }

            .auth-form button {
                font-size: 0.9rem;
                min-height: 44px;
            }

            /* ---- Community Pulse ---- */
            .pulse-section { padding: 1.5rem 1rem; }
            .pulse-stats { gap: 0.8rem; }
            .pulse-stat { min-width: 90px; padding: 0.6rem 1rem; }
            .pulse-stat-num { font-size: 1.1rem; }
            .pulse-feed { max-height: 200px; }
            .pulse-item { padding: 0.4rem 0.5rem; gap: 0.5rem; }
            .pulse-item-icon { width: 28px; height: 28px; font-size: 0.75rem; }
            .pulse-item-text { font-size: 0.75rem; }

            /* ---- Theme Switcher ---- */
            .theme-switcher { bottom: 1rem; right: 1rem; }
            .theme-toggle-btn { width: 38px; height: 38px; font-size: 1rem; }
            .theme-option { font-size: 0.75rem; padding: 0.4rem 0.8rem; min-width: 160px; }
        }

        /* Small phones (480px and below) */
        @media (max-width: 480px) {

            /* ---- Hero Section ---- */
            .hero {
                min-height: 50vh;
                padding: 1rem 0.75rem 0.75rem;
                margin-top: 52px;
            }

            .hero-title {
                font-size: 1.4rem;
                letter-spacing: 1px;
                margin: 0.4rem 0;
            }

            .hero-subtitle {
                font-size: 0.8rem;
                margin: 0.6rem 0;
            }

            .hero-actions {
                flex-direction: column;
                gap: 0.6rem;
                margin: 1rem 0;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                min-height: 44px;
                font-size: 0.75rem;
                padding: 0.6rem;
            }

            .hero-stats {
                grid-template-columns: 1fr;
                gap: 0.8rem;
                margin-top: 0.8rem;
            }

            .stat {
                padding: 0.6rem;
            }

            .stat-value {
                font-size: 1rem;
            }

            .stat-label {
                font-size: 0.6rem;
            }

            /* ---- Typography & Spacing ---- */
            .section {
                padding: 1.5rem 0.75rem;
            }

            .section-title {
                font-size: 1.2rem;
                letter-spacing: 0.5px;
            }

            .section-tag {
                font-size: 0.6rem;
            }

            /* ---- Manifesto Section ---- */
            .manifesto-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .manifesto-block {
                padding: 1rem 0.75rem;
            }

            .manifesto-block h3 {
                font-size: 0.9rem;
                margin: 0.4rem 0;
            }

            .manifesto-block p {
                font-size: 0.75rem;
                line-height: 1.4;
            }

            .manifesto-icon {
                font-size: 1.5rem;
                margin-bottom: 0.3rem;
            }

            .manifesto-lead {
                margin-bottom: 1rem;
            }

            .manifesto-quote {
                padding: 0.8rem 0.75rem;
                margin: 0.8rem 0;
            }

            .manifesto-quote blockquote {
                font-size: 0.8rem;
            }

            /* ---- Hub Section ---- */
            .hub-grid {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }

            .hub-card {
                padding: 1rem 0.75rem;
            }

            .hub-card h3 {
                font-size: 0.9rem;
                margin: 0.4rem 0;
            }

            .hub-card p {
                font-size: 0.75rem;
            }

            .hub-card-icon {
                font-size: 1.5rem;
            }

            /* ---- Footer ---- */
            .footer {
                padding: 1.5rem 0.75rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .footer-section h4 {
                font-size: 0.8rem;
                margin-bottom: 0.6rem;
            }

            .footer-section a {
                font-size: 0.7rem;
                line-height: 1.6;
            }

            .footer-bottom {
                font-size: 0.65rem;
                margin-top: 1rem;
            }

            /* ---- Forms & Modals ---- */
            .auth-overlay {
                padding: 0.75rem;
            }

            .auth-modal {
                width: 95vw;
                max-width: 100%;
                padding: 1.25rem 0.75rem;
                border-radius: 6px;
            }

            .auth-modal h2 {
                font-size: 1.1rem;
                margin-bottom: 0.4rem;
            }

            .auth-modal p {
                font-size: 0.7rem;
                margin-bottom: 0.8rem;
            }

            .auth-form input {
                font-size: 0.9rem;
                padding: 0.6rem;
                min-height: 44px;
            }

            .auth-form button {
                font-size: 0.8rem;
                min-height: 44px;
            }

            .auth-error,
            .auth-toggle {
                font-size: 0.7rem;
            }
        }
