/*
Theme Name: Birilium v2
Theme URI: https://birilium.com
Author: Ilan Levi
Author URI: https://birilium.com
Description: Official Birilium cryptocurrency website theme - Modern, secure, and user-friendly design for the Birilium wallet and mining platform.
Version: 2.1.0
License: MIT License
License URI: https://opensource.org/licenses/MIT
Text Domain: birilium
Tags: cryptocurrency, blockchain, wallet, mining, one-column, custom-menu, featured-images

Birilium - Decentralized Cryptocurrency Made Simple
*/

/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --gold-color: #ffd700;
    --silver-color: #c0c0c0;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --success-color: #00d26a;
    --warning-color: #ffaa00;
    --danger-color: #ff4444;
    --gradient-primary: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --gradient-accent: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffaa00 50%, #ff8c00 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 30px rgba(233, 69, 96, 0.3);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--gradient-primary);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

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

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 15px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.site-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== NAVIGATION ===== */
.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

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

.nav-buttons {
    display: flex;
    gap: 15px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(233, 69, 96, 0.4);
}

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

.btn-secondary:hover {
    background: var(--highlight-color);
    transform: translateY(-3px);
}

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

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 700px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--gold-color);
    color: var(--gold-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
}


/* ===== FEATURES SECTION ===== */
.features {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2rem;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.feature-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: var(--secondary-color);
    position: relative;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, var(--highlight-color), var(--gold-color));
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 250px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-glow);
}

.step h3 {
    margin-bottom: 12px;
}

/* ===== DOWNLOAD SECTION ===== */
.download {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.download-info h2 {
    margin-bottom: 24px;
}

.download-features {
    list-style: none;
    margin-bottom: 40px;
}

.download-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.download-features li::before {
    content: '\2713';
    width: 24px;
    height: 24px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.platform-btn:hover {
    background: var(--highlight-color);
    border-color: var(--highlight-color);
    transform: translateY(-3px);
}

.platform-btn .icon {
    font-size: 1.5rem;
}

.platform-btn .text {
    text-align: left;
}

.platform-btn .text small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.platform-btn .text strong {
    font-size: 1rem;
}

.platform-btn:hover .text small {
    color: rgba(255, 255, 255, 0.8);
}

.platform-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.platform-btn.disabled:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: none;
}

.download-visual {
    position: relative;
}

.app-screenshot {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.version-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gradient-gold);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
}

/* ===== SPECS SECTION ===== */
.specs {
    background: var(--primary-color);
}

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

.spec-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
}

.spec-card .value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 8px;
}

.spec-card .label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* ===== SECURITY SECTION ===== */
.security {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

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

.security-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.security-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 210, 106, 0.1);
    border: 1px solid var(--success-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.security-item h4 {
    margin-bottom: 8px;
    color: var(--text-color);
}

.security-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== FAQ SECTION ===== */
.faq {
    background: var(--secondary-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 24px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--primary-color);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 20px;
    max-width: 300px;
}

.footer-section h4 {
    color: var(--gold-color);
    margin-bottom: 24px;
    font-size: 1rem;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--highlight-color);
    border-color: var(--highlight-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ===== CONTACT MODAL ===== */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-modal.active {
    display: flex;
}

.modal-content {
    background: var(--secondary-color);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--highlight-color);
}

.modal-header {
    padding: 40px 40px 20px;
    text-align: center;
}

.modal-header h3 {
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 0.95rem;
}

.contact-form {
    padding: 0 40px 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--highlight-color);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    margin-top: 10px;
}

.form-message {
    padding: 12px 18px;
    border-radius: 10px;
    margin-top: 15px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(0, 210, 106, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.form-message.error {
    display: block;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid var(--danger-color);
    color: var(--danger-color);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-text {
        max-width: 100%;
    }

    .download-content {
        grid-template-columns: 1fr;
    }

    .download-visual {
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .steps-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .steps-container::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

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

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
    }

    .nav-buttons {
        width: 100%;
        flex-direction: column;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .section {
        padding: 60px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

    .platform-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .modal-content {
        margin: 10px;
    }

    .modal-header,
    .contact-form {
        padding-left: 25px;
        padding-right: 25px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-gold { color: var(--gold-color); }
.text-highlight { color: var(--highlight-color); }
.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.hidden { display: none !important; }

/* ===== LOADING ANIMATION ===== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== ARTICLES PAGE ===== */
.articles-hero {
    background: var(--gradient-primary);
    padding: 120px 0 60px;
    text-align: center;
}

.articles-hero .page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-color);
}

.articles-hero .page-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.articles-section {
    background: var(--primary-color);
    padding: 60px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.article-card {
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 215, 0, 0.2);
}

.article-thumbnail {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-thumbnail img {
    transform: scale(1.05);
}

.article-content {
    padding: 24px;
}

.article-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.article-date {
    color: var(--text-muted);
}

.article-category {
    color: var(--gold-color);
    font-weight: 500;
}

.article-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.article-title a:hover {
    color: var(--gold-color);
}

.article-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.article-read-more {
    color: var(--gold-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.article-read-more:hover {
    color: var(--highlight-color);
}

/* Articles Pagination */
.articles-pagination {
    margin-top: 50px;
    text-align: center;
}

.articles-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.articles-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--secondary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.articles-pagination .page-numbers:hover,
.articles-pagination .page-numbers.current {
    background: var(--gold-color);
    color: var(--primary-color);
    border-color: var(--gold-color);
}

/* No Articles State */
.no-articles {
    text-align: center;
    padding: 80px 20px;
}

.no-articles h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--text-color);
}

.no-articles p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Single Article Styles */
.single-article {
    background: var(--primary-color);
    padding: 120px 0 60px;
}

.single-article .article-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.single-article .article-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.single-article .article-meta {
    justify-content: center;
    margin-bottom: 0;
}

.single-article .article-featured-image {
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.single-article .article-featured-image img {
    width: 100%;
    height: auto;
}

.single-article .article-body {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.single-article .article-body p {
    margin-bottom: 1.5em;
}

.single-article .article-body h2,
.single-article .article-body h3,
.single-article .article-body h4 {
    margin-top: 2em;
    margin-bottom: 1em;
    color: var(--text-color);
}

.single-article .article-body a {
    color: var(--gold-color);
}

.single-article .article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5em 0;
}

.single-article .article-body ul,
.single-article .article-body ol {
    margin: 1.5em 0;
    padding-left: 2em;
}

.single-article .article-body li {
    margin-bottom: 0.5em;
}

.single-article .article-body blockquote {
    border-left: 4px solid var(--gold-color);
    padding-left: 20px;
    margin: 1.5em 0;
    font-style: italic;
    color: var(--text-muted);
}

.single-article .article-body code {
    background: var(--secondary-color);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
}

.single-article .article-body pre {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5em 0;
}

/* Article Navigation */
.article-navigation {
    max-width: 800px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.article-navigation a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.article-navigation a:hover {
    color: var(--gold-color);
}

/* Page Template Styles */
.page-hero {
    background: var(--gradient-primary);
    padding: 120px 0 60px;
    text-align: center;
}

.page-hero .page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-content-section {
    background: var(--primary-color);
    padding: 60px 0;
}

.page-content-section .page-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.8;
}

.page-content-section .page-content h2,
.page-content-section .page-content h3 {
    margin-top: 2em;
    margin-bottom: 1em;
}

.page-content-section .page-content p {
    margin-bottom: 1.5em;
}

.page-content-section .page-content ul,
.page-content-section .page-content ol {
    margin: 1.5em 0;
    padding-left: 2em;
}

.page-content-section .page-content li {
    margin-bottom: 0.5em;
}

.page-content-section .page-content a {
    color: var(--gold-color);
}

/* Responsive Articles */
@media (max-width: 768px) {
    .articles-hero {
        padding: 100px 0 40px;
    }

    .articles-hero .page-title {
        font-size: 2rem;
    }

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

    .single-article .article-title {
        font-size: 1.75rem;
    }

    .article-navigation {
        flex-direction: column;
    }
}
