:root {
    /* Colors - Light Theme */
    --bg-body: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    
    /* Accents */
    --accent-color: #ff4d00; /* Vibrant Orange/Red */
    --accent-gradient: linear-gradient(135deg, #ff4d00 0%, #ff8800 100%);
    --blue-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --purple-gradient: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    
    /* Shadows for Volume */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-accent: 0 10px 25px -5px rgba(255, 77, 0, 0.4);
    
    /* Layout */
    --container-width: 1100px;
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-body);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

a { text-decoration: none; }
ul { list-style: none; }

/* --- Animated Background Shapes --- */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
    animation: float 10s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 77, 0, 0.08);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.08);
    bottom: 20%;
    left: -100px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 40px); }
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header --- */
.glass-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Space Grotesk';
}

.brand-icon {
    width: 35px;
    height: 35px;
    background: var(--text-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.light-text { color: var(--text-secondary); }

.nav-menu ul { display: flex; gap: 30px; }
.nav-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--text-primary); }
.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
}

.status-pill {
    background: #ecfdf5;
    color: #059669;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #d1fae5;
}

.dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.mobile-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.loading-line {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    background-size: 50% 100%;
    animation: loading 2s infinite linear;
    position: absolute;
    bottom: 0;
    left: 0;
}

@keyframes loading {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* --- Hero --- */
.hero-clean {
    padding: 80px 0;
    position: relative;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 50px;
}

.badge-pill {
    display: inline-block;
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* 3D Buttons */
.btn-3d {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: transform 0.1s;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    transition: transform 0.1s;
}

.btn-primary .btn-content {
    background: var(--text-primary);
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-white .btn-content {
    background: white;
    color: var(--text-primary);
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow-sm);
}

.btn-3d:active { transform: translateY(2px); }
.btn-primary:hover .btn-content {
    background: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

/* Glass Card Animation */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.3s;
}

.hero-visual:hover .glass-card {
    transform: rotateY(0) rotateX(0) scale(1.02);
}

.card-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.dots { display: flex; gap: 5px; }
.dots span { width: 8px; height: 8px; background: #ddd; border-radius: 50%; }
.dots span:nth-child(1) { background: #ff5f56; }
.dots span:nth-child(2) { background: #ffbd2e; }
.dots span:nth-child(3) { background: #27c93f; }

.stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-family: 'Space Grotesk';
    font-weight: 600;
}
.green-txt { color: #10b981; }

.stat-graph {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 60px;
    margin-top: 20px;
}

.bar {
    flex: 1;
    background: var(--accent-color);
    border-radius: 4px;
    opacity: 0.8;
}

/* --- Secure Link Block --- */
.link-section {
    padding: 40px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.secure-box {
    background: white;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0,0,0,0.03);
}

.secure-icon {
    width: 60px;
    height: 60px;
    background: #fff3e0;
    color: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.secure-content { flex: 1; }
.secure-content h3 { font-size: 1.2rem; margin-bottom: 5px; }

.input-group {
    display: flex;
    margin-top: 15px;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 5px;
}

.input-group input {
    border: none;
    background: transparent;
    flex: 1;
    padding: 10px;
    font-family: monospace;
    font-size: 1rem;
    color: #374151;
    outline: none;
}

.copy-btn {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 0 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    transition: 0.2s;
}

.copy-btn:hover {
    background: var(--text-primary);
    color: white;
}

.secure-badge {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-size: 0.7rem;
    font-weight: 700;
    color: #9ca3af;
    border-left: 1px solid #e5e7eb;
    padding-left: 15px;
}

/* --- Features --- */
.features { padding: 100px 0; }

.center { text-align: center; margin-bottom: 60px; }
.highlight { color: var(--accent-color); }

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: 0.3s;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: #f3f4f6;
}

.icon-3d {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.gradient-orange { background: var(--accent-gradient); box-shadow: var(--shadow-accent); }
.gradient-blue { background: var(--blue-gradient); box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3); }
.gradient-purple { background: var(--purple-gradient); box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3); }

.feature-card h3 { font-size: 1.4rem; margin-bottom: 15px; }
.feature-card p { color: var(--text-secondary); margin-bottom: 20px; }

.link-arrow {
    color: var(--text-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.link-arrow:hover { gap: 10px; color: var(--accent-color); }

/* --- FAQ Accordion --- */
.faq-clean { padding: 80px 0; background: var(--bg-secondary); }

.accordion { max-width: 800px; margin: 0 auto; }

.accordion-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Space Grotesk';
}

.accordion-body {
    padding: 0 25px 25px;
    display: none;
    color: var(--text-secondary);
}

.accordion-item.active .accordion-body { display: block; }
.accordion-item.active .icon { transform: rotate(45deg); }

/* --- Footer --- */
footer {
    padding: 60px 0;
    background: white;
    border-top: 1px solid #eee;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.f-brand h4 { font-size: 1.2rem; margin-bottom: 5px; }
.f-brand p { color: var(--text-secondary); font-size: 0.9rem; }

.f-links { display: flex; gap: 20px; }
.f-links a { color: var(--text-primary); font-weight: 500; }
.f-links a:hover { color: var(--accent-color); }

.f-copy { color: #9ca3af; font-size: 0.85rem; }

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards;
}

.delay-200 { animation-delay: 0.2s; }

@keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero-wrapper { grid-template-columns: 1fr; }
    .header-flex { height: auto; padding: 15px 20px; }
    .nav-menu { display: none; width: 100%; margin-top: 15px; }
    .nav-menu ul { flex-direction: column; gap: 15px; }
    .nav-menu.active { display: block; }
    .mobile-btn { display: block; }
    .secure-box { flex-direction: column; text-align: center; }
    .secure-badge { writing-mode: horizontal-tb; transform: none; border-left: none; border-top: 1px solid #eee; padding-top: 10px; width: 100%; }
    h1 { font-size: 2.8rem; }
}
/* --- Links Page Specific Styles --- */

/* Page Hero */
.page-hero {
    padding: 60px 0 40px;
    background: linear-gradient(to bottom, #ffffff, #fafafa);
}

.text-center { text-align: center; }

.subtitle-text {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.warn-pill {
    background: #fff7ed;
    color: #c2410c;
    border-color: #ffedd5;
}

/* Mirror Table Section */
.mirror-section {
    padding-bottom: 60px;
}

.glass-panel-lg {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.panel-header {
    padding: 20px 30px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-header h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.last-check {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono';
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.mirror-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
}

.mirror-table th {
    text-align: left;
    padding: 15px 30px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    background: #ffffff;
    border-bottom: 2px solid #f1f5f9;
}

.mirror-table td {
    padding: 20px 30px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.mirror-table tr:last-child td { border-bottom: none; }
.mirror-table tr:hover { background-color: #fafafa; }

/* Table Elements */
.rank-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    background: var(--text-primary);
    color: white;
}

.rank-badge.sec { background: #e5e7eb; color: #374151; }
.rank-badge.dead { background: #fee2e2; color: #ef4444; }

.onion-code {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-primary);
    background: #f3f4f6;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.95rem;
    border: 1px solid #e5e7eb;
}

.status-tag {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
}

.status-tag.online { background: #d1fae5; color: #059669; }
.status-tag.offline { background: #fee2e2; color: #dc2626; }

.ping-good { color: #059669; font-weight: 600; font-family: 'JetBrains Mono'; font-size: 0.9rem; }
.ping-med { color: #d97706; font-family: 'JetBrains Mono'; font-size: 0.9rem; }
.ping-bad { color: #dc2626; font-family: 'JetBrains Mono'; font-size: 0.9rem; }

.copy-mini-btn {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: 0.2s;
    color: var(--text-primary);
}

.copy-mini-btn:hover { border-color: var(--accent-color); color: var(--accent-color); }
.copy-mini-btn.copied { background: #10b981; border-color: #10b981; color: white; }
.copy-mini-btn.disabled { opacity: 0.5; cursor: not-allowed; }

.active-row { background-color: #fff7ed; } /* Light orange highlight for main mirror */
.active-row:hover { background-color: #ffedd5; }
.dimmed { opacity: 0.6; }

.panel-footer {
    padding: 15px 30px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* --- SEO Content Layout --- */
.seo-long-read {
    padding: 40px 0 80px;
    background: white;
}

.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.article-body h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--text-primary);
}

.article-body h2:first-child { margin-top: 0; }

.article-body h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--text-primary);
}

.article-body p {
    margin-bottom: 20px;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-body ul, .article-body ol {
    margin-bottom: 25px;
    padding-left: 20px;
    color: #4b5563;
}

.article-body li { margin-bottom: 10px; }

.info-box-orange {
    background: #fff7ed;
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.info-box-orange h4 { color: #c2410c; margin-bottom: 10px; }
.info-box-orange p { margin-bottom: 0; font-size: 0.95rem; }

/* Sidebar */
.sidebar { position: relative; }

.sticky-widget {
    position: sticky;
    top: 100px; /* Sticks below header */
    margin-bottom: 30px;
}

.glass-card-sm {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-md);
}

.glass-card-sm h4 { margin-bottom: 15px; font-size: 1rem; border-bottom: 1px solid #f3f4f6; padding-bottom: 10px; }

.status-list { list-style: none; padding: 0; margin: 0; }
.status-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.st-dot { width: 8px; height: 8px; border-radius: 50%; }
.st-dot.green { background: #10b981; box-shadow: 0 0 5px #10b981; }
.st-dot.yellow { background: #f59e0b; }

.tiny-text { font-size: 0.75rem; color: #9ca3af; margin-top: 10px; text-align: right; }

.promo-box {
    background: var(--text-primary);
    color: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 350px;
}

.promo-box i { font-size: 2rem; margin-bottom: 15px; color: var(--accent-color); }
.promo-box h5 { font-size: 1.2rem; margin-bottom: 10px; }
.promo-box p { font-size: 0.9rem; margin-bottom: 20px; opacity: 0.8; }

.link-arrow-sm {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .content-layout { grid-template-columns: 1fr; }
    .sidebar { display: none; } /* Hide sidebar on mobile for focus */
}
/* --- Documentation / Guide Styles --- */

/* Hero Header */
.doc-header {
    background: white;
    padding: 60px 0 40px;
    border-bottom: 1px solid #f1f5f9;
}

.doc-meta {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-secondary);
}

.version-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-top: 15px;
}

/* Layout Grid */
.doc-container {
    background: #fdfdfd;
    padding: 60px 0;
}

.doc-grid {
    display: grid;
    grid-template-columns: 280px 1fr; /* Sidebar fixed width, content fills rest */
    gap: 60px;
    position: relative;
}

/* Sticky Sidebar */
.doc-sidebar {
    height: 100%;
}

.toc-wrapper {
    position: sticky;
    top: 100px; /* Below header */
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.toc-wrapper h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #9ca3af;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.toc-list { list-style: none; }
.toc-list li { margin-bottom: 10px; }

.toc-link {
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: 0.2s;
}

.toc-link i { font-size: 0.8rem; width: 20px; }

.toc-link:hover {
    background: #f3f4f6;
    color: var(--text-primary);
}

.toc-link.active {
    background: #fff7ed;
    color: var(--accent-color);
    font-weight: 600;
}

.sidebar-note {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
    color: #9ca3af;
    font-size: 0.8rem;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Main Content Typography */
.doc-content {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
}

.doc-section { margin-bottom: 50px; scroll-margin-top: 120px; }

.section-title-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.step-badge {
    background: var(--text-primary);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 1.2rem;
}

.doc-section h2 { font-size: 1.8rem; color: var(--text-primary); margin: 0; }
.doc-section h3 { font-size: 1.3rem; margin: 25px 0 15px; color: var(--text-primary); }
.doc-section p { margin-bottom: 20px; color: #4b5563; font-size: 1.05rem; }

/* Alert Boxes */
.alert-box {
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.alert-box.warning { background: #fef2f2; border-left: 4px solid #ef4444; color: #b91c1c; }
.alert-box.info { background: #eff6ff; border-left: 4px solid #3b82f6; color: #1e40af; }

.alert-icon { font-size: 1.5rem; }

/* Code Block */
.code-block {
    background: #1e293b;
    color: #e2e8f0;
    padding: 20px;
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    margin: 20px 0;
    position: relative;
}

.code-header {
    position: absolute;
    top: 0;
    right: 0;
    background: #334155;
    padding: 2px 10px;
    border-bottom-left-radius: 8px;
    font-size: 0.7rem;
    color: #94a3b8;
}

.code-block .comment {
    display: block;
    color: #64748b;
    margin-top: 5px;
    font-style: italic;
}

/* Lists */
.check-list { list-style: none; margin-bottom: 20px; }
.check-list li { margin-bottom: 10px; display: flex; gap: 10px; align-items: center; color: #4b5563; }
.check-list i { color: #10b981; }

.step-ol { padding-left: 20px; margin-bottom: 20px; }
.step-ol li { margin-bottom: 10px; font-weight: 500; color: var(--text-primary); }

.divider-line {
    height: 1px;
    background: #f1f5f9;
    margin: 40px 0;
}

/* Checklist Grid */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: 0.2s;
}

.custom-checkbox:hover { border-color: var(--accent-color); background: #fff7ed; }
.custom-checkbox input { display: none; }
.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    position: relative;
}
.custom-checkbox input:checked + .checkmark { background: var(--accent-color); border-color: var(--accent-color); }

@media (max-width: 900px) {
    .doc-grid { grid-template-columns: 1fr; }
    .doc-sidebar { display: none; } /* Or move to bottom */
    .doc-content { padding: 25px; }
    .checklist-grid { grid-template-columns: 1fr; }
}
/* --- Security Page Styles --- */

/* Hero */
.security-hero {
    padding: 60px 0 40px;
    text-align: center;
}

.secure-pill {
    background: #f0fdf4;
    color: #15803d;
    border-color: #dcfce7;
}

.sec-intro h1 { margin-bottom: 15px; }
.sec-intro p { max-width: 600px; margin: 0 auto; color: var(--text-secondary); }

/* Crypto Grid Layout */
.crypto-grid-section {
    padding-bottom: 80px;
}

.crypto-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

/* Terminal Window (The "Dark Mode" element in a light theme) */
.terminal-window {
    background: #0f172a; /* Slate 900 */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.terminal-header {
    background: #1e293b;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #334155;
}

.term-btns { display: flex; gap: 8px; margin-right: 20px; }
.term-btns span { width: 12px; height: 12px; border-radius: 50%; }
.red { background: #ef4444; }
.yellow { background: #f59e0b; }
.green { background: #22c55e; }

.term-title {
    color: #94a3b8;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
}

.terminal-body {
    padding: 20px;
    position: relative;
    flex: 1;
}

pre {
    color: #e2e8f0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    white-space: pre-wrap;
    word-break: break-all;
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
}

/* Custom Scrollbar for Terminal */
pre::-webkit-scrollbar { width: 8px; }
pre::-webkit-scrollbar-track { background: #0f172a; }
pre::-webkit-scrollbar-thumb { background: #334155; border-radius: 4px; }

.copy-terminal-btn {
    width: 100%;
    background: transparent;
    border: 1px dashed #334155;
    color: #94a3b8;
    padding: 10px;
    font-family: 'JetBrains Mono';
    cursor: pointer;
    transition: 0.3s;
    border-radius: 6px;
}

.copy-terminal-btn:hover {
    border-color: white;
    color: white;
    background: rgba(255,255,255,0.05);
}

.fingerprint-box {
    background: #1e293b;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-top: 1px solid #334155;
}

.fp-label { color: #64748b; font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; }
.fp-code { color: var(--accent-color); font-family: 'JetBrains Mono'; font-size: 0.85rem; word-spacing: 5px; }

/* Sidebar Cards */
.security-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Warrant Canary */
.canary-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.canary-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: #10b981; /* Green Status line */
}

.canary-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.canary-status {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #10b981;
    background: #ecfdf5;
    padding: 4px 10px;
    border-radius: 20px;
}

.pulse-ring {
    width: 8px; height: 8px; background: #10b981; border-radius: 50%;
    animation: pulse 2s infinite;
}

.canary-list {
    list-style: none;
    margin: 20px 0;
}

.canary-list li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.canary-list i { color: #10b981; }

.signed-by {
    font-size: 0.75rem;
    color: #9ca3af;
    border-top: 1px solid #f3f4f6;
    padding-top: 15px;
    font-family: 'JetBrains Mono';
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Tool Card */
.tool-card {
    background: var(--text-primary); /* Dark card */
    color: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

.tool-card h4 { margin-bottom: 10px; font-size: 1.1rem; }
.tool-card p { opacity: 0.8; font-size: 0.9rem; margin-bottom: 20px; }

.url-checker {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.url-checker input {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    border: none;
    font-family: 'JetBrains Mono';
    font-size: 0.85rem;
    outline: none;
}

.btn-check {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.8rem;
}

.micro-text { font-size: 0.7rem; opacity: 0.5; }

/* Educational Content */
.security-edu {
    background: white;
    padding: 60px 0 100px;
}

.long-read-content {
    max-width: 800px;
    margin: 0 auto;
}

.long-read-content h2 { margin-bottom: 20px; font-size: 1.8rem; }
.long-read-content p { margin-bottom: 20px; color: #4b5563; font-size: 1.05rem; }

.steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.step-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.step-card .num {
    background: var(--text-primary);
    color: white;
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px;
    font-weight: 700;
}

.step-card h4 { margin-bottom: 10px; }
.step-card p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }

@media (max-width: 900px) {
    .crypto-layout { grid-template-columns: 1fr; }
    .steps-row { grid-template-columns: 1fr; }
}
/* --- FAQ Page Styles --- */

/* Hero */
.faq-hero {
    padding: 60px 0;
    background: radial-gradient(circle at top, #fafafa, #ffffff);
}

.fake-search {
    max-width: 500px;
    margin: 30px auto 0;
    position: relative;
}

.fake-search i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.fake-search input {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    outline: none;
    transition: 0.3s;
}

.fake-search input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

/* FAQ Layout */
.faq-section {
    padding-bottom: 80px;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-category h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

.faq-category h3 i { color: var(--accent-color); }

/* Accordion Cards */
.faq-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card:hover {
    border-color: #cbd5e1;
    box-shadow: var(--shadow-sm);
}

.faq-card[open] {
    border-color: var(--accent-color);
    background: #fff7ed; /* Very light orange tint when open */
}

summary {
    padding: 20px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none; /* Remove default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
}

summary::-webkit-details-marker { display: none; }

/* Custom Plus Icon */
summary::after {
    content: '+';
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: transform 0.3s;
}

.faq-card[open] summary::after {
    transform: rotate(45deg); /* Turns plus to x */
    color: var(--accent-color);
}

.faq-body {
    padding: 0 20px 20px 20px;
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: -5px; /* Visual fix */
    padding-top: 15px;
    animation: fadeIn 0.3s ease-in;
}

.faq-body strong { color: var(--text-primary); }
.faq-body ul { padding-left: 20px; margin-top: 10px; }
.faq-body li { margin-bottom: 5px; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Glossary Section */
.glossary-section {
    padding: 60px 0 80px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.glossary-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.6rem;
    color: var(--text-primary);
}

.glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.term-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow-sm);
}

.term-box h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1rem;
    font-family: 'JetBrains Mono';
}

.term-box p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .faq-hero { padding: 40px 0; }
    .faq-grid { padding: 0 10px; }
}
/* --- Vendors Page Styles --- */

/* Hero */
.vendor-hero {
    padding: 60px 0;
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
}

.trust-badge {
    display: inline-block;
    background: #e0f2fe;
    color: #0284c7;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Space Grotesk';
}

.stat-label {
    font-size: 0.85rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Controls */
.list-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.search-filter select {
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: var(--text-primary);
    outline: none;
    cursor: pointer;
}

.sort-by span { color: var(--text-secondary); }

/* Vendor Grid */
.vendor-list-section {
    padding-bottom: 80px;
}

.vendors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.vendor-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.vendor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #fdba74; /* Orange tint on hover */
}

/* Featured Card Style */
.vendor-card.featured {
    border: 2px solid var(--accent-color);
    background: #fffbf7;
}

.v-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.v-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.v-avatar {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.v-info h3 {
    font-size: 1.1rem;
    margin: 0 0 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.verified-icon { color: #10b981; font-size: 0.9rem; }

.v-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    gap: 10px;
}

.v-meta span { background: #f3f4f6; padding: 2px 6px; border-radius: 4px; }

.v-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.stars { color: #f59e0b; }
.v-rating span { color: #6b7280; font-weight: 500; }

.v-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.v-tags span {
    font-size: 0.75rem;
    border: 1px solid #e5e7eb;
    padding: 3px 8px;
    border-radius: 20px;
    color: #4b5563;
}

.v-desc {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1; /* Pushes footer down */
}

.v-footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status {
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status.online { color: #10b981; }
.status.offline { color: #9ca3af; }
.status i { font-size: 0.5rem; }

.btn-profile {
    background: transparent;
    border: 1px solid #e5e7eb;
    color: var(--text-primary);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.btn-profile:hover {
    background: var(--text-primary);
    color: white;
    border-color: var(--text-primary);
}

/* Scam Alert Section */
.scam-alert-section {
    padding: 0 0 60px;
}

.alert-box-large {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 25px;
}

.ab-icon {
    font-size: 2rem;
    color: #dc2626;
    background: white;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.ab-content h2 { color: #991b1b; margin-bottom: 10px; font-size: 1.4rem; }
.ab-content p { color: #7f1d1d; margin-bottom: 20px; }

.scam-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.scam-list-grid span {
    font-family: 'JetBrains Mono';
    font-weight: 700;
    color: #b91c1c;
    background: rgba(255,255,255,0.6);
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* SEO Reviews Text */
.seo-reviews {
    background: #fafafa;
    padding: 60px 0;
    text-align: center;
}

.seo-reviews h2 { margin-bottom: 20px; }
.seo-reviews p { max-width: 700px; margin: 0 auto 20px; color: var(--text-secondary); }

@media (max-width: 768px) {
    .stats-row { gap: 20px; }
    .list-controls { flex-direction: column; gap: 15px; align-items: flex-start; }
    .alert-box-large { flex-direction: column; }
}
/* --- News Page Styles --- */

/* Hero */
.news-hero {
    padding: 60px 0 40px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.update-pill {
    background: #e0e7ff;
    color: #4338ca;
    border-color: #c7d2fe;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.news-hero h1 { margin-bottom: 15px; }
.news-hero p { color: var(--text-secondary); max-width: 600px; }

/* Grid Layout */
.news-layout-section {
    padding: 60px 0 80px;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Content 66% - Sidebar 33% */
    gap: 50px;
}

/* News Feed */
.news-feed {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    border-color: #cbd5e1;
}

.news-card.featured-news {
    border-left: 4px solid var(--accent-color);
    background: #fffbf7;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.date { color: #9ca3af; display: flex; align-items: center; gap: 6px; }

.tag {
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

.tag.important { background: #fee2e2; color: #b91c1c; }
.tag.update { background: #dbeafe; color: #1e40af; }
.tag.feature { background: #dcfce7; color: #15803d; }

.news-card h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-card h2 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.news-card h2 a:hover { color: var(--accent-color); }

.excerpt {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tech-details {
    background: rgba(255,255,255,0.6);
    border: 1px dashed #cbd5e1;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.tech-details ul {
    list-style: none;
    padding: 0;
}

.tech-details li {
    font-size: 0.9rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
}

.tech-details i { color: #10b981; }

.read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.read-more:hover { gap: 10px; } /* Slight animation */

/* Pagination */
.pagination {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.pagination a {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    transition: 0.2s;
}

.pagination a.active, .pagination a:hover {
    background: var(--text-primary);
    color: white;
    border-color: var(--text-primary);
}

/* Sidebar */
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.status-widget {
    background: #1e293b; /* Dark theme widget */
    color: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-lg);
}

.status-widget h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #334155;
    padding-bottom: 10px;
    color: #e2e8f0;
}

.status-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.status-row span:first-child { color: #94a3b8; }

.s-val { font-weight: 700; font-family: 'JetBrains Mono'; font-size: 0.8rem; }
.s-val.online { color: #4ade80; } /* Green */
.s-val.warning { color: #fbbf24; } /* Yellow */

.last-check {
    margin-top: 20px;
    font-size: 0.75rem;
    color: #64748b;
    text-align: right;
    font-style: italic;
}

.sidebar-box {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
}

.sidebar-box h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

/* Changelog List */
.changelog-list {
    list-style: none;
    border-left: 2px solid #f1f5f9;
    padding-left: 20px;
}

.changelog-list li {
    margin-bottom: 20px;
    position: relative;
}

.changelog-list li::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 5px;
    width: 8px; height: 8px;
    background: white;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
}

.cl-ver {
    display: inline-block;
    background: #f3f4f6;
    font-family: 'JetBrains Mono';
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 5px;
    color: #64748b;
}

.changelog-list p {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin: 0;
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    font-size: 0.85rem;
    color: #64748b;
    text-decoration: none;
    background: #f8fafc;
    padding: 5px 10px;
    border-radius: 6px;
    transition: 0.2s;
}

.tag-cloud a:hover {
    background: var(--accent-color);
    color: white;
}

@media (max-width: 900px) {
    .news-grid { grid-template-columns: 1fr; }
    .news-sidebar { order: -1; /* Sidebar on top for mobile? Or keep bottom */ }
}
