@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');
:root {
    --bg: #0a0a0a;
    --fg: #ffffff;
    --accent: #444444;
    --accent-light: #666666;
    --border: #1a1a1a;
    --active-green: #00ff88;
    --transition-smooth: all 0.3s ease;
}

.theme-light {
    --bg: #f7f7f7;
    --fg: #111111;
    --accent: #dcdcdc;
    --accent-light: #555555;
    --border: #e6e6e6;
    --active-green: #0a7a45;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--fg);
    background-color: var(--bg);
    letter-spacing: -0.02em;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

/* Header & Navigation */
header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.theme-light header {
    background: rgba(255, 255, 255, 0.95);
}

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

.logo {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--fg);
    text-decoration: none;
    letter-spacing: -0.03em;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.logo-main {
    color: var(--fg);
    font-weight: 500;
}

.logo-accent {
    color: var(--accent-light);
    font-weight: 300;
}

.logo:hover .logo-main {
    color: var(--fg);
}

.logo:hover .logo-accent {
    color: var(--fg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--accent-light);
    font-weight: 400;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--fg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--fg);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.theme-toggle:hover {
    border-color: var(--accent-light);
    transform: translateY(-1px);
}

.theme-toggle i {
    font-size: 0.9rem;
}

.header-profile-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    opacity: 0.8;
    transition: var(--transition-smooth);
    filter: grayscale(0.2);
}

.header-profile-img:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero-content {
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 {
    font-weight: 300;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--fg);
    letter-spacing: -0.03em;
}

.highlight {
    font-weight: 500;
    position: relative;
}

.lead {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--accent-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 650px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 400;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    display: inline-block;
}

.btn-primary {
    background: var(--fg);
    color: var(--bg);
    border: 1px solid var(--fg);
}

.btn-primary:hover {
    background: transparent;
    color: var(--fg);
}

.btn-secondary {
    background: transparent;
    color: var(--fg);
    border: 1px solid var(--accent);
}

.btn-secondary:hover {
    border-color: var(--fg);
}

/* Tech Stack Section */
.tech-stack {
    padding: 6rem 0;
    background: var(--bg);
}

.tech-stack h2 {
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--fg);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.tech-card-inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tech-icon {
    font-size: 2rem;
    color: var(--accent-light);
}

.tech-card h3 {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--fg);
}

.tech-card p {
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--accent);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--bg);
}

.about-content h2 {
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--fg);
}

.about-content p {
    font-weight: 300;
    font-size: 1rem;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 800px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
}

.stat-number {
    font-weight: 300;
    font-size: 3rem;
    color: var(--fg);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    text-align: center;
}

.cta-section h2 {
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--fg);
}

.cta-section p {
    font-weight: 300;
    font-size: 1rem;
    color: var(--accent-light);
    margin-bottom: 2rem;
}

/* Status Dot (pulse animation) */
.status-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--active-green);
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 0.4;
        transform: scale(1);
    }
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 3rem;
}

.footer-section h3 {
    font-weight: 500;
    font-size: 1rem;
    color: var(--fg);
    margin-bottom: 1rem;
}

.footer-section p {
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--accent);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    text-decoration: none;
    color: var(--accent-light);
    font-weight: 300;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.footer-section ul li a:hover {
    color: var(--fg);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 3rem;
    padding-right: 3rem;
}

.footer-bottom p {
    font-weight: 300;
    font-size: 0.75rem;
    color: var(--accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .container {
        padding: 1.5rem;
    }

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

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

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }

    .footer-bottom {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .redirect-actions {
        flex-direction: column;
    }

    .approach-item {
        grid-template-columns: 40px 1fr;
        gap: 1rem;
    }

    .approach-number {
        font-size: 1.2rem;
    }
}

/* Page-specific styles */
.page-header {
    padding: 4rem 0 2rem;
    text-align: center;
}

.page-header h1 {
    font-weight: 300;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--fg);
}

.page-header p {
    font-weight: 300;
    font-size: 1.1rem;
    color: var(--accent-light);
}

/* Projects Page */
.projects-page {
    padding: 2rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.project-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.project-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.project-header h3,
.project-card h3 {
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--fg);
}

.project-description,
.project-card p {
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--accent-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-tech,
.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-tag,
.project-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--accent);
    font-weight: 300;
}

.no-projects {
    text-align: center;
    padding: 4rem 2rem;
}

.no-projects p {
    font-weight: 300;
    color: var(--accent-light);
}

.no-projects code {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.github-section {
    margin-top: 6rem;
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.github-section h2 {
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--fg);
}

.github-section p {
    font-weight: 300;
    color: var(--accent);
    margin-bottom: 2rem;
}

.github-chart {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 4px;
}

.github-section .btn {
    display: inline-block;
    margin-top: 1rem;
}

/* Content pages */
.content-section {
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.content-section h2 {
    font-weight: 500;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--fg);
}

.content-section p {
    font-weight: 300;
    font-size: 1rem;
    color: var(--accent-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-section ul {
    list-style: none;
    padding-left: 1.5rem;
}

.content-section ul li {
    font-weight: 300;
    font-size: 1rem;
    color: var(--accent-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    position: relative;
}

.content-section ul li::before {
    content: '•';
    position: absolute;
    left: -1rem;
    color: var(--accent);
}

/* Logo style for profile images */
.logo-img {
    width: 120px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 2rem;
    filter: grayscale(0.2);
    transition: var(--transition-smooth);
}

.logo-img:hover {
    transform: scale(1.05);
    filter: grayscale(0);
}

/* About Page */
.about-page {
    padding: 2rem 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    margin: 0 auto;
}

.about-main section {
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.about-intro h2,
.about-principles h2,
.about-background h2 {
    font-weight: 500;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--fg);
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--fg);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-intro p,
.about-background p {
    font-weight: 300;
    font-size: 1rem;
    color: var(--accent-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.principle-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.principle-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
}

.principle-card h3 {
    font-weight: 500;
    font-size: 1rem;
    color: var(--fg);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.principle-card h3 i {
    color: var(--accent-light);
    font-size: 1.2rem;
}

.principle-card p {
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--accent-light);
    line-height: 1.6;
}

.interest-list {
    list-style: none;
    padding-left: 0;
}

.interest-list li {
    font-weight: 300;
    font-size: 1rem;
    color: var(--accent-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.interest-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.interest-list strong {
    color: var(--fg);
    font-weight: 500;
}

/* Approach Section */
.about-approach h2 {
    font-weight: 500;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--fg);
}

.about-approach > p {
    font-weight: 300;
    font-size: 1rem;
    color: var(--accent-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.approach-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
}

.approach-number {
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--accent);
}

.approach-item h3 {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--fg);
    margin-bottom: 0.5rem;
}

.approach-item p {
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--accent-light);
    line-height: 1.6;
}

/* Sidebar */
.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
}

.sidebar-card h3 {
    font-weight: 500;
    font-size: 1rem;
    color: var(--fg);
    margin-bottom: 1rem;
}

.facts-list,
.learning-list,
.contact-list {
    list-style: none;
    padding: 0;
}

.facts-list li,
.learning-list li,
.contact-list li {
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--accent-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.facts-list strong,
.learning-list strong {
    color: var(--fg);
    font-weight: 500;
}

.contact-list a {
    color: var(--accent-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-list a:hover {
    color: var(--fg);
}

/* Now Page */
.now-page {
    padding: 2rem 0;
}

.now-content {
    max-width: 900px;
    margin: 0 auto;
}

.update-date {
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--accent);
}

.now-section {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border);
}

.now-section:last-child {
    border-bottom: none;
}

.now-icon {
    font-size: 2rem;
    color: var(--accent-light);
    display: flex;
    align-items: flex-start;
    padding-top: 0.5rem;
}

.now-text h2 {
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--fg);
}

.now-text p {
    font-weight: 300;
    font-size: 1rem;
    color: var(--accent-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.now-list {
    list-style: none;
    padding-left: 0;
}

.now-list li {
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--accent-light);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.now-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.now-list strong {
    color: var(--fg);
    font-weight: 500;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.tool-badge {
    font-weight: 300;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--accent-light);
    text-align: center;
    transition: var(--transition-smooth);
}

.tool-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    color: var(--fg);
}

.now-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.now-footer p {
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--accent-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.now-footer a {
    color: var(--fg);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    transition: var(--transition-smooth);
}

.now-footer a:hover {
    border-bottom-color: var(--fg);
}

.now-footer .meta {
    font-size: 0.9rem;
    color: var(--accent);
}

@media (max-width: 768px) {
    .now-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .now-icon {
        padding-top: 0;
    }

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

/* Redirect Page */
.redirect-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.redirect-content {
    text-align: center;
    max-width: 600px;
    animation: fadeIn 1.2s ease-out;
}

.redirect-icon {
    font-size: 4rem;
    color: var(--accent-light);
    margin-bottom: 2rem;
}

.redirect-content h1 {
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--fg);
}

.redirect-description {
    font-weight: 300;
    font-size: 1rem;
    color: var(--accent-light);
    margin-bottom: 2rem;
}

.redirect-url {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: 2rem;
}

.redirect-url i {
    color: var(--accent);
    font-size: 0.9rem;
}

.redirect-url a {
    color: var(--fg);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
}

.redirect-timer {
    margin: 3rem 0;
}

.timer-circle {
    width: 80px;
    height: 80px;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.03);
}

.timer-circle span {
    font-size: 2rem;
    font-weight: 300;
    color: var(--fg);
}

.redirect-timer p {
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--accent-light);
}

.redirect-timer strong {
    color: var(--fg);
    font-weight: 500;
}

.redirect-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.redirect-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.redirect-actions .btn i {
    font-size: 0.85rem;
}

/* Media Page */
.media-page {
    padding: 2rem 0;
}

.media-header {
    text-align: center;
    padding: 4rem 0;
}

.media-header h1 {
    font-weight: 300;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--fg);
}

.media-subtitle {
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.asset-section {
    margin-bottom: 4rem;
}

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

.label-number {
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--accent);
}

.section-label h2 {
    font-weight: 500;
    font-size: 1.8rem;
    color: var(--fg);
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.color-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.color-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.color-preview {
    width: 100%;
    height: 120px;
}

.color-info {
    padding: 1.5rem;
}

.color-info h3 {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--fg);
    margin-bottom: 0.75rem;
}

.color-codes {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.color-codes code {
    font-family: 'Inter', monospace;
    font-size: 0.85rem;
    color: var(--accent-light);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.color-usage {
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--accent);
}

/* Error/Status Pages */
.error-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.error-container {
    animation: fadeIn 1.2s ease-out;
}

.error-code {
    font-weight: 300;
    font-size: 1.25rem;
    color: var(--fg);
    margin-bottom: 0.5rem;
}

.error-message {
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
