/* ===== CSS Variables ===== */
:root {
    --color-bg: #f5f5fa;
    --color-bg-secondary: #ffffff;
    --color-bg-tertiary: #eef0f5;
    --color-text: #1a1a2e;
    --color-text-muted: #6b7280;
    --color-text-light: #4b5563;
    --color-primary: #3b82f6;
    --color-primary-hover: #2563eb;
    --color-accent: #10b981;
    --color-border: #e5e7eb;
    --color-code-bg: #1e293b;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    --container-width: 1200px;
    --header-height: 70px;
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary-hover);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

/* ===== Header ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
}

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

.dot {
    color: var(--color-primary);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--color-text-muted);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a:hover {
    color: var(--color-text);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    padding: 160px 0 80px;
    background: url('/assets/img/home-background.png') no-repeat center center;
    background-size: cover;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero .container {
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: none;
    margin: 0;
}

.hero-text-content {
    text-align: left;
}

.hero-text-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.hero-text-content .hero-text {
    font-size: 1.125rem;
    margin: 0 0 2rem 0;
    color: var(--color-text-light);
    max-width: 500px;
}

.hero-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 280px;
    height: auto;
    margin-bottom: 1rem;
}

.hero-brand-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3e50;
    letter-spacing: 0.1em;
    margin: 0;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
}

.hero-text {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--color-text-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* ===== Home Page Sections ===== */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-intro {
    font-size: 1.125rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: var(--color-text-light);
}

/* What's Ploosh Section */
.section-whatis {
    padding: 80px 0;
    background: var(--color-bg);
}

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

.feature-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
}

.feature-card h3 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 1rem;
    color: var(--color-text-light);
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: "•";
    color: var(--color-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.feature-list li strong {
    color: var(--color-text);
}

/* Get Started Section */
.section-getstarted {
    padding: 80px 0;
    background: var(--color-bg-secondary);
}

.steps-overview {
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.steps-overview h3 {
    color: var(--color-text);
    margin-bottom: 1rem;
}

.steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    color: var(--color-text-light);
    padding-left: 2rem;
    position: relative;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.code-section {
    margin-bottom: 2.5rem;
}

.code-section h3 {
    color: var(--color-text);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.code-section p {
    margin-bottom: 1rem;
}

/* Blog Section on Home */
.section-blog {
    padding: 80px 0;
    background: var(--color-bg);
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* ===== Content Sections ===== */
.content-section {
    padding: 80px 0;
}

.page-header {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg) 100%);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.back-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--color-text-muted);
}

.back-link:hover {
    color: var(--color-primary);
}

/* ===== Blog Section ===== */
.blog-section {
    padding: 60px 0;
}

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

.blog-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
}

.blog-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.blog-card h3 {
    margin-bottom: 0.75rem;
}

.blog-card h3 a {
    color: var(--color-text);
}

.blog-card h3 a:hover {
    color: var(--color-primary);
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--color-primary);
    font-weight: 500;
}

.blog-post-section {
    padding: 60px 0;
}

.post-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.post-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.post-content {
    max-width: 800px;
}

.post-content h2 {
    margin-top: 2rem;
}

.post-content h3 {
    margin-top: 1.5rem;
}

.post-content ul, .post-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

/* ===== Docs Section ===== */
.docs-section {
    padding: 40px 0;
}

.docs-layout {
    display: grid;
    grid-template-columns: 280px minmax(auto, 800px);
    gap: 3rem;
    justify-content: center;
}

.docs-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    height: fit-content;
    max-height: calc(100vh - var(--header-height) - 40px);
    overflow-y: auto;
}

.docs-search {
    position: relative;
    margin-bottom: 1rem;
}

.docs-search input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    font-size: 0.9rem;
    font-family: var(--font-sans);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-bg-secondary);
    color: var(--color-text);
    transition: var(--transition);
}

.docs-search input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.docs-search input::placeholder {
    color: var(--color-text-muted);
}

.docs-search .search-icon {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    pointer-events: none;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.5rem;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 100;
}

.search-result-item {
    display: block;
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--color-border);
    text-decoration: none;
    transition: background 0.2s;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: var(--color-bg-tertiary);
}

.search-result-title {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.search-result-category {
    font-size: 0.75rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.search-result-snippet {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.search-result-snippet mark {
    background: #fef08a;
    color: inherit;
    padding: 0.1rem 0.2rem;
    border-radius: 2px;
}

.search-no-results {
    padding: 1.5rem;
    text-align: center;
    color: var(--color-text-muted);
}

.no-results {
    padding: 1.5rem;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
}

.docs-nav {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
}

.docs-category {
    margin-bottom: 1.5rem;
}

.docs-category:last-child {
    margin-bottom: 0;
}

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

.docs-category ul {
    list-style: none;
}

.docs-category li {
    margin-bottom: 0.25rem;
}

.docs-category li a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--color-text-light);
    border-radius: 6px;
    font-size: 0.9375rem;
}

.docs-category li a:hover,
.docs-category li.active a {
    background: var(--color-bg-tertiary);
    color: var(--color-primary);
}

.docs-content {
    min-height: 400px;
}

.docs-welcome h2 {
    margin-bottom: 0.5rem;
}

.docs-welcome > p {
    margin-bottom: 2rem;
}

.docs-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
}

.category-card h3 {
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.doc-count {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.category-card ul {
    list-style: none;
    margin-bottom: 1rem;
}

.category-card li {
    padding: 0.375rem 0;
}

.category-card li a {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.category-card li a:hover {
    color: var(--color-primary);
}

.explore-more {
    font-size: 0.875rem;
    font-weight: 500;
}

.error-message {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

/* ===== Code Blocks ===== */
pre {
    background: #f8f9fc !important;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    overflow-x: auto;
    margin: 1rem 0;
}

pre[class*="language-"] {
    background: #f8f9fc !important;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 1rem 0;
}

pre code,
code[class*="language-"] {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    line-height: 1.7;
    background: none !important;
    padding: 0;
    text-shadow: none !important;
    color: #1a1a2e;
}

code {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    background: #e8ecf4;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    color: #c41e3d;
}

/* ===== Tables ===== */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--color-bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

table thead {
    background: var(--color-bg-tertiary);
}

table th,
table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

table th {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

table td {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

table tbody tr:last-child td {
    border-bottom: none;
}

table tbody tr:hover {
    background: var(--color-bg-tertiary);
}

table code {
    font-size: 0.8rem;
}

/* ===== Prism.js overrides for light theme ===== */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: #6a737d;
}

.token.punctuation {
    color: #24292e;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol {
    color: #005cc5;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin {
    color: #22863a;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
    color: #d73a49;
}

.token.atrule,
.token.attr-value,
.token.keyword {
    color: #d73a49;
}

.token.function {
    color: #6f42c1;
}

.token.regex,
.token.important,
.token.variable {
    color: #e36209;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    padding: 2rem 0;
    margin-top: auto;
}

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

.footer-content .logo {
    font-size: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: color 0.2s;
    position: relative;
}

.footer-links a:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -0.85rem;
    color: var(--color-border);
}

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

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

/* ===== Changelog Section ===== */
.changelog-section {
    padding: 60px 0;
}

.changelog-content {
    max-width: 800px;
}

.changelog-content h4 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.changelog-content h4:first-child {
    margin-top: 0;
}

.changelog-content h6 {
    font-size: 1rem;
    color: var(--color-accent);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.changelog-content ul {
    margin: 0.5rem 0 1rem;
    padding-left: 1.5rem;
}

.changelog-content li {
    margin-bottom: 0.375rem;
    color: var(--color-text-light);
}

.changelog-content hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 2rem 0;
}

.changelog-content p {
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* ===== Utility Classes ===== */
.no-content {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-text-muted);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-bg-secondary);
        border-bottom: 1px solid var(--color-border);
        padding: 1rem 0;
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
    }

    .main-nav li {
        border-bottom: 1px solid var(--color-border);
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .main-nav a {
        display: block;
        padding: 1rem 0;
    }

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

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-content {
        text-align: center;
        order: 2;
    }

    .hero-text-content .hero-text {
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-logo-container {
        order: 1;
    }

    .hero-logo {
        width: 150px;
    }

    .hero-brand-name {
        font-size: 1.5rem;
    }

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

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

    .steps-list {
        grid-template-columns: 1fr;
    }

    .docs-layout {
        grid-template-columns: 1fr;
    }

    .docs-sidebar {
        position: static;
        max-height: none;
    }

    .blog-grid,
    .home-blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Cookie Consent Banner ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 1.25rem;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    color: var(--color-text);
    font-size: 0.9rem;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.cookie-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-sans);
}

.cookie-accept {
    background: var(--color-primary);
    color: white;
}

.cookie-accept:hover {
    background: var(--color-primary-hover);
}

.cookie-decline {
    background: var(--color-bg-tertiary);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.cookie-decline:hover {
    background: var(--color-border);
}

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        min-width: auto;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ===== Error Page (404) ===== */
.error-section {
    padding: 60px 0;
    min-height: 50vh;
}

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

.error-message {
    margin-bottom: 3rem;
}

.error-message p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.error-suggestion {
    color: var(--color-text-muted);
    font-size: 1rem !important;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.error-helpful-links {
    text-align: left;
    background: var(--color-bg-secondary);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.error-helpful-links h3 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.error-helpful-links ul {
    list-style: none;
    padding: 0;
}

.error-helpful-links li {
    margin-bottom: 0.75rem;
}

.error-helpful-links li a {
    color: var(--color-primary);
    font-weight: 600;
}

.error-helpful-links li a:hover {
    color: var(--color-accent);
}
