
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -khtml-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        /* Allow text selection for content */
        p, h1, h2, h3, h4, h5, h6, .intro, .modal p, .about-right p, .footer-brand p {
            -webkit-user-select: text;
            -moz-user-select: text;
            -ms-user-select: text;
            user-select: text;
        }

        /* Remove blue highlight on tap/click */
        button, a, .gallery-item, .pink-kitty, .theme-toggle, .slider-nav, .slider-dot {
            -webkit-tap-highlight-color: transparent;
            outline: none;
        }

        button:focus, a:focus, .gallery-item:focus, .theme-toggle:focus {
            outline: none;
        }

        :root {
            --bg-primary: #fff5f7;
            --bg-secondary: #ffe4e9;
            --text-primary: #2d1b2e;
            --text-secondary: #6b4c5e;
            --accent: #ff69b4;
            --accent-light: #ffb3d9;
            --accent-dark: #d946a6;
            --border: rgba(255, 105, 180, 0.2);
            --shadow: rgba(255, 105, 180, 0.15);
            --grid-color: rgba(255, 105, 180, 0.05);
        }

        [data-theme="dark"] {
            --bg-primary: #1a0d1f;
            --bg-secondary: #2d1b2e;
            --text-primary: #ffd6e8;
            --text-secondary: #c490ab;
            --accent: #ff91d0;
            --accent-light: #ffb3e0;
            --accent-dark: #e64fb8;
            --border: rgba(255, 145, 208, 0.2);
            --shadow: rgba(255, 105, 180, 0.3);
            --grid-color: rgba(255, 145, 208, 0.08);
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            transition: background 0.4s ease, color 0.4s ease;
            position: relative;
        }

        /* Animated Grid Background */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(var(--grid-color) 1px, transparent 1px),
                linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
            z-index: 0;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .content-wrapper {
            position: relative;
            z-index: 1;
        }

        /* Pink Kitty Animation */
        .pink-kitty {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 80px;
            height: 80px;
            z-index: 9999;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .pink-kitty:hover {
            transform: scale(1.1);
        }

        .kitty-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* Kitty Body */
        .kitty-body {
            position: absolute;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ffb3d9 0%, #ff69b4 100%);
            border-radius: 50%;
            bottom: 0;
            left: 15px;
            animation: breathe 3s ease-in-out infinite;
        }

        /* Kitty Head */
        .kitty-head {
            position: absolute;
            width: 45px;
            height: 40px;
            background: linear-gradient(135deg, #ffcce5 0%, #ffb3d9 100%);
            border-radius: 50% 50% 45% 45%;
            bottom: 35px;
            left: 17px;
            animation: headMove 4s ease-in-out infinite;
        }

        /* Kitty Ears */
        .kitty-ear {
            position: absolute;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 15px solid #ffb3d9;
            top: -8px;
        }

        .kitty-ear.left {
            left: 5px;
            transform: rotate(-20deg);
        }

        .kitty-ear.right {
            right: 5px;
            transform: rotate(20deg);
        }

        /* Inner ears */
        .kitty-ear::after {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-bottom: 10px solid #ff69b4;
            left: -6px;
            top: 3px;
        }

        /* Kitty Eyes */
        .kitty-eyes {
            position: absolute;
            width: 100%;
            top: 15px;
            display: flex;
            justify-content: space-around;
            padding: 0 10px;
        }

        .kitty-eye {
            width: 8px;
            height: 12px;
            background: #2d1b2e;
            border-radius: 50%;
            position: relative;
            animation: blink 4s infinite;
        }

        .kitty-eye.sleeping {
            animation: sleeping 2s ease-in-out infinite;
        }

        .kitty-eye.awake {
            animation: lookAround 3s ease-in-out infinite;
        }

        /* Eye shine */
        .kitty-eye::before {
            content: '';
            position: absolute;
            width: 3px;
            height: 3px;
            background: white;
            border-radius: 50%;
            top: 2px;
            left: 2px;
        }

        /* Kitty Nose */
        .kitty-nose {
            position: absolute;
            width: 6px;
            height: 5px;
            background: #ff69b4;
            border-radius: 50%;
            top: 22px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Kitty Mouth - Default neutral */
        .kitty-mouth {
            position: absolute;
            width: 16px;
            height: 8px;
            top: 26px;
            left: 50%;
            transform: translateX(-50%);
        }

        .kitty-mouth::before,
        .kitty-mouth::after {
            content: '';
            position: absolute;
            width: 8px;
            height: 4px;
            border: 1px solid var(--text-secondary);
            border-top: none;
            border-radius: 0 0 8px 8px;
            top: 0;
        }

        .kitty-mouth::before { left: 0; }
        .kitty-mouth::after { right: 0; }

        /* Happy Smile */
        .kitty-container.happy .kitty-mouth::before,
        .kitty-container.happy .kitty-mouth::after {
            border-radius: 0 0 12px 12px;
            height: 6px;
            border-color: var(--accent);
            border-width: 2px;
        }

        .kitty-container.happy .kitty-eye {
            animation: happyEyes 0.5s ease-in-out;
        }

        /* Sad Expression */
        .kitty-container.sad .kitty-mouth::before,
        .kitty-container.sad .kitty-mouth::after {
            border-radius: 8px 8px 0 0;
            border-top: 1px solid var(--text-secondary);
            border-bottom: none;
            top: 2px;
            border-color: var(--accent-dark);
        }

        .kitty-container.sad .kitty-eye {
            height: 10px;
            animation: sadEyes 0.5s ease-in-out;
        }

        .kitty-container.sad .kitty-head {
            animation: sadBob 2s ease-in-out infinite;
        }

        /* Tear drops for sad */
        .kitty-tear {
            position: absolute;
            width: 4px;
            height: 6px;
            background: #87ceeb;
            border-radius: 50% 50% 50% 0;
            opacity: 0;
            top: 20px;
        }

        .kitty-tear.left { left: 12px; }
        .kitty-tear.right { right: 12px; }

        .kitty-container.sad .kitty-tear {
            animation: tear 2s ease-in-out infinite;
        }

        @keyframes happyEyes {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        @keyframes sadEyes {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(2px); }
        }

        @keyframes sadBob {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(5px); }
        }

        @keyframes tear {
            0% { opacity: 0; transform: translateY(0); }
            30% { opacity: 1; }
            100% { opacity: 0; transform: translateY(10px); }
        }

        /* Kitty Whiskers */
        .kitty-whisker {
            position: absolute;
            width: 15px;
            height: 1px;
            background: var(--text-secondary);
            top: 20px;
        }

        .kitty-whisker.left-1 { left: -10px; transform: rotate(-10deg); }
        .kitty-whisker.left-2 { left: -10px; top: 23px; }
        .kitty-whisker.right-1 { right: -10px; transform: rotate(10deg); }
        .kitty-whisker.right-2 { right: -10px; top: 23px; }

        /* Kitty Tail */
        .kitty-tail {
            position: absolute;
            width: 30px;
            height: 30px;
            border: 6px solid #ffb3d9;
            border-radius: 50%;
            border-right-color: transparent;
            border-top-color: transparent;
            bottom: 15px;
            right: -10px;
            transform: rotate(-45deg);
            animation: tailWag 2s ease-in-out infinite;
        }

        /* Kitty Paws */
        .kitty-paw {
            position: absolute;
            width: 12px;
            height: 15px;
            background: #ffb3d9;
            border-radius: 40% 40% 50% 50%;
            bottom: -3px;
        }

        .kitty-paw.left { left: 20px; }
        .kitty-paw.right { right: 20px; }

        /* Sleep/Wake States */
        .kitty-container.sleeping .kitty-eye {
            height: 2px;
            background: #2d1b2e;
        }

        .kitty-container.sleeping .kitty-head {
            animation: sleepBob 3s ease-in-out infinite;
        }

        /* Z's for sleeping */
        .sleep-z {
            position: absolute;
            font-size: 20px;
            color: var(--accent);
            opacity: 0;
            top: -20px;
            right: -10px;
            font-weight: bold;
            animation: floatZ 3s ease-in-out infinite;
        }

        /* Meow Speech Bubble */
        .meow-bubble {
            position: absolute;
            top: -80px;
            left: 50%;
            transform: translateX(-50%) scale(0);
            background: white;
            color: var(--accent);
            padding: 0.6rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 5px 20px var(--shadow);
            border: 2px solid var(--accent-light);
            z-index: 10;
            white-space: nowrap;
        }

        [data-theme="dark"] .meow-bubble {
            background: var(--bg-secondary);
            color: var(--accent-light);
        }

        /* Speech bubble tail */
        .meow-bubble::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 8px solid white;
        }

        [data-theme="dark"] .meow-bubble::after {
            border-top-color: var(--bg-secondary);
        }

        .kitty-container.meowing .meow-bubble {
            opacity: 1;
            transform: translateX(-50%) scale(1);
        }

        .kitty-container.meowing .kitty-mouth::before,
        .kitty-container.meowing .kitty-mouth::after {
            animation: meowMouth 0.3s ease-in-out infinite;
        }

        @keyframes meowMouth {
            0%, 100% { height: 4px; }
            50% { height: 8px; }
        }

        /* Animations */
        @keyframes breathe {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes headMove {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-5deg); }
            75% { transform: rotate(5deg); }
        }

        @keyframes sleepBob {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(3px); }
        }

        @keyframes tailWag {
            0%, 100% { transform: rotate(-45deg); }
            50% { transform: rotate(-30deg); }
        }

        @keyframes blink {
            0%, 90%, 100% { height: 12px; }
            95% { height: 2px; }
        }

        @keyframes sleeping {
            0%, 100% { height: 2px; }
        }

        @keyframes lookAround {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-2px); }
            75% { transform: translateX(2px); }
        }

        @keyframes floatZ {
            0% { opacity: 0; transform: translateY(0); }
            50% { opacity: 1; transform: translateY(-20px); }
            100% { opacity: 0; transform: translateY(-40px); }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 245, 247, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 1.2rem 5%;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
            transition: background 0.4s ease;
        }

        [data-theme="dark"] nav {
            background: rgba(26, 13, 31, 0.85);
        }

        nav .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 400;
            font-size: 0.9rem;
            letter-spacing: 0.3px;
            transition: color 0.3s;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        nav a:hover {
            color: var(--accent);
        }

        /* Theme Toggle */
        .theme-toggle {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 0.5rem 0.7rem;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1.2rem;
        }

        .theme-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 15px var(--shadow);
        }

        /* Sections */
        section {
            min-height: 100vh;
            padding: 8rem 5%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
        }

        /* Home Section */
        #home {
            flex-direction: column;
            text-align: center;
        }

        h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 5rem;
            font-weight: 400;
            margin-bottom: 1rem;
            letter-spacing: 1px;
            color: var(--text-primary);
            background: linear-gradient(135deg, var(--accent-dark), var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .tagline {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 300;
            font-style: italic;
            color: var(--accent);
            margin-bottom: 2rem;
        }

        .intro {
            max-width: 650px;
            font-size: 1.05rem;
            color: var(--text-secondary);
            line-height: 1.8;
            font-weight: 300;
        }

        /* Gallery Section */
        #gallery {
            flex-direction: column;
            align-items: flex-start;
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 400;
            margin-bottom: 4rem;
            color: var(--text-primary);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            width: 100%;
        }

        .gallery-item {
            position: relative;
            cursor: pointer;
            overflow: hidden;
            border-radius: 16px;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            transition: transform 0.4s, box-shadow 0.4s;
            aspect-ratio: 4/3;
        }

        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px var(--shadow);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s, opacity 0.3s;
            opacity: 0;
        }

        .gallery-item img.loaded {
            opacity: 1;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(255, 105, 180, 0.9), transparent);
            padding: 1.5rem;
            color: white;
            transform: translateY(100%);
            transition: transform 0.4s;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-overlay h3 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
            font-size: 1.5rem;
        }

        .loading-skeleton {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--bg-secondary) 25%, var(--accent-light) 50%, var(--bg-secondary) 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
            opacity: 0.3;
        }

        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            padding: 2rem;
            overflow-y: auto;
        }

        .modal-content {
            max-width: 1000px;
            margin: 2rem auto;
            background: var(--bg-primary);
            border-radius: 20px;
            padding: 3rem;
            position: relative;
            border: 2px solid var(--accent-light);
            box-shadow: 0 10px 50px var(--shadow);
        }

        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 2rem;
            cursor: pointer;
            color: var(--accent);
            background: none;
            border: none;
            z-index: 10;
            transition: transform 0.3s;
        }

        .modal-close:hover {
            transform: scale(1.2) rotate(90deg);
        }

        .modal-slider {
            position: relative;
            margin-bottom: 2rem;
            border-radius: 12px;
            overflow: hidden;
        }

        .modal-slider-track {
            display: flex;
            transition: transform 0.4s ease;
        }

        .modal-slide {
            min-width: 100%;
            aspect-ratio: 16/10;
        }

        .modal-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--accent);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .slider-nav:hover {
            background: var(--accent-dark);
            transform: translateY(-50%) scale(1.1);
        }

        .slider-nav.prev { left: 1rem; }
        .slider-nav.next { right: 1rem; }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .slider-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--border);
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background: var(--accent);
            width: 24px;
            border-radius: 4px;
        }

        .modal h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
            font-weight: 400;
        }

        .modal h3 {
            font-size: 1.1rem;
            color: var(--accent);
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .modal p {
            color: var(--text-secondary);
            line-height: 1.9;
            font-weight: 300;
        }

        /* About Section */
        #about .container {
            max-width: 1200px;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: start;
        }

        .about-left h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.5rem;
            font-weight: 400;
            margin-bottom: 2rem;
            line-height: 1.2;
            background: linear-gradient(135deg, var(--accent-dark), var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-left .subtitle {
            font-size: 1.2rem;
            color: var(--accent);
            margin-bottom: 3rem;
            font-weight: 300;
        }

        .about-right p {
            font-size: 1.05rem;
            color: var(--text-secondary);
            line-height: 1.9;
            margin-bottom: 1.5rem;
            text-align: left;
            font-weight: 300;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            border-radius: 12px;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            transition: transform 0.3s;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px var(--shadow);
        }

        .stat-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            color: var(--accent);
            font-weight: 500;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-top: 0.5rem;
        }

        /* Footer */
        footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border);
            padding: 4rem 5% 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 400;
            color: var(--accent);
        }

        .footer-brand p {
            color: var(--text-secondary);
            line-height: 1.8;
            font-weight: 300;
        }

        .footer-section h4 {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 300;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-primary);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px var(--shadow);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 968px) {
            nav ul {
                gap: 1.5rem;
            }

            h1 {
                font-size: 3.5rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-stats {
                grid-template-columns: 1fr;
            }

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

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .pink-kitty {
                width: 60px;
                height: 60px;
                bottom: 15px;
                right: 15px;
            }
        }

        @media (max-width: 640px) {
            section {
                padding: 6rem 5%;
            }

            h1 {
                font-size: 2.5rem;
            }

            .tagline {
                font-size: 1.3rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .modal-content {
                padding: 2rem 1.5rem;
            }

            nav ul {
                gap: 1rem;
            }

            nav a {
                font-size: 0.85rem;
            }

            .gallery-grid {
                gap: 1.5rem;
            }

            .about-left h2 {
                font-size: 2.5rem;
            }
        }
