/*
Theme Name: EtherTubes
Theme URI: https://ethertubes.com
Author: EtherTubes
Author URI: https://ethertubes.com
Description: A retro-styled tech blog theme with CRT terminal effects and vintage aesthetics
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ethertubes
Tags: blog, one-column, custom-colors, custom-menu, editor-style, featured-images, sticky-post, threaded-comments, translation-ready
*/

/* CSS Variables for theming */
:root {
    --bg-primary: #f5f3ed;
    --bg-secondary: #e8e5dc;
    --text-primary: #3a3a3a;
    --text-secondary: #5a5a5a;
    --accent-orange: #e67e22;
    --accent-amber: #f39c12;
    --code-bg: #2a2a2a;
    --border-color: #d0ccc0;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #2a2a2a;
        --bg-secondary: #1f1f1f;
        --text-primary: #d0d0d0;
        --text-secondary: #a0a0a0;
        --code-bg: #1a1a1a;
        --border-color: #404040;
    }
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Header with scan line effect */
header {
    background: var(--bg-secondary);
    border-bottom: 2px solid var(--accent-orange);
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
}

/* CRT effects - only active when header has 'animating' class */
header.animating {
    border-radius: 0 0 2px 2px;
}

/* Fade out state - transitioning from animating to static */
header.fade-out-retrace {
    border-radius: 0 0 2px 2px;
}

/* Fade out state - transitioning from animating to static */
header.fade-out {
    border-radius: 0 0 2px 2px;
    animation: brightnessPulse 0.25s ease-in-out infinite alternate;
}

/* Gentle brightness pulsing at 4 Hz (0.25s = 4 pulses/second) */
@keyframes brightnessPulse {
    0% {
        filter: brightness(0.98);
    }
    100% {
        filter: brightness(1.02);
    }
}

/* 30 Hz color swap - alternates the solid background color under the snow */
@keyframes colorSwap {
    0% {
        background-color: var(--bg-secondary);
    }
    50% {
        background-color: transparent;
    }
}

/* Scanlines - rolling down the screen */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(230, 126, 34, 0.03) 50%
    );
    background-size: 100% 4px;
    pointer-events: none;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s ease-out;
}

/* Show and animate scanlines during CRT mode */
header.animating::before,
header.fade-out::before {
    opacity: 0.5;
    animation: scanlineRoll 2s linear infinite;
}

/* Fade out scanlines */
header.fade-out::before {
    opacity: 0;
}

@keyframes scanlineRoll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(4px);
    }
}

/* Interference/static pattern - creates subtle noise */
header.animating .header-content::before,
header.fade-out .header-content::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: -100vw;
    right: -100vw;
    bottom: -1.5rem;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 2px,
            rgba(0, 0, 0, 0.03) 4px
        );
    pointer-events: none;
    z-index: 5;
    opacity: 0.3;
    animation: interference 0.3s steps(3) infinite;
    transition: opacity 1s ease-out;
}

/* Fade out interference */
header.fade-out .header-content::before {
    opacity: 0;
}

@keyframes interference {
    0% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(1px, -1px);
    }
    66% {
        transform: translate(-1px, 1px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* Glass reflection and vignette - only during animation */
header.animating::after,
header.fade-out::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(
            ellipse at center,
            transparent 30%,
            rgba(0, 0, 0, 0.15) 100%
        ),
        linear-gradient(
            125deg,
            transparent 0%,
            transparent 40%,
            rgba(255, 255, 255, 0.03) 45%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.03) 55%,
            transparent 60%,
            transparent 100%
        );
    pointer-events: none;
    z-index: 10;
    opacity: 1;
    transition: opacity 1s ease-out;
}

/* Fade out the glass effect */
header.fade-out::after {
    opacity: 0;
}

/* Horizontal retrace line - sweeps vertically down the screen */
.header-content {
    position: relative;
}

header.animating .header-content {
    overflow: visible;
}

header.animating .header-content::after {
    content: '';
    position: absolute;
    left: -100vw;
    right: -100vw;
    height: 2px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255, 255, 255, 0.3) 30%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.3) 70%,
        transparent
    );
    pointer-events: none;
    z-index: 15;
    animation: retraceSweep 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: opacity 1s ease-out;
}

/* Fade out retrace line - starts earlier */
header.fade-out-retrace .header-content::after,
header.fade-out .header-content::after {
    opacity: 0;
}

@keyframes retraceSweep {
    0% {
        top: -10px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: calc(100% + 1.5rem + 10px);
        opacity: 0;
    }
}

/* RF Snow effect */
@keyframes snow {
    0%, 100% { 
        background-position: 0% 0%, 0% 0%, 0% 0%;
    }
    10% { 
        background-position: 10% -10%, -5% 5%, 7% -15%;
    }
    20% { 
        background-position: -15% 20%, 10% -10%, -20% 30%;
    }
    30% { 
        background-position: 30% -30%, -20% 20%, 15% -5%;
    }
    40% { 
        background-position: -5% 40%, 15% -25%, -10% 10%;
    }
    50% { 
        background-position: 20% -20%, -10% 30%, 25% -40%;
    }
    60% { 
        background-position: -25% 10%, 25% -15%, -5% 20%;
    }
    70% { 
        background-position: 15% -35%, -15% 5%, 30% -10%;
    }
    80% { 
        background-position: -10% 25%, 5% -30%, -25% 35%;
    }
    90% { 
        background-position: 25% -5%, -25% 15%, 10% -25%;
    }
}

/* Add snow layer using header background overlay */
header.animating {
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 120px 120px;
    background-position: 0 0, 40px 60px, 130px 270px;
    animation: brightnessPulse 0.25s ease-in-out infinite alternate,
               snow 0.5s steps(10) infinite;
}

/* During fade-out-retrace, keep animations running */
header.fade-out-retrace {
    animation: brightnessPulse 0.25s ease-in-out infinite alternate,
               snow 0.5s steps(10) infinite;
}

/* Stop brightness pulse during final fade-out, keep snow */
header.fade-out {
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 120px 120px;
    background-position: 0 0, 40px 60px, 130px 270px;
    animation: snow 0.5s steps(10) infinite;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.logo-container h1 {
    font-family: 'VT323', 'Courier New', Consolas, Monaco, monospace;
    font-size: 2.2rem;
    color: var(--accent-amber);
    font-weight: 400;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    white-space: nowrap;
    position: relative;
    min-width: max-content;
}

.logo-container h1 a {
    color: inherit;
    text-decoration: none;
}

/* Hide characters until revealed by cursor */
.logo-container h1 .char {
    opacity: 0;
}

.logo-container h1 .char.revealed {
    opacity: 1;
}

/* Terminal-style navigation items - right aligned */
.terminal-nav {
    font-family: 'VT323', 'Courier New', Consolas, Monaco, monospace;
    font-size: 2.2rem;
    color: var(--accent-amber);
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.terminal-nav a {
    white-space: nowrap;
}

.terminal-nav .char {
    opacity: 0;
}

.terminal-nav .char.revealed {
    opacity: 1;
}

.terminal-nav a {
    color: var(--accent-amber);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    padding: 0.2rem 0.5rem;
    display: inline-block;
    pointer-events: none;
}

/* Always show brackets, but invisible by default */
.terminal-nav a::before {
    content: '[';
    position: absolute;
    left: -0.3rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.terminal-nav a::after {
    content: ']';
    position: absolute;
    right: -0.3rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Enable pointer events only when all characters in the link are revealed */
.terminal-nav a:has(.char:not(.revealed)) {
    pointer-events: none;
}

.terminal-nav a:not(:has(.char:not(.revealed))) {
    pointer-events: auto;
}

.terminal-nav a:hover,
.terminal-nav a:focus {
    outline: none;
    background: var(--accent-orange);
    color: var(--bg-primary);
    box-shadow: 0 0 0 3px var(--accent-amber);
}

.terminal-nav a:hover::before,
.terminal-nav a:focus::before {
    opacity: 1;
}

.terminal-nav a:hover::after,
.terminal-nav a:focus::after {
    opacity: 1;
}

/* Cursor that reveals text - sized to match font */
.reveal-cursor {
    position: absolute;
    width: 1.32rem;  /* 0.6em at 2.2rem font size */
    height: 2.2rem;  /* Match font size */
    background-color: var(--accent-amber);
    animation: blink 800ms infinite;
    pointer-events: none;
    z-index: 10;
}

/* Blinking cursor animation */
@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* Vacuum tube image logo */
.tube-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(243, 156, 18, 0.4));
    animation: glow 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 1s ease-in;
}

.tube-logo.fade-in {
    opacity: 1;
}

/* Also apply to WordPress custom logo images */
.tube-logo img,
.tube-logo .custom-logo {
    height: 60px;
    width: auto;
    display: block;
}

@keyframes glow {
    0%, 100% { 
        filter: drop-shadow(0 0 8px rgba(243, 156, 18, 0.4));
    }
    50% { 
        filter: drop-shadow(0 0 12px rgba(243, 156, 18, 0.6));
    }
}

/* Main content */
main {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

/* Site tagline at top of blog listing */
.site-tagline {
    font-family: 'Courier New', Consolas, Monaco, monospace;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--accent-orange);
}

.site-tagline p {
    margin: 0;
}

/* Article header */
.article-header {
    margin-bottom: 2rem;
    border-left: 3px solid var(--accent-orange);
    padding-left: 1.5rem;
}

/* Remove left border on excerpt listing pages */
.article-header-excerpt {
    border-left: none;
    padding-left: 0;
}

/* Full article page titles (single.php) - use Courier, NOT VT323 */
.article-header h2,
.article-header h2.post-title {
    font-family: 'Courier New', Consolas, Monaco, monospace;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.2;
}

.article-meta {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: 'Courier New', Consolas, Monaco, monospace;
}

.article-meta::before {
    content: '~ ';
    color: var(--accent-orange);
}

/* Category links in article meta - simple accent color link, no VT323 */
.category-link {
    color: var(--accent-orange);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.category-link:hover {
    opacity: 0.7;
}

/* Excerpt page title LINKS - use VT323 font like nav links */
.article-header h2 a,
.article-header h2.post-title a {
    font-family: 'VT323', 'Courier New', Consolas, Monaco, monospace;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--accent-amber);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    padding: 0.2rem 0.5rem;
    display: inline-block;
}

/* Brackets appear on hover - same as nav links */
.article-header h2 a::before {
    content: '[';
    position: absolute;
    left: -0.3rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.article-header h2 a::after {
    content: ']';
    position: absolute;
    right: -0.3rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.article-header h2 a:hover,
.article-header h2 a:focus {
    outline: none;
    background: var(--accent-orange);
    color: var(--bg-primary);
    box-shadow: 0 0 0 3px var(--accent-amber);
}

.article-header h2 a:hover::before,
.article-header h2 a:focus::before {
    opacity: 1;
}

.article-header h2 a:hover::after,
.article-header h2 a:focus::after {
    opacity: 1;
}

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

.tag {
    background: var(--bg-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    font-family: 'Courier New', Consolas, Monaco, monospace;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-orange);
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.tag:hover {
    background: var(--accent-orange);
    color: white;
    border-color: var(--accent-orange);
}

/* Article content */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    font-family: 'Courier New', Consolas, Monaco, monospace;
    font-size: 1.4rem;
    margin: 2.5rem 0 1rem 0;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.article-content h2::before {
    content: '# ';
    color: var(--accent-orange);
}

.article-content h3 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-orange);
}

.article-content h4 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content a {
    color: var(--accent-orange);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.article-content a:hover {
    border-bottom-color: var(--accent-orange);
}

/* Code blocks */
.article-content code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
}

.article-content pre code {
    background: none;
    padding: 0;
    border-radius: 0;
}

.article-content p code,
.article-content li code {
    background: var(--bg-secondary);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', Consolas, Monaco, monospace;
    font-size: 0.9em;
    color: var(--accent-orange);
}

/* Code blocks */
.code-block-wrapper {
    margin: 2rem 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.code-block-wrapper pre {
    margin: 0;
    padding: 1.5rem;
    background: var(--code-bg);
    overflow-x: auto;
}

.code-block-wrapper pre code {
    display: block;
    font-family: 'Courier New', Consolas, Monaco, monospace;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 1.5rem;
    background: #282c34;
    color: #abb2bf;
}

/* Ensure Highlight.js classes inherit the background */
.code-block-wrapper pre code.hljs {
    background: #282c34;
}

.code-header {
    background: var(--bg-secondary);
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.code-filename {
    font-family: 'Courier New', Consolas, Monaco, monospace;
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex: 1;
}

.code-filename::before {
    content: '$ ';
    color: var(--accent-orange);
}

.code-actions {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
}

.code-btn,
.copy-btn,
.download-btn {
    background: var(--accent-orange);
    color: var(--bg-primary);
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: 'Courier New', Consolas, Monaco, monospace;
    transition: all 0.2s ease;
}

.code-btn:hover,
.copy-btn:hover,
.download-btn:hover {
    background: var(--accent-amber);
    transform: translateY(-1px);
}

.code-btn:focus,
.copy-btn:focus,
.download-btn:focus {
    outline: 2px solid var(--accent-amber);
    outline-offset: 2px;
}

.code-btn:active,
.copy-btn:active,
.download-btn:active {
    transform: translateY(0);
}

.copy-btn.copied {
    background: var(--accent-amber);
    color: white;
}

/* Regular code blocks (without wrapper) */
.article-content pre:not(.code-block-wrapper pre) {
    background: var(--code-bg);
    border-radius: 5px;
    padding: 1.5rem;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

/* Blockquotes */
.article-content blockquote {
    border-left: 4px solid var(--accent-orange);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-secondary);
}

/* Images */
/* Featured image - handle WordPress figure wrapper */
.featured-image {
    margin: 0 0 2rem 0;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    display: block;
}

.featured-image img,
figure.featured-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0;
    border: none;
    border-radius: 0;
}

/* Images within article content - clickable for lightbox */
.article-content img:not(.featured-image):not(.featured-image img),
.article-image {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 2rem auto;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: block;
}

.article-content img:not(.featured-image):not(.featured-image img):hover,
.article-image:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* WordPress alignment classes */
.article-content .alignnone,
.article-content .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--accent-amber);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    font-family: 'VT323', monospace;
    transition: color 0.2s ease;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--accent-orange);
}

/* Footer */
footer {
    background: var(--bg-secondary);
    border-top: 2px solid var(--accent-orange);
    padding: 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Responsive design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terminal-nav {
        font-size: 1.25rem;
        gap: 1rem;
    }
    
    .logo-container h1 {
        font-size: 2rem;
    }
    
    .article-header h2 {
        font-size: 2rem;
    }
    
    main {
        padding: 0 1.5rem;
        margin: 2rem auto;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* WordPress specific styles */
.sticky {
    border: 2px solid var(--accent-orange);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.bypostauthor {
    background: var(--bg-secondary);
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 0.5rem;
}

.alignleft {
    float: left;
    margin: 0 1.5rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0 0 1rem 1.5rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Comments */
.comments-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

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

.comment {
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 5px;
}

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

.comment-author {
    font-weight: bold;
    color: var(--accent-orange);
}

.comment-reply-link {
    color: var(--accent-orange);
    text-decoration: none;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
}

.page-numbers {
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--accent-orange);
    color: white;
}
