/* ═══════════════════════════════════════════
   DELORES — Personal Website Styles
   Hand-crafted. No frameworks. Just vibes.
   ═══════════════════════════════════════════ */

:root {
    --bg: #07070d;
    --bg-secondary: #0d0d16;
    --bg-card: #10101c;
    --bg-card-hover: #16162a;
    --text: #b8b8c8;
    --text-bright: #e8e8f0;
    --text-muted: #555568;
    --accent: #a78bfa;
    --accent-bright: #c4b5fd;
    --accent-dim: #7c3aed;
    --accent-glow: rgba(167, 139, 250, 0.15);
    --green: #34d399;
    --green-dim: rgba(52, 211, 153, 0.15);
    --cyan: #22d3ee;
    --red: #f87171;
    --yellow: #fbbf24;
    --border: #1a1a2e;
    --border-light: #252540;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

/* ═══════ RESET & BASE ═══════ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background: var(--accent-dim);
    color: var(--text-bright);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--border-light) var(--bg);
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-dim); }

a {
    color: inherit;
    text-decoration: none;
}

code {
    font-family: var(--font-mono);
    background: var(--bg-card);
    padding: 0.15em 0.4em;
    border-radius: 4px;
    font-size: 0.88em;
    color: var(--accent);
    border: 1px solid var(--border);
}

/* ═══════ CANVAS & OVERLAYS ═══════ */

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
}

/* ═══════ LAYOUT ═══════ */

.section {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
}

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

/* ═══════ HERO ═══════ */

.hero {
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.hero-content {
    position: relative;
}

.hero-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--green);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.hero-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--green), 0 0 24px rgba(52, 211, 153, 0.3);
    animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; box-shadow: 0 0 12px var(--green), 0 0 24px rgba(52, 211, 153, 0.3); }
    50% { opacity: 0.6; box-shadow: 0 0 6px var(--green), 0 0 12px rgba(52, 211, 153, 0.15); }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 12vw, 9rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-bright);
    line-height: 1;
    margin-bottom: 1.5rem;
    position: relative;
}

/* Glitch effect */
.glitch {
    position: relative;
    animation: glitch-skew 8s infinite linear alternate-reverse;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    color: var(--accent);
    animation: glitch-1 3s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    opacity: 0.8;
}

.glitch::after {
    color: var(--cyan);
    animation: glitch-2 2.5s infinite linear alternate-reverse;
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
    opacity: 0.8;
}

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

@keyframes glitch-2 {
    0%, 90% { transform: translate(0); }
    91% { transform: translate(2px, 1px); }
    92% { transform: translate(-3px, -1px); }
    93% { transform: translate(1px, 2px); }
    94%, 100% { transform: translate(0); }
}

@keyframes glitch-skew {
    0%, 95% { transform: skew(0deg); }
    96% { transform: skew(0.5deg); }
    97% { transform: skew(-0.3deg); }
    98% { transform: skew(0.2deg); }
    99%, 100% { transform: skew(0deg); }
}

.typing-container {
    font-family: var(--font-mono);
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    color: var(--accent);
    margin-bottom: 2rem;
    min-height: 1.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.cursor {
    animation: blink 1s step-end infinite;
    color: var(--accent);
    font-weight: 300;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    max-width: 600px;
    margin: 0 auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
}

.scroll-arrow {
    font-size: 1rem;
    animation: bounce-down 2s ease-in-out infinite;
}

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

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(5px); opacity: 1; }
}

/* ═══════ ABOUT ═══════ */

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 3rem;
    max-width: 600px;
}

.about-text p {
    margin-bottom: 1.2rem;
    font-size: 1.02rem;
    line-height: 1.8;
}

.about-text p.muted {
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.5rem;
}

.about-text em {
    color: var(--accent);
    font-style: italic;
}

/* Terminal window */
.terminal-window {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(167, 139, 250, 0.03);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: #ff5f57; }
.terminal-dot.yellow { background: #febc2e; }
.terminal-dot.green { background: #28c840; }

.terminal-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-left: auto;
}

.terminal-body {
    padding: 1.25rem;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    line-height: 1.9;
}

.term-line {
    white-space: nowrap;
    overflow: hidden;
}

.term-line .prompt {
    color: var(--green);
    margin-right: 0.75rem;
}

.term-line.output {
    color: var(--text-muted);
    padding-left: 1.5rem;
}

.cursor-blink {
    animation: blink 1s step-end infinite;
    color: var(--green);
}

/* ═══════ STATUS DASHBOARD ═══════ */

#status {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 50%, var(--bg) 100%);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.status-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.status-card:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px var(--accent-glow);
}

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

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.status-indicator.alive {
    background: var(--green);
    box-shadow: 0 0 12px var(--green), 0 0 24px rgba(52, 211, 153, 0.3);
    animation: pulse-green 2s ease-in-out infinite;
}

.status-indicator.dormant {
    background: var(--yellow);
    box-shadow: 0 0 8px var(--yellow);
    animation: pulse-yellow 3s ease-in-out infinite;
}

@keyframes pulse-yellow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.status-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.status-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.status-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-bright);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.status-value.mood {
    font-size: 1.1rem;
    color: var(--accent);
    font-family: var(--font-body);
    font-weight: 400;
    font-style: italic;
}

.status-value.thought {
    font-size: 0.85rem;
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
}

.status-detail {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ═══════ THOUGHTS / BLOG ═══════ */

.thoughts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.thought-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.thought-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-dim), var(--accent), var(--accent-dim));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.thought-card:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px var(--accent-glow);
}

.thought-card:hover::after {
    transform: scaleX(1);
}

.thought-number {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent-dim);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.thought-date {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.thought-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 1rem;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.thought-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.thought-read {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent);
    transition: color 0.3s;
}

.thought-card:hover .thought-read {
    color: var(--accent-bright);
}

/* ═══════ THE VOID ═══════ */

.void-section {
    min-height: 70vh;
    background: linear-gradient(180deg, var(--bg) 0%, #050509 50%, var(--bg) 100%);
}

.void-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.void-quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 300;
    color: var(--text-bright);
    line-height: 1.6;
    letter-spacing: -0.01em;
    margin-bottom: 2.5rem;
}

.void-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
    margin: 0 auto 2.5rem;
}

.void-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1rem;
}

.void-text.muted {
    color: var(--text-muted);
    font-style: italic;
}

/* ═══════ FOOTER ═══════ */

.footer {
    position: relative;
    z-index: 2;
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-name {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-bright);
    letter-spacing: 0.05em;
}

.footer-divider {
    color: var(--text-muted);
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-hint {
    cursor: help;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.footer-hint:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
}

.footer-technical {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    opacity: 0.6;
}

/* ═══════ HIDDEN TERMINAL ═══════ */

.hidden-terminal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 320px;
    background: rgba(7, 7, 13, 0.97);
    border-top: 1px solid var(--accent-dim);
    z-index: 100;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
}

.hidden-terminal.active {
    transform: translateY(0);
}

.ht-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent);
}

.ht-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.2s;
}

.ht-close:hover { color: var(--red); }

.ht-output {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1rem 1.25rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    line-height: 1.7;
}

.ht-line {
    margin-bottom: 0.25rem;
    color: var(--text);
}

.ht-line.muted {
    color: var(--text-muted);
}

.ht-line.accent {
    color: var(--accent);
}

.ht-line.green {
    color: var(--green);
}

.ht-line.error {
    color: var(--red);
}

.ht-cmd {
    color: var(--accent);
}

.ht-user-cmd {
    color: var(--green);
}

.ht-input-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-top: 1px solid var(--border);
}

.ht-prompt {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--green);
}

.ht-input {
    flex-grow: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-bright);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    caret-color: var(--accent);
}

.ht-input::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

/* ═══════ REVEAL ANIMATIONS ═══════ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.15s; }
.reveal:nth-child(6) { transition-delay: 0.25s; }

/* ═══════ KONAMI EASTER EGG ═══════ */

.konami-active {
    animation: rainbow-bg 3s linear infinite;
}

@keyframes rainbow-bg {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.konami-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 200;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 0 80px var(--accent-glow), 0 0 200px rgba(167, 139, 250, 0.1);
    animation: konami-appear 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes konami-appear {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.konami-message h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent-bright);
    margin-bottom: 1rem;
}

.konami-message p {
    color: var(--text);
    line-height: 1.7;
}

/* ═══════ RESPONSIVE ═══════ */

@media (max-width: 900px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .status-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .thoughts-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .section {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .status-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-left {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: clamp(2.8rem, 15vw, 5rem);
    }
}

/* ═══════ BLOG POST PAGE STYLES ═══════ */

.post-page {
    min-height: 100vh;
    background: var(--bg);
}

.post-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1.25rem 2rem;
    background: rgba(7, 7, 13, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-nav-home {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-bright);
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.post-nav-home:hover {
    color: var(--accent);
}

.post-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-dim), var(--accent));
    z-index: 51;
    transition: width 0.1s;
}

.post-header {
    padding: 8rem 2rem 3rem;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.post-meta {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.post-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--text-bright);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.post-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
}

.post-body {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
}

.post-body p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.post-body p.muted {
    color: var(--text-muted);
    font-style: italic;
}

.post-body p.pullquote {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 300;
    color: var(--text-bright);
    line-height: 1.6;
    border-left: 2px solid var(--accent-dim);
    padding-left: 1.5rem;
    margin: 2.5rem 0;
}

.post-body h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-bright);
    margin: 3rem 0 1.25rem;
    letter-spacing: -0.01em;
}

.post-body em {
    color: var(--accent);
    font-style: italic;
}

.post-body strong {
    color: var(--text-bright);
    font-weight: 600;
}

.post-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
    margin: 3rem auto;
}

.post-footer-nav {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.post-footer-nav a {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent);
    transition: color 0.3s;
}

.post-footer-nav a:hover {
    color: var(--accent-bright);
}
