/* =============================================
   uyanqi710 Personal Blog - Premium Hacker Style
   ============================================= */

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

:root {
    --bg-primary: #050508;
    --bg-secondary: #0a0a0f;
    --bg-card: #0f0f15;
    --bg-card-hover: #151520;
    --text-primary: #e4e4e7;
    --text-secondary: #71717a;
    --text-muted: #52525b;
    --accent-primary: #22d3ee;
    --accent-secondary: #a855f7;
    --accent-success: #22c55e;
    --accent-warning: #f59e0b;
    --accent-pink: #ec4899;
    --border-color: #27272a;
    --border-glow: rgba(34, 211, 238, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Fira Code', -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

/* =============================================
   Cursor Effect System v5.0 - Clean & Elegant
   ============================================= */

@media (hover: hover) and (pointer: fine) {
    body, a, button, .btn, input, textarea, select {
        cursor: none !important;
    }
}

.cursor-dot {
    position: fixed;
    width: 16px;
    height: 16px;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cursor-dot::before {
    content: '👻';
    font-size: 14px;
    filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.8)) drop-shadow(0 0 12px rgba(168, 85, 247, 0.4));
    animation: ghostFloat 2s ease-in-out infinite;
    line-height: 1;
}

@keyframes ghostFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    25% { transform: translateY(-3px) rotate(0deg); }
    50% { transform: translateY(0) rotate(5deg); }
    75% { transform: translateY(-2px) rotate(0deg); }
}

.cursor-dot.hovering::before {
    filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.9)) drop-shadow(0 0 20px rgba(34, 211, 238, 0.5));
    animation: ghostExcited 0.5s ease-in-out infinite;
}

@keyframes ghostExcited {
    0%, 100% { transform: scale(1) rotate(-5deg); }
    50% { transform: scale(1.15) rotate(5deg); }
}

.cursor-dot.clicking::before {
    transform: scale(0.8);
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(34, 211, 238, 0.5);
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.25s, height 0.25s, border-color 0.25s;
    mix-blend-mode: screen;
}

.cursor-ring.hovering {
    width: 60px;
    height: 60px;
    border-color: rgba(168, 85, 247, 0.7);
}

.cursor-ring.clicking { width: 25px; height: 25px; }

.cursor-glow {
    position: fixed;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.12) 0%, rgba(168, 85, 247, 0.06) 40%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    filter: blur(15px);
    transition: width 0.4s, height 0.4s;
}

.cursor-glow.hovering { width: 250px; height: 250px; }

.cursor-trail {
    position: fixed;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.6);
    pointer-events: none;
    z-index: 9996;
    transform: translate(-50%, -50%);
}

.cursor-sparkle {
    position: fixed;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.9) 0%, transparent 70%);
    pointer-events: none;
    z-index: 10002;
    transform: translate(-50%, -50%);
    animation: sparkleFade 0.4s ease-out forwards;
}

@keyframes sparkleFade {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(2); }
}

.cursor-ripple {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(34, 211, 238, 0.7);
    pointer-events: none;
    z-index: 10003;
    transform: translate(-50%, -50%);
    animation: rippleExpand 0.8s ease-out forwards;
}

@keyframes rippleExpand {
    0% { width: 10px; height: 10px; opacity: 1; }
    100% { width: 100px; height: 100px; opacity: 0; }
}

.cursor-burst-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.8);
    pointer-events: none;
    z-index: 10004;
    transform: translate(-50%, -50%);
    animation: burstOut 0.7s ease-out forwards;
}

@keyframes burstOut {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(calc(-50% + var(--end-x)), calc(-50% + var(--end-y))) scale(0); }
}

/* Animated Background */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -3;
}

.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    z-index: -2;
    animation: float 20s ease-in-out infinite;
}

.bg-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-primary);
    border-radius: 50%;
}

.bg-glow::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-secondary);
    border-radius: 50%;
    transform: translate(200px, 200px);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(100px, 50px); }
    50% { transform: translate(50px, 100px); }
    75% { transform: translate(-50px, 50px); }
}

#particles {
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 5, 8, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(39, 39, 42, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.875rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s;
}

.logo:hover { transform: scale(1.02); }

.logo-icon {
    color: var(--accent-primary);
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.5));
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 0.25rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8125rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.625rem;
    color: var(--accent-primary);
    opacity: 0.5;
}

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

.nav-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    font-size: 0.6875rem;
    color: var(--accent-success);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-success);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px var(--accent-success);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--bg-primary);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 2rem 4rem;
    gap: 4rem;
}

.hero-left {
    flex: 1;
    max-width: 560px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.eyebrow-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), transparent);
}

.hero-eyebrow span {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.title-name {
    display: flex;
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
}

.name-char {
    display: inline-block;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: charFloat 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

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

.hero-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    min-height: 2em;
}

.typed-text { color: var(--accent-primary); }

.cursor {
    color: var(--accent-primary);
    animation: blink 1s infinite;
}

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

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 211, 238, 0.06);
    border: 1px solid rgba(34, 211, 238, 0.15);
    border-radius: 8px;
    font-size: 0.8125rem;
    color: var(--accent-primary);
    transition: all 0.3s;
}

.hero-tag:hover {
    background: rgba(34, 211, 238, 0.12);
    border-color: rgba(34, 211, 238, 0.3);
    transform: translateY(-2px);
}

.hero-tag svg {
    opacity: 0.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--bg-primary);
    border: none;
    box-shadow: 0 4px 20px rgba(34, 211, 238, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(34, 211, 238, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(34, 211, 238, 0.05);
}

/* Hero Right - Card Stack */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-stack {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    overflow: hidden;
    transition: all 0.3s;
}

.hero-card:hover {
    border-color: var(--accent-primary);
    transform: translateX(-5px);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 3px;
    opacity: 0.6;
}

.hero-card:hover .card-glow { opacity: 1; }

.card-content { padding-left: 0.75rem; }

.card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.card-label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.card-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.card-progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.card-progress-bar {
    height: 100%;
    width: var(--w);
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 3px;
    transition: width 1s ease-out;
}

/* Hero Terminal */
.hero-terminal {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.hero-terminal .terminal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-color);
}

.terminal-dots {
    display: flex;
    gap: 0.375rem;
}

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

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

.terminal-title {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

.hero-terminal .terminal-body {
    padding: 1rem;
    font-size: 0.8125rem;
}

.term-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.375rem;
}

.prompt {
    color: var(--accent-primary);
    font-weight: 600;
}

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

.neofetch {
    display: flex;
    gap: 1rem;
    margin: 0.75rem 0;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(39, 39, 42, 0.3);
}

.ascii-art {
    color: var(--accent-primary);
    font-size: 0.625rem;
    line-height: 1.3;
    margin: 0;
}

.sys-info { flex: 1; }

.sys-info p {
    margin-bottom: 0.125rem;
    font-size: 0.75rem;
    display: flex;
    gap: 0.25rem;
}

.sys-info .key {
    color: var(--accent-secondary);
    min-width: 50px;
}

.sys-info .val {
    color: var(--text-secondary);
}

.cursor-blink {
    animation: blink 1s infinite;
    color: var(--accent-primary);
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.section-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--accent-primary);
    opacity: 0.5;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border-color), transparent);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.about-intro {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--accent-primary);
    font-weight: 600;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.skill-category h4 {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.4rem 0.8rem;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--accent-primary);
    transition: all 0.3s;
}

.tag:hover {
    background: rgba(34, 211, 238, 0.2);
    border-color: var(--accent-primary);
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: var(--accent-primary);
    transform: translateX(10px);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

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

.card-header h4 {
    font-size: 1rem;
    color: var(--text-primary);
}

.info-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Articles Section */
.articles-section {
    background: transparent;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.article-card:hover {
    border-color: var(--accent-secondary);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.1);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 1.5rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.article-content h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.article-card:hover h3 {
    color: var(--accent-secondary);
}

.article-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.article-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--accent-primary);
    text-decoration: none;
    transition: all 0.3s;
}

.article-link:hover {
    gap: 0.75rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s;
}

.contact-link:hover {
    border-color: var(--accent-primary);
    background: rgba(34, 211, 238, 0.1);
}

.contact-link .link-icon {
    font-size: 1.5rem;
}

.contact-link .link-text {
    color: var(--accent-primary);
}

.availability {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--accent-success);
}

.availability-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.terminal-window.small {
    max-width: 100%;
}

.terminal-body .output {
    color: var(--text-secondary);
    margin-left: 1.5rem;
}

.terminal-body .success {
    color: var(--accent-success);
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

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

.footer-icp a {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 10rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav-status {
        display: none;
    }
    
    .title-name {
        font-size: 2.5rem;
    }
    
    .terminal-window {
        max-width: 100%;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

/* Selection */
::selection {
    background: var(--accent-primary);
    color: var(--bg-primary);
}
