:root {
    --primary: #00d4ff;
    --primary-dark: #00a8cc;
    --accent-gold: #f5c518;
    --bg-dark: #080c12;
    --bg-card: #0f1520;
    --text: #f0f6fc;
    --text-muted: #8b949e;
    --border: #1e2d3d;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg-dark); color: var(--text); line-height: 1.6; }

.navbar { position: fixed; top: 0; width: 100%; padding: 1rem 2rem; background: rgba(13,17,23,0.9); backdrop-filter: blur(10px); z-index: 100; border-bottom: 1px solid var(--border); }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.5rem; font-size: 1.5rem; font-weight: 700; }
.logo-icon { height: 32px; width: auto; }
.footer .logo-icon { height: 24px; }
.logo-icon { font-size: 1.8rem; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

.btn-primary { background: var(--primary); color: #080c12; padding: 0.6rem 1.2rem; border-radius: 6px; text-decoration: none; font-weight: 700; transition: all 0.2s; box-shadow: 0 0 16px rgba(0,212,255,0.35); }
.btn-primary:hover { background: var(--primary-dark); color: #080c12; box-shadow: 0 0 28px rgba(0,212,255,0.55); }
.btn-secondary { border: 1px solid rgba(0,212,255,0.35); color: var(--text); padding: 0.6rem 1.2rem; border-radius: 6px; text-decoration: none; font-weight: 500; transition: all 0.2s; backdrop-filter: blur(4px); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
.btn-large { padding: 1rem 2rem; font-size: 1.1rem; }

/* Hero wrapper — full-width background */
.hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8, 12, 18, 0.82) 0%,
        rgba(0, 20, 35, 0.70) 40%,
        rgba(0, 30, 50, 0.55) 70%,
        rgba(8, 12, 18, 0.80) 100%
    );
    z-index: 1;
}
.hero-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    z-index: 2;
}

.hero { position: relative; z-index: 3; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero--centered { text-align: center; }
.hero--centered .hero-content { max-width: 800px; }
.hero--centered .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
.hero--centered .hero-buttons { justify-content: center; }
.hero-content { flex: 1; }
.hero h1 { font-size: 4rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; text-shadow: 0 2px 20px rgba(0,0,0,0.8); }
.highlight { color: var(--primary); text-shadow: 0 0 30px rgba(0,212,255,0.5); }
.hero-subtitle { font-size: 1.25rem; color: rgba(240,246,252,0.85); margin-bottom: 2rem; max-width: 500px; text-shadow: 0 1px 8px rgba(0,0,0,0.7); }
.hero-buttons { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.hero-note { color: rgba(240,246,252,0.65); font-size: 0.9rem; }

.features { padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; }
.features h2 { text-align: center; font-size: 2.5rem; margin-bottom: 0.5rem; }
.features-hint { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }

/* Interactive 3×3 feature grid */
.features-grid {
    display: grid;
    grid-template-columns: var(--fc0,1fr) var(--fc1,1fr) var(--fc2,1fr);
    grid-template-rows: var(--fr0,1fr) var(--fr1,1fr) var(--fr2,1fr);
    gap: 1rem;
    height: 640px;
    transition: grid-template-columns 0.45s cubic-bezier(.4,0,.2,1),
                grid-template-rows    0.45s cubic-bezier(.4,0,.2,1);
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: border-color 0.3s, padding 0.45s cubic-bezier(.4,0,.2,1);
    min-height: 0;
    min-width: 0;
}
.feature-card:hover { border-color: var(--primary); }
.feature-card.active { border-color: var(--primary); padding: 0; }

/* Normal content inside a card */
.feature-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: opacity 0.3s ease;
}
.feature-card.active .feature-card-inner { opacity: 0; pointer-events: none; }

.feature-icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.feature-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }

/* Shrunk cards when another is active */
.features-grid.has-active .feature-card:not(.active) { padding: 0.6rem 0.8rem; }
.features-grid.has-active .feature-card:not(.active) .feature-icon { font-size: 1.3rem; margin-bottom: 0.2rem; }
.features-grid.has-active .feature-card:not(.active) h3 { font-size: 0.75rem; line-height: 1.2; }
.features-grid.has-active .feature-card:not(.active) .feature-desc { display: none; }

/* Preview (shown when active) */
.feature-card-preview {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.feature-card.active .feature-card-preview { opacity: 1; pointer-events: auto; }

.feature-card-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
.feature-preview-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 0.7rem 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.82));
    border-radius: 0 0 12px 12px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing { padding: 6rem 2rem; background: var(--bg-card); }
.pricing h2 { text-align: center; font-size: 2.5rem; margin-bottom: 0.5rem; }
.pricing-subtitle { text-align: center; color: var(--text-muted); font-size: 1.1rem; margin-bottom: 3rem; }
.pricing-note { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-top: 2rem; font-style: italic; }
.pricing-cards { display: flex; justify-content: center; gap: 2rem; flex-wrap: nowrap; max-width: 1400px; margin: 0 auto; }
.pricing-card { background: var(--bg-dark); border: 1px solid var(--border); border-radius: 12px; padding: 2.5rem; width: 350px; min-width: 320px; text-align: center; position: relative; transition: all 0.3s; flex-shrink: 0; }
.pricing-card:hover { transform: translateY(-4px); border-color: var(--text-muted); }
.pricing-card.featured { border-color: var(--primary); transform: scale(1.05); box-shadow: 0 8px 30px rgba(0, 212, 255, 0.2); }
.pricing-card.featured:hover { transform: scale(1.05) translateY(-4px); }
.pricing-card.disabled { opacity: 0.5; filter: grayscale(0.7); pointer-events: none; }
.pricing-card.disabled:hover { transform: none; border-color: var(--border); }
.badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); padding: 0.4rem 1.2rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600; }
.pricing-card h3 { font-size: 1.8rem; margin-bottom: 1.5rem; }
.price-options { margin-bottom: 2rem; }
.price-option { margin-bottom: 1rem; }
.price-option.centered { margin: 0 auto; }
.price { font-size: 3rem; font-weight: 800; color: var(--primary); }
.price .period { font-size: 1.2rem; color: var(--text-muted); font-weight: 400; }
.price-desc { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.3rem; }
.price-divider { color: var(--text-muted); margin: 0.8rem 0; font-size: 0.9rem; }
.features-list { list-style: none; margin-bottom: 2rem; text-align: left; }
.features-list li { padding: 0.2rem 0; color: var(--text-muted); line-height: 1.3; }
.features-list li strong { color: var(--text); }
.pricing-card .btn-primary, .pricing-card .btn-secondary { display: block; width: 100%; }
.pricing-card .btn-primary.disabled, .pricing-card .btn-secondary.disabled { opacity: 0.5; cursor: not-allowed; background: var(--text-muted); }
.beta-notice { margin-top: 1rem; font-size: 0.85rem; color: var(--primary); font-weight: 600; }

.download { padding: 6rem 2rem; text-align: center; }
.download h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.download > p { color: var(--text-muted); margin-bottom: 2rem; }
.download-buttons { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.download-btn { display: flex; align-items: center; gap: 1rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1rem 2rem; text-decoration: none; color: var(--text); transition: all 0.2s; }
.download-btn:hover { border-color: var(--primary); transform: translateY(-2px); }
.download-btn .icon { font-size: 2rem; }
.download-info { text-align: left; }
.download-info .platform { display: block; font-weight: 600; }
.download-info .version { color: var(--text-muted); font-size: 0.85rem; }

.contact { padding: 6rem 2rem; max-width: 600px; margin: 0 auto; }
.contact h2 { text-align: center; font-size: 2.5rem; margin-bottom: 0.5rem; }
.contact > p { text-align: center; color: var(--text-muted); margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: flex; gap: 1rem; }
.form-row input, .form-row select { flex: 1; }
.contact-form input, .contact-form select, .contact-form textarea { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 1rem; color: var(--text); font-size: 1rem; font-family: inherit; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); }
.contact-form select { cursor: pointer; }
.contact-form select option { background: var(--bg-dark); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form button { align-self: center; margin-top: 0.5rem; border: none; cursor: pointer; }

.thank-you { min-height: calc(100vh - 140px); display: flex; align-items: center; justify-content: center; padding: 4rem 2rem; }
.thank-you-content { text-align: center; }
.thank-you-icon { width: 80px; height: 80px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: white; margin: 0 auto 2rem; }
.thank-you h1 { font-size: 3rem; margin-bottom: 1rem; }
.thank-you p { color: var(--text-muted); font-size: 1.2rem; margin-bottom: 2rem; }

.built-for { padding: 4rem 2rem; max-width: 1000px; margin: 0 auto; text-align: center; }
.built-for h2 { font-size: 2rem; margin-bottom: 1rem; }
.built-for-lead { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }
.built-for-lead strong { color: var(--text-light, #fff); font-weight: 600; }

.faq { padding: 4rem 2rem 6rem; max-width: 900px; margin: 0 auto; }
.faq h2 { text-align: center; font-size: 2rem; margin-bottom: 2rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 1rem 1.25rem; }
.faq-item summary { cursor: pointer; font-weight: 600; font-size: 1.05rem; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; float: right; font-size: 1.3rem; color: var(--text-muted); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: 0.75rem; color: var(--text-muted); line-height: 1.6; }

.footer { padding: 2rem; border-top: 1px solid var(--border); }
.footer-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; }
.footer p { color: var(--text-muted); }

/* Download Page Styles */
.download-page { min-height: calc(100vh - 140px); padding-top: 6rem; }
.download-hero { text-align: center; padding: 3rem 2rem 2rem; max-width: 800px; margin: 0 auto; }
.download-hero h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 1rem; }
.download-subtitle { font-size: 1.3rem; color: var(--text-muted); margin-bottom: 1rem; }
.download-note { color: var(--text-muted); font-size: 0.95rem; }

.download-content { max-width: 1200px; margin: 0 auto; padding: 2rem; }
.download-section { margin-bottom: 4rem; }
.download-section h2 { text-align: center; font-size: 2rem; margin-bottom: 2rem; }

.download-buttons-large { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 2rem; margin: 0 auto; max-width: 900px; }
.download-card { background: var(--bg-card); border: 2px solid var(--border); border-radius: 16px; padding: 2.5rem; transition: all 0.3s; }
.download-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0, 212, 255, 0.2); }

.platform-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.platform-icon { font-size: 3rem; }
.platform-header h3 { font-size: 2rem; margin: 0; }

.platform-details { margin-bottom: 2rem; }
.platform-details p { margin: 0.5rem 0; color: var(--text-muted); }
.platform-details .version { color: var(--primary); font-weight: 600; font-size: 1.1rem; }
.platform-details .requirements { font-size: 0.95rem; }
.platform-details .file-info { font-size: 0.9rem; }

.download-action { display: flex; flex-direction: column; gap: 0.25rem; align-items: center; width: 100%; text-align: center; }
.download-action .file-type { font-size: 0.85rem; opacity: 0.8; font-weight: 400; }

.installation-guide { margin-bottom: 4rem; }
.installation-guide h2 { text-align: center; font-size: 2rem; margin-bottom: 2rem; }
.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; max-width: 900px; margin: 0 auto; }
.guide-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; }
.guide-card h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--primary); }
.guide-card ol { padding-left: 1.5rem; }
.guide-card li { margin: 0.75rem 0; color: var(--text-muted); line-height: 1.6; }
.guide-card code { background: var(--bg-dark); padding: 0.2rem 0.5rem; border-radius: 4px; color: var(--primary); font-size: 0.9rem; }

.features-overview { margin-bottom: 4rem; }
.features-overview h2 { text-align: center; font-size: 2rem; margin-bottom: 2rem; }
.features-list { max-width: 800px; margin: 0 auto; display: grid; gap: 1.5rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 1.5rem; }
.feature-item .check { font-size: 1.5rem; color: var(--primary); flex-shrink: 0; }
.feature-item h4 { font-size: 1.1rem; margin: 0 0 0.25rem 0; }
.feature-item p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

.upgrade-section { text-align: center; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 3rem 2rem; max-width: 700px; margin: 0 auto; }
.upgrade-section h2 { font-size: 2rem; margin-bottom: 1rem; }
.upgrade-section p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.1rem; }

@media (max-width: 1200px) {
    .pricing-cards { flex-wrap: wrap; }
    .pricing-card { width: 380px; }
}

@media (max-width: 768px) {
    /* Navbar: compact logo + scrollable links */
    .navbar { padding: 0.6rem 1rem; }
    .nav-container { gap: 0.75rem; flex-wrap: nowrap; }
    .logo { gap: 0.3rem; font-size: 1rem; flex-shrink: 0; }
    .logo-icon { height: 22px; }
    .logo-text { font-size: 0.95rem; }
    .nav-links { gap: 0.9rem; overflow-x: auto; -webkit-overflow-scrolling: touch; flex-shrink: 1; min-width: 0; }
    .nav-links a { font-size: 0.82rem; white-space: nowrap; }
    .nav-links .btn-primary, .nav-links .btn-secondary { padding: 0.4rem 0.7rem; font-size: 0.8rem; }

    .hero { flex-direction: column; text-align: center; padding-top: 5rem; gap: 2rem; }
    .hero h1 { font-size: 2rem; }
    .hero-subtitle { max-width: 100%; font-size: 1rem; }
    .hero-buttons { justify-content: center; flex-wrap: wrap; }
    .pricing-card.featured { transform: none; }
    .pricing-cards { flex-wrap: wrap; }
    .pricing-card { width: 100%; max-width: 400px; }
    .form-row { flex-direction: column; }
    .features-grid { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: none; }
    .features-grid.has-active { grid-template-columns: 1fr 1fr; }
    .features-grid .feature-card:nth-child(9) { grid-column: 1 / -1; }

    .download-hero h1 { font-size: 2.5rem; }
    .download-buttons-large { grid-template-columns: 1fr; max-width: 500px; }
    .guide-grid { grid-template-columns: 1fr; }
}

/* Dynamic Downloads Styles */
.latest-release { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; }
.release-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.release-header h2 { font-size: 1.8rem; }
.release-date { color: var(--text-muted); font-size: 0.9rem; }
.release-notes { border-left: 2px solid var(--border); padding: 0.5rem 1rem; margin-bottom: 1.5rem; }
.release-notes h4 { color: var(--text-muted); font-size: 0.8rem; margin: 0 0 0.4rem 0; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.release-notes ul { list-style: none; padding: 0; margin: 0; }
.release-notes li { color: var(--text-muted); padding: 0.2rem 0; padding-left: 1rem; position: relative; line-height: 1.4; font-size: 0.85rem; }
.release-notes li:before { content: "·"; position: absolute; left: 0; color: var(--text-muted); font-weight: bold; }
.download-platforms { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.platform-card { position: relative; background: rgba(0,0,0,0.3); border: 1px solid var(--border); border-radius: 10px; padding: 2rem; text-align: center; transition: all 0.3s; }
.platform-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.platform-card.recommended { border-color: var(--primary); }
.recommended-badge { position: absolute; top: -12px; right: 1rem; background: var(--primary); color: white; padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.platform-icon { font-size: 3rem; margin-bottom: 1rem; }
.platform-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.file-name { color: var(--text); font-size: 0.9rem; margin-bottom: 0.3rem; font-family: monospace; }
.file-size { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.9rem; }
.download-count { color: var(--text-muted); margin-top: 0.8rem; font-size: 0.85rem; }
.btn-download { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--primary); color: #080c12; padding: 0.9rem 2.5rem; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1.05rem; transition: all 0.3s; box-shadow: 0 4px 16px rgba(0, 212, 255, 0.35); }
.btn-download:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0, 212, 255, 0.5); }
.btn-download .download-icon { font-size: 1.2rem; }

.older-releases-section h2 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.older-releases-subtitle { color: var(--text-muted); text-align: center; margin-bottom: 1.5rem; font-size: 0.9rem; }
.older-releases-list { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1rem; }
.old-release { background: rgba(22, 27, 34, 0.5); border: 1px solid var(--border); border-radius: 8px; padding: 1rem 1.2rem; transition: all 0.2s; }
.old-release:hover { border-color: var(--text-muted); background: var(--bg-card); }
.old-release-header { flex: 1; min-width: 180px; margin-bottom: 0.8rem; }
.old-release-header h3 { font-size: 1.05rem; margin-bottom: 0.2rem; color: var(--text); font-weight: 600; }
.old-release-notes { margin: 0.8rem 0; }
.old-release-notes details { cursor: pointer; }
.old-release-notes summary { color: var(--text-muted); font-size: 0.85rem; padding: 0.4rem 0; user-select: none; }
.old-release-notes summary:hover { color: var(--primary); }
.old-release-notes ul { list-style: none; padding: 0.5rem 0 0 1rem; margin: 0; }
.old-release-notes li { color: var(--text-muted); font-size: 0.85rem; padding: 0.3rem 0; line-height: 1.4; }
.old-release-notes li:before { content: "•"; margin-right: 0.5rem; color: var(--primary); }
.old-release-downloads { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }
.download-link { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(230, 57, 70, 0.08); border: 1px solid rgba(230, 57, 70, 0.4); color: var(--primary); padding: 0.5rem 1rem; border-radius: 5px; text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: all 0.2s; }
.download-link:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-1px); }
.download-link .platform-emoji { font-size: 1rem; }
.download-link .platform-name { font-weight: 600; }
.download-link .file-info { font-size: 0.75rem; opacity: 0.7; margin-left: 0.2rem; }

.no-releases, .error { text-align: center; padding: 3rem; color: var(--text-muted); }
.no-releases-box, .error-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; text-align: center; max-width: 600px; margin: 2rem auto; }
.no-releases-box h3, .error-box h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--text); }
.no-releases-box p, .error-box p { color: var(--text-muted); margin-bottom: 0.8rem; }
.error-box ul { text-align: left; max-width: 400px; margin: 1rem auto; color: var(--text-muted); }
.no-releases-box a, .error-box a { color: var(--primary); text-decoration: underline; }
.no-releases-box a:hover, .error-box a:hover { color: var(--primary-dark); }
