        /* --- VISUAL LANGUAGE SYSTEM SYSTEM ARCHITECTURE --- */
        :root {
            --fresh-green: #08CB00;
            --warm-coral: #FF714B;
            --paper-bg: #acffdb;
            --white-paper: #96ff40;
            --ink-black: #4a2c67;
            --muted-ink: #411e39;
            
            --font-journal-head: 'Cinzel', serif;
            --font-journal-deco: 'Cinzel Decorative', serif;
            --font-journal-prose: 'Montserrat', sans-serif;
            
            --transition-slow: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
            --transition-medium: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            --transition-fast: all 0.25s ease;
        }

        /* --- BASIC SYSTEM RESETS --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html, body {
            background-color: var(--paper-bg);
            color: var(--ink-black);
            font-family: var(--font-journal-prose);
            font-size: 16px;
            overflow-x: hidden;
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
        }

        /* --- TYPOGRAPHY PATTERNS --- */
        h1, h2, h3, h4 {
            font-family: var(--font-journal-head);
            font-weight: 700;
            letter-spacing: 0.08em;
            line-height: 1.2;
            text-transform: uppercase;
        }

        p {
            font-weight: 300;
            font-size: 1.1rem;
            line-height: 1.9;
            letter-spacing: 0.02em;
            color: var(--muted-ink);
        }

        .elegant-quote {
            font-family: var(--font-journal-head);
            font-size: 2rem;
            font-style: italic;
            font-weight: 400;
            line-height: 1.5;
            letter-spacing: 0.05em;
            text-transform: none;
            color: var(--ink-black);
        }

        /* --- PLATFORM SPA LAYER SYSTEM --- */
        .journal-view-layer {
            display: none;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .journal-view-layer.active-layer {
            display: block;
            opacity: 1;
        }

        /* --- HEADER NAVIGATION DESIGN PROFILE --- */
        .journal-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 90px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 4rem;
            z-index: 1000;
            transition: var(--transition-medium);
            background-color: transparent;
        }

        .journal-header.scrolled-header {
            background-color: rgba(250, 249, 238, 0.95);
            border-bottom: 1px solid rgba(26, 26, 23, 0.08);
            height: 80px;
        }

        .header-logo-node {
            font-family: var(--font-journal-deco);
            font-weight: 700;
            font-size: 1.3rem;
            letter-spacing: 0.1em;
            cursor: pointer;
            color: var(--ink-black);
        }

        .header-nav-center {
            display: flex;
            gap: 3rem;
        }

        .journal-nav-link {
            font-family: var(--font-journal-head);
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            cursor: pointer;
            position: relative;
            padding: 0.5rem 0;
        }

        .journal-nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background-color: var(--warm-coral);
            transition: width 0.4s ease, left 0.4s ease;
        }

        .journal-nav-link:hover::after,
        .journal-nav-link.active-link::after {
            width: 100%;
            left: 0;
        }

        /* --- RESPONSIVE JOURNAL DRAWER SYSTEM --- */
        .hamburger-menu-trigger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            flex-direction: column;
            gap: 6px;
            z-index: 1100;
        }

        .hamburger-menu-trigger span {
            display: block;
            width: 28px;
            height: 2px;
            background-color: var(--ink-black);
            transition: var(--transition-fast);
        }

        .hamburger-menu-trigger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
        .hamburger-menu-trigger.active span:nth-child(2) { opacity: 0; }
        .hamburger-menu-trigger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

        .mobile-notebook-drawer {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background-color: var(--paper-bg);
            z-index: 1050;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2.5rem;
            transition: var(--transition-medium);
        }

        .mobile-notebook-drawer.open-drawer {
            right: 0;
        }

        /* ========================================================= */
        /* HOME PAGE FRAMEWORKS                                      */
        /* ========================================================= */
        
        /* CHAPTER ZERO HERO */
        .chapter-zero-canvas {
            width: 100vw;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            background-color: var(--paper-bg);
            position: relative;
        }

        .chapter-zero-canvas h1 {
            font-size: 4.5rem;
            font-weight: 900;
            letter-spacing: 0.05em;
            line-height: 1.1;
            margin-bottom: 2.5rem;
            max-width: 60rem;
        }

        /* SECTION 2: THE FIRST PAGE STICKY RUNWAY */
        .sticky-story-runway {
            display: flex;
            min-height: 100vh;
            position: relative;
            background-color: var(--white-paper);
        }

        .sticky-story-left {
            position: sticky;
            top: 0;
            width: 40%;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            border-right: 1px solid rgba(26, 26, 23, 0.05);
        }

        .sticky-story-left .chapter-num {
            font-family: var(--font-journal-head);
            font-size: 12rem;
            font-weight: 900;
            color: rgba(26, 26, 23, 0.04);
            position: relative;
        }

        .sticky-story-left .chapter-num::after {
            content: "CHAPTER ONE";
            position: absolute;
            bottom: 4rem;
            left: 50%;
            transform: translateX(-50%);
            font-size: 1rem;
            letter-spacing: 0.4em;
            color: var(--ink-black);
            font-weight: 400;
        }

        .scrolling-story-right {
            width: 60%;
            padding: 10rem 6rem;
        }

        .memoir-text-block {
            max-width: 32rem;
            margin-bottom: 8rem;
        }

        .memoir-uncover-image {
            width: 100%;
            height: 450px;
            object-fit: cover;
            margin: 4rem 0;
            border-radius: 2px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.02);
        }

        /* SECTION 3: LIFE MOSAIC */
        .mosaic-container {
            padding: 10rem 4rem;
            background-color: var(--white-paper);
            position: relative;
        }

        .mosaic-canvas {
            position: relative;
            height: 900px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .mosaic-fragment {
            position: absolute;
            background-color: var(--paper-bg);
            padding: 1.5rem;
            box-shadow: 0 15px 35px rgba(26, 26, 23, 0.04);
            border-radius: 1px;
            transition: var(--transition-medium);
        }

        .mosaic-fragment:hover {
            transform: translateY(-10px) scale(1.02);
            z-index: 10;
        }

        .mosaic-fragment img {
            display: block;
            object-fit: cover;
            margin-bottom: 1rem;
        }

        .mosaic-meta {
            font-family: var(--font-journal-head);
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            color: var(--warm-coral);
            margin-bottom: 0.5rem;
        }

        .mosaic-caption {
            font-size: 0.95rem;
            font-style: italic;
            line-height: 1.4;
        }

        /* SECTION 4: THE DAILY RITUALS HORIZONTAL WIPES */
        .rituals-wipe-container {
            position: relative;
            background-color: var(--fresh-green);
            overflow: hidden;
        }

        .ritual-horizontal-panel {
            width: 100vw;
            padding: 8rem 4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--paper-bg);
            border-bottom: 1px solid rgba(250, 249, 238, 0.2);
        }

        .ritual-horizontal-panel h2 {
            font-size: 5rem;
            color: var(--paper-bg);
            margin-bottom: 2rem;
        }

        .ritual-horizontal-panel p {
            color: var(--paper-bg);
            max-width: 35rem;
            opacity: 0.9;
        }

        /* SECTION 5: LETTERS TO MY FUTURE SELF */
        .letters-unfold-container {
            padding: 10rem 4rem;
            background-color: var(--paper-bg);
            text-align: center;
        }

        .letters-stack-rack {
            max-width: 800px;
            margin: 4rem auto 0 auto;
            text-align: left;
        }

        .unfolding-paper-node {
            background-color: var(--white-paper);
            border: 1px solid rgba(26, 26, 23, 0.05);
            margin-bottom: 2rem;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.01);
            transition: var(--transition-medium);
        }

        .paper-node-header {
            padding: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: var(--font-journal-head);
            font-size: 1.2rem;
            letter-spacing: 0.05em;
        }

        .paper-node-body {
            max-height: 0;
            overflow: hidden;
            padding: 0 2rem;
            transition: var(--transition-medium);
        }

        .unfolding-paper-node.expanded-node .paper-node-body {
            max-height: 500px;
            padding-bottom: 3rem;
        }

        /* SECTION 6: THE MOMENTS WALL */
        .moments-wall-orange {
            background-color: var(--warm-coral);
            padding: 8rem 2rem;
        }

        .moments-board-layout {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .moment-board-item {
            position: relative;
            overflow: hidden;
            height: 380px;
            background-color: var(--ink-black);
        }

        .moment-board-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-slow);
            opacity: 0.85;
        }

        .moment-board-item:hover img {
            transform: scale(1.05);
            opacity: 0.2;
        }

        .moment-hover-card {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            opacity: 0;
            transition: var(--transition-medium);
            color: var(--paper-bg);
            z-index: 2;
        }

        .moment-board-item:hover .moment-hover-card {
            opacity: 1;
        }

        .moment-hover-card h4 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: var(--paper-bg);
        }

        /* SECTION 7: WHAT CHANGED ME */
        .changed-me-stack {
            background-color: var(--paper-bg);
            padding: 6rem 0;
        }

        .changed-story-block {
            min-height: 70vh;
            max-width: 900px;
            margin: 0 auto 6rem auto;
            padding: 4rem;
            background-color: var(--white-paper);
            box-shadow: 0 10px 30px rgba(0,0,0,0.01);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .changed-story-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        /* SECTION 8: THE YEARBOOK */
        .yearbook-wrapper {
            background-color: var(--white-paper);
            padding: 10rem 4rem;
        }

        .yearbook-stack {
            max-width: 1000px;
            margin: 4rem auto 0 auto;
        }

        .year-row-node {
            border-bottom: 1px solid rgba(26, 26, 23, 0.1);
        }

        .year-row-trigger {
            padding: 2.5rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .year-row-trigger h3 {
            font-size: 4rem;
            font-weight: 300;
            letter-spacing: 0.05em;
            margin: 0;
            transition: var(--transition-fast);
        }

        .year-row-node:hover .year-row-trigger h3 {
            color: var(--warm-coral);
            padding-left: 1rem;
        }

        .year-row-content {
            max-height: 0;
            overflow: hidden;
            transition: var(--transition-medium);
        }

        .year-row-node.expanded-year .year-row-content {
            max-height: 400px;
            padding-bottom: 3rem;
        }

        /* SECTION 9: THE GREEN ROOM */
        .green-room-banner {
            background-color: var(--fresh-green);
            padding: 12rem 4rem;
            text-align: center;
            color: var(--paper-bg);
        }

        .green-room-banner h2 {
            font-size: 3.5rem;
            max-width: 50rem;
            margin: 0 auto;
            color: var(--paper-bg);
            line-height: 1.3;
        }

        /* SECTION 10: COMMUNITY LETTERS */
        .community-letters-box {
            background-color: var(--paper-bg);
            padding: 10rem 4rem;
        }

        .community-row-item {
            display: grid;
            grid-template-columns: 5fr 7fr;
            gap: 5rem;
            align-items: center;
            max-width: 1100px;
            margin: 0 auto 8rem auto;
        }

        .community-row-item.inverse-row {
            grid-template-columns: 7fr 5fr;
        }

        .community-row-item img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            box-shadow: 0 15px 35px rgba(0,0,0,0.02);
        }

        /* SECTION 11: MONTHLY REFLECTION INPUT SYSTEM */
        .reflection-signup-panel {
            background-color: #000;
            padding: 10rem 4rem;
            text-align: center;
            color: var(--paper-bg);
        }

        .reflection-signup-panel h2 {
            font-size: 3rem;
            color: #08CB00;
            margin-bottom: 3rem;
        }

        .elegant-underline-form {
            color: #000;
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .journal-underlined-input {
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(0, 0, 0, 0.4);
            padding: 1rem 0;
            font-family: var(--font-journal-prose);
            font-size: 1.1rem;
            color: #000;
            outline: none;
            transition: var(--transition-fast);
        }

        .journal-underlined-input::placeholder {
            color: rgba(0, 0, 0, 0.5);
        }

        .journal-underlined-input:focus {
            background-color: #000;
        }

        .journal-form-submit {
            background: transparent;
            border: none;
            font-family: var(--font-journal-head);
            font-size: 1rem;
            letter-spacing: 0.2em;
            color: #000;
            cursor: pointer;
            padding-top: 1rem;
            align-self: center;
            position: relative;
        }

        .journal-form-submit::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: #000;
            transition: var(--transition-fast);
        }

        .journal-form-submit:hover::after {
            transform: scaleX(0.6);
        }

        /* ========================================================= */
        /* JOURNAL PAGE - BOOKSHELF ARCHIVE CODE MAP                 */
        /* ========================================================= */
        .bookshelf-archive-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 6rem 4rem;
        }

        .bookshelf-matrix-rack {
            display: flex;
            height: 650px;
            gap: 1rem;
            margin-top: 4rem;
            align-items: stretch;
        }

        .vertical-journal-spine {
            flex: 1;
            background-color: var(--white-paper);
            border: 1px solid rgba(26, 26, 23, 0.08);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s ease;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        /* Vertically aligned text on closed status */
        .spine-title-vertical {
            position: absolute;
            top: 3rem;
            left: 50%;
            transform: translateX(-50%) rotate(90deg);
            transform-origin: top left;
            white-space: nowrap;
            font-family: var(--font-journal-head);
            font-size: 1.3rem;
            letter-spacing: 0.1em;
            color: var(--ink-black);
            transition: var(--transition-medium);
        }

        .spine-expanded-content {
            opacity: 0;
            padding: 4rem 3rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        /* Dynamic Hover Expand States */
        .vertical-journal-spine:hover {
            flex: 4;
            background-color: var(--paper-bg);
            border-color: var(--warm-coral);
        }

        .vertical-journal-spine:hover .spine-title-vertical {
            opacity: 0;
        }

        .vertical-journal-spine:hover .spine-expanded-content {
            opacity: 1;
            pointer-events: auto;
        }

        /* ========================================================= */
        /* STORIES PAGE - LONG FORM REVEALS                         */
        /* ========================================================= */
        .story-longform-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 6rem 2rem;
        }

        .story-chapter-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .story-chapter-header h1 {
            font-size: 4rem;
            margin-top: 1rem;
        }

        .editorial-hero-image {
            width: 100%;
            height: 550px;
            object-fit: cover;
            margin-bottom: 4rem;
        }

        /* ========================================================= */
        /* RITUALS PAGE - DAILY INTERACTIVE PLANNER                  */
        /* ========================================================= */
        .planner-viewport-layout {
            max-width: 1100px;
            margin: 0 auto;
            padding: 6rem 4rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
        }

        .interactive-checklist-card {
            background-color: var(--white-paper);
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.01);
            border-radius: 2px;
        }

        .checklist-row-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(26, 26, 23, 0.05);
            cursor: pointer;
        }

        .custom-journal-checkbox {
            width: 22px;
            height: 22px;
            border: 1px solid var(--ink-black);
            border-radius: 2px;
            position: relative;
            transition: var(--transition-fast);
        }

        .checklist-row-item.checked-row .custom-journal-checkbox {
            background-color: var(--fresh-green);
            border-color: var(--fresh-green);
        }

        .checklist-row-item.checked-row span {
            text-decoration: line-through;
            opacity: 0.5;
        }

        .tracker-progress-bar-canvas {
            width: 100%;
            height: 4px;
            background-color: rgba(26, 26, 23, 0.08);
            margin-top: 2rem;
            position: relative;
        }

        .tracker-progress-fill-line {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 33%;
            background-color: var(--fresh-green);
            transition: width 0.5s ease;
        }

        /* ========================================================= */
        /* REFLECTIONS PAGE - STACKED DIARY MODULES                  */
        /* ========================================================= */
        .stacked-diary-runway {
            max-width: 800px;
            margin: 0 auto;
            padding: 8rem 2rem;
            position: relative;
            height: 900px;
        }

        .rotated-diary-sheet {
            position: absolute;
            width: 100%;
            background-color: var(--white-paper);
            border: 1px solid rgba(26, 26, 23, 0.06);
            padding: 4rem;
            box-shadow: 0 15px 40px rgba(26, 26, 23, 0.03);
            transition: var(--transition-medium);
            cursor: pointer;
        }

        /* Rotational Matrix Offsets mapped sequentially via layout styles */
        .diary-offset-alpha { transform: rotate(-3deg); top: 20px; z-index: 3; }
        .diary-offset-beta { transform: rotate(2deg); top: 160px; z-index: 2; }
        .diary-offset-gamma { transform: rotate(-1.5deg); top: 300px; z-index: 1; }

        .rotated-diary-sheet:hover {
            transform: rotate(0deg) translateY(-15px);
            z-index: 10;
            border-color: var(--warm-coral);
            box-shadow: 0 25px 50px rgba(26,26,23,0.08);
        }

        /* ========================================================= */
        /* COMPLIANCE INFRASTRUCTURE MODAL OVERLAY                   */
        /* ========================================================= */
        .compliance-overlay-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(26, 26, 23, 0.4);
            backdrop-filter: blur(4px);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .compliance-modal-paper {
            background-color: var(--paper-bg);
            max-width: 750px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 4rem;
            border-radius: 2px;
            position: relative;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }

        .close-modal-trigger {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: none;
            border: none;
            font-family: var(--font-journal-head);
            font-size: 1rem;
            cursor: pointer;
            letter-spacing: 0.1em;
        }

        /* ========================================================= */
        /* PLATFORM BRAND FOOTER ARCHITECTURE                        */
        /* ========================================================= */
        .journal-brand-footer {
            background-color: var(--paper-bg);
            padding: 8rem 4rem 4rem 4rem;
            border-top: 1px solid rgba(26, 26, 23, 0.05);
        }

        .footer-logo-wrap {
            font-family: var(--font-journal-deco);
            font-size: 2.2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 4rem;
        }

        .footer-link-matrix {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-bottom: 5rem;
        }

        .footer-bottom-row {
            border-top: 1px solid var(--fresh-green);
            padding-top: 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: var(--muted-ink);
        }

        .footer-compliance-links a {
            color: var(--muted-ink);
            text-decoration: none;
            margin-right: 1.5rem;
            cursor: pointer;
            transition: var(--transition-fast);
        }

        .footer-compliance-links a:hover {
            color: var(--ink-black);
        }

        /* ========================================================= */
        /* GRAPHIC ADAPTABILITY SYSTEM RESPONSIVE LOGIC              */
        /* ========================================================= */
        @media(max-width: 1024px) {
            .journal-header { padding: 0 2rem; }
            .header-nav-center { display: none; }
            .hamburger-menu-trigger { display: flex; }
            .sticky-story-runway { flex-direction: column; }
            .sticky-story-left { width: 100%; height: auto; padding: 4rem 0; position: relative; }
            .scrolling-story-right { width: 100%; padding: 4rem 2rem; }
            .mosaic-canvas { height: auto; display: flex; flex-direction: column; gap: 3rem; }
            .mosaic-fragment { position: relative; top: 0 !important; left: 0 !important; transform: none !important; width: 100% !important; }
            .moments-board-layout { grid-template-columns: repeat(2, 1fr); }
            .changed-story-block { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
            .community-row-item, .community-row-item.inverse-row { grid-template-columns: 1fr; gap: 3rem; }
            .bookshelf-matrix-rack { flex-direction: column; height: auto; }
            .vertical-journal-spine { height: 120px; }
            .vertical-journal-spine:hover { height: 400px; flex: none; }
            .spine-title-vertical { transform: none; top: 3rem; left: 2rem; }
            .planner-viewport-layout { grid-template-columns: 1fr; gap: 3rem; }
            .stacked-diary-runway { height: auto; display: flex; flex-direction: column; gap: 2rem; }
            .rotated-diary-sheet { position: relative; transform: none !important; top: 0 !important; padding: 2rem; }
            .footer-link-matrix { flex-direction: column; align-items: center; gap: 1.5rem; }
        }
        .reflection-toggle-wrapper{ display:flex; justify-content:center; gap:1rem; margin-bottom:3rem; } .reflection-toggle-button{ 
            background:transparent; border:1px solid rgba(0,0,0,.15); padding:0.9rem 1.8rem; cursor:pointer; 
            letter-spacing:.12em; font-size:.8rem; transition:all .3s ease; } .active-toggle{ background:var(--ink-black); color:white; }
