/* CSS Variables - Black and Red Color Scheme (inspired by fist.png) */
:root {
    --primary-dark: #c62828;
    --primary: #e53935;
    --primary-light: #f44336;
    --primary-lighter: #ff5252;
    --accent: #ff1744;
    --background: #0a0a0a;
    --background-alt: #111111;
    --background-card: #1a1a1a;
    --background-elevated: #222222;
    --text-dark: #f5f5f5;
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --border: #2a2a2a;
    --border-light: #3a3a3a;
    --shadow: rgba(0, 0, 0, 0.5);
    --shadow-red: rgba(244, 67, 54, 0.25);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--background);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
.header {
    background: var(--primary);
    color: var(--text-light);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-link {
    color: var(--text-light);
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    position: relative;
    transition: background-color 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    left: 0;
    transition: transform 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Main Content */
.main-content {
    flex: 1;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Banner Section */
.hero-banner {
    position: relative;
    min-height: 450px;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
}

.hero-fist {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.hero-fist img {
    height: 350px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(244, 67, 54, 0.4));
}

.hero-fist-left {
    margin-right: 2rem;
}

.hero-fist-right {
    margin-left: 2rem;
}

.hero-banner-content {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
    max-width: 600px;
    z-index: 1;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 40px rgba(244, 67, 54, 0.6), 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-banner-content .tagline {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
    font-weight: 400;
}

.hero-banner-content .subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

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

/* Hero Section (non-banner) */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--primary-dark);
    color: var(--text-light);
    margin-bottom: 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-red);
}

.btn-secondary {
    background-color: var(--primary);
    color: var(--text-light);
}

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

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

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-light);
    color: var(--primary-light);
}

/* Info Strip */
.info-strip {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 1rem 2rem;
    text-align: center;
}

.info-strip p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* Section Styles */
.section {
    padding: 4rem 0;
}

.section-light {
    background: var(--background-alt);
}

.section-alt {
    background: var(--background);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.feature-card {
    background: var(--background-card);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
    border-top: 4px solid var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-red);
}

.feature-card h3 {
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Back Button */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--background-elevated);
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 1rem;
}

.back-button:hover {
    background: var(--primary-dark);
    color: var(--text-light);
    border-color: var(--primary);
}

.back-button svg {
    width: 16px;
    height: 16px;
}

.back-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem 0;
}

/* Page Header */
.page-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    color: var(--text-light);
    background: var(--background);
    min-height: 280px;
}

.page-header-fist {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.page-header-fist img {
    height: 200px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(244, 67, 54, 0.4));
}

.page-header-fist-left {
    margin-right: 2rem;
}

.page-header-fist-right {
    margin-left: 2rem;
}

.page-header-content {
    text-align: center;
    max-width: 500px;
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(244, 67, 54, 0.5), 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.page-header-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Content Section */
.content-section {
    background: var(--background-card);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
}

/* Support Cards */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.support-card {
    padding: 2.5rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    text-align: center;
    background: var(--background-card);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px var(--shadow-red);
}

.support-card h3 {
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.support-card p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

/* FAQ Styles */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--background-card);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: var(--background-elevated);
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--border);
}

.faq-icon {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 1.25rem 1.5rem;
    color: var(--text-dark);
    border-top: 1px solid var(--border);
    line-height: 1.7;
}

/* Contact Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info h3,
.contact-form-container h3 {
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    color: var(--primary-light);
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-muted);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 0.85rem 1rem;
    border: 2px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: var(--background-elevated);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Call to Action */
.cta-section {
    background: var(--primary);
    color: var(--text-light);
    text-align: center;
    padding: 4rem 2rem;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--text-light);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        display: none;
    }

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

    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Hero Banner Responsive */
    .hero-banner {
        flex-direction: column;
        min-height: auto;
        padding: 2rem 1rem;
    }

    .hero-fist {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .hero-banner-content .tagline {
        font-size: 1.1rem;
    }

    .hero-banner-content .subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

    /* Page Header Responsive */
    .page-header {
        flex-direction: column;
        padding: 2rem 1rem;
        min-height: auto;
    }

    .page-header-fist {
        display: none;
    }

    .page-header-content h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .container {
        padding: 1.5rem;
    }

    .donate-card {
        padding: 2rem;
    }

    .donate-amounts {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium screens - show smaller fists */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-fist img {
        height: 250px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-fist-left {
        margin-right: 1rem;
    }

    .hero-fist-right {
        margin-left: 1rem;
    }

    .page-header-fist img {
        height: 150px;
    }

    .page-header-fist-left {
        margin-right: 1rem;
    }

    .page-header-fist-right {
        margin-left: 1rem;
    }

    .page-header-content h1 {
        font-size: 2.5rem;
    }
}

/* Flash Messages */
.flash-messages {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.flash-message {
    padding: 1rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.flash-success {
    background-color: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.flash-error {
    background-color: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.flash-info {
    background-color: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.flash-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    line-height: 1;
    padding: 0;
    margin-left: 1rem;
    color: inherit;
}

.flash-close:hover {
    opacity: 1;
}

/* Donation Section */
.donate-section {
    display: flex;
    justify-content: center;
}

.donate-card {
    background: var(--background-card);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    max-width: 500px;
    width: 100%;
    text-align: center;
    border: 1px solid var(--border);
}

.paypal-icon {
    margin-bottom: 1.5rem;
}

.donate-card h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.donate-card > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.donate-form {
    text-align: left;
}

.donate-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.amount-btn {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: 6px;
    background: var(--background-elevated);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.amount-btn:hover,
.amount-btn.active {
    border-color: var(--primary);
    background: var(--primary-dark);
    color: var(--text-light);
}

.custom-amount {
    margin-bottom: 1.5rem;
}

.custom-amount label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.amount-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    font-weight: 600;
}

.amount-input-wrapper input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2rem;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    background: var(--background-elevated);
    color: var(--text-dark);
}

.amount-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-paypal {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #0070ba;
    color: var(--text-light);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-paypal:hover {
    background: #003087;
}

.btn-paypal svg {
    flex-shrink: 0;
}

.config-notice {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 4px;
    font-size: 0.9rem;
    text-align: center;
}

/* FAQ Filters */
.faq-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.6rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: 25px;
    background: var(--background-elevated);
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary-light);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-light);
}

/* FAQ Loading State */
.faq-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--text-muted);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

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

.faq-list.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* FAQ Error State */
.faq-error {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

.faq-error p {
    margin-bottom: 1rem;
}

.no-faqs {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Responsive FAQ Filters */
@media (max-width: 768px) {
    .faq-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 400px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--background-card);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.toast-visible {
    transform: translateX(0);
    opacity: 1;
}

.toast-hiding {
    transform: translateX(120%);
    opacity: 0;
}

.toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.toast-icon svg {
    width: 100%;
    height: 100%;
}

.toast-content {
    flex: 1;
    min-width: 0;
}

.toast-message {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.toast-close {
    flex-shrink: 0;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    margin: -0.25rem -0.25rem 0 0;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.toast-close:hover {
    opacity: 1;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: currentColor;
    opacity: 0.3;
}

@keyframes toastProgress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

/* Toast Types */
.toast-success {
    border-left: 4px solid #22c55e;
}

.toast-success .toast-icon {
    color: #22c55e;
}

.toast-success .toast-progress {
    background: #22c55e;
}

.toast-error {
    border-left: 4px solid #ef4444;
}

.toast-error .toast-icon {
    color: #ef4444;
}

.toast-error .toast-progress {
    background: #ef4444;
}

.toast-warning {
    border-left: 4px solid #f59e0b;
}

.toast-warning .toast-icon {
    color: #f59e0b;
}

.toast-warning .toast-progress {
    background: #f59e0b;
}

.toast-info {
    border-left: 4px solid #3b82f6;
}

.toast-info .toast-icon {
    color: #3b82f6;
}

.toast-info .toast-progress {
    background: #3b82f6;
}

/* Responsive Toast */
@media (max-width: 480px) {
    .toast-container {
        top: auto;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        max-width: none;
    }

    .toast {
        transform: translateY(120%);
    }

    .toast-visible {
        transform: translateY(0);
    }

    .toast-hiding {
        transform: translateY(120%);
    }
}

/* Feature Card Links */
.feature-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.feature-card-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-red);
}

.feature-card-link:hover h3 {
    color: var(--primary-lighter);
}

.card-link-text {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s ease;
}

.feature-card-link:hover .card-link-text {
    transform: translateX(5px);
}

/* Issue Page Styles */
.issue-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.issue-content {
    max-width: 800px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    color: var(--primary-light);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.content-block p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

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

.content-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.content-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.content-callout {
    background: var(--background-card);
    border-left: 4px solid var(--primary);
    padding: 2rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
}

.content-callout h3 {
    color: var(--primary-light);
    margin-bottom: 0.75rem;
}

.content-callout p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat-card {
    background: var(--background-card);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow);
    border: 1px solid var(--border);
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Related Issues */
.related-issues {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-card {
    display: block;
    background: var(--background-card);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-red);
}

.related-card h3 {
    color: var(--primary-light);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.related-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.read-more {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.related-card:hover .read-more {
    text-decoration: underline;
}

/* Responsive Issue Page */
@media (max-width: 768px) {
    .lead-text {
        font-size: 1.1rem;
    }

    .content-block h2 {
        font-size: 1.5rem;
    }

    .stat-value {
        font-size: 2rem;
    }

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

/* ========================================
   MOBILE & BROWSER OPTIMIZATIONS
   ======================================== */

/* Very Small Screens (< 480px) */
@media (max-width: 480px) {
    .header-container {
        padding: 0.75rem 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo-subtitle {
        font-size: 0.55rem;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .hero-banner-content {
        padding: 1rem;
    }

    .hero-banner-content .tagline {
        font-size: 1rem;
    }

    .hero-banner-content .subtitle {
        font-size: 0.9rem;
    }

    .page-header-content h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

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

    .section {
        padding: 2.5rem 0;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .section-title p {
        font-size: 0.95rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .support-card {
        padding: 1.5rem;
    }

    .cta-section {
        padding: 2.5rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .back-nav {
        padding: 0.75rem 1rem 0;
    }

    .back-button {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .info-strip {
        padding: 0.75rem 1rem;
    }

    .info-strip p {
        font-size: 0.85rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets for mobile */
    .nav-link {
        padding: 0.85rem 1.2rem;
        min-height: 44px;
    }

    .btn {
        min-height: 48px;
        padding: 0.85rem 2rem;
    }

    .faq-question {
        padding: 1.25rem 1rem;
        min-height: 56px;
    }

    .filter-btn {
        padding: 0.75rem 1.25rem;
        min-height: 44px;
    }

    .amount-btn {
        min-height: 48px;
    }

    .back-button {
        min-height: 44px;
    }

    /* Remove hover effects on touch devices */
    .feature-card:hover,
    .support-card:hover,
    .related-card:hover,
    .feature-card-link:hover {
        transform: none;
    }

    /* Add active state for touch feedback */
    .btn:active,
    .feature-card:active,
    .nav-link:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
}

/* Large screens (> 1200px) */
@media (min-width: 1201px) {
    .container {
        max-width: 1400px;
    }

    .hero-fist img {
        height: 400px;
    }

    .hero-title {
        font-size: 5.5rem;
    }

    .page-header-fist img {
        height: 250px;
    }
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
.faq-question:focus,
.filter-btn:focus,
.back-button:focus,
.feature-card-link:focus,
.related-card:focus {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

.form-group input:focus,
.form-group textarea:focus,
.amount-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .back-nav,
    .hero-fist,
    .page-header-fist,
    .cta-section,
    .toast-container {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .section-light,
    .section-alt {
        background: white;
    }

    a {
        text-decoration: underline;
    }
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent text overflow */
h1, h2, h3, h4, h5, h6, p {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Better text rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Selection styling */
::selection {
    background: var(--primary);
    color: var(--text-light);
}

::-moz-selection {
    background: var(--primary);
    color: var(--text-light);
}

/* ========================================
   UPDATES/BLOG PAGE STYLES
   ======================================== */

.updates-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    justify-content: center;
}

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

.updates-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.updates-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--text-muted);
}

/* Update Card */
.update-card {
    background: var(--background-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.update-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--shadow);
}

.update-card.pinned {
    border-left: 4px solid var(--primary);
}

.update-header {
    padding: 1.5rem 1.5rem 0;
}

.update-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.update-date {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.update-date svg {
    width: 14px;
    height: 14px;
}

.update-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary-dark);
    color: var(--text-light);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.update-category.announcement { background: #3b82f6; }
.update-category.strike { background: var(--primary); }
.update-category.event { background: #8b5cf6; }
.update-category.victory { background: #22c55e; }

.pinned-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.6rem;
    background: rgba(244, 67, 54, 0.15);
    color: var(--primary-light);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pinned-badge svg {
    width: 12px;
    height: 12px;
}

.update-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    line-height: 1.3;
}

.update-body {
    padding: 1rem 1.5rem 1.5rem;
}

.update-content {
    color: var(--text-dark);
    line-height: 1.8;
    white-space: pre-line;
}

.update-content p {
    margin-bottom: 1rem;
}

.update-content p:last-child {
    margin-bottom: 0;
}

.update-footer {
    padding: 1rem 1.5rem;
    background: var(--background-elevated);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.update-author {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.update-share {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--background-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.share-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-light);
}

.share-btn svg {
    width: 16px;
    height: 16px;
}

/* No Updates State */
.no-updates {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

.no-updates p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .update-title {
        font-size: 1.25rem;
    }

    .update-header {
        padding: 1.25rem 1.25rem 0;
    }

    .update-body {
        padding: 0.75rem 1.25rem 1.25rem;
    }

    .update-footer {
        padding: 1rem 1.25rem;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .update-meta {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .update-title {
        font-size: 1.1rem;
    }

    .update-header {
        padding: 1rem 1rem 0;
    }

    .update-body {
        padding: 0.75rem 1rem 1rem;
    }

    .update-footer {
        padding: 0.75rem 1rem;
    }

    .update-content {
        font-size: 0.95rem;
    }
}

/* ========================================
   SOCIAL LINKS STYLES
   ======================================== */

.social-links-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.social-links-container h3 {
    color: var(--primary-light);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.social-intro {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--background-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.social-link:hover {
    border-color: var(--primary);
    transform: translateX(5px);
    box-shadow: 0 4px 20px var(--shadow-red);
}

.social-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-elevated);
    border-radius: 12px;
    transition: background 0.2s ease;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-link-twitter .social-icon { color: #1da1f2; }
.social-link-instagram .social-icon { color: #e4405f; }
.social-link-linkedin .social-icon { color: #0077b5; }

.social-link:hover .social-icon {
    background: var(--primary-dark);
}

.social-link:hover .social-icon svg {
    color: var(--text-light);
}

.social-content {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.social-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

.social-handle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.social-arrow {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.social-arrow svg {
    width: 20px;
    height: 20px;
}

.social-link:hover .social-arrow {
    color: var(--primary-light);
    transform: translateX(5px);
}

/* Contact Extras */
.contact-extras {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: left;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.contact-extras .contact-item {
    padding: 1rem;
    background: var(--background-card);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.contact-extras .contact-item strong {
    display: block;
    color: var(--primary-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.contact-extras .contact-item p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-extras .contact-item a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-extras .contact-item a:hover {
    color: var(--primary-lighter);
    text-decoration: underline;
}

/* Responsive Social Links */
@media (max-width: 768px) {
    .social-links-container h3 {
        font-size: 1.5rem;
    }

    .social-intro {
        font-size: 1rem;
    }

    .social-link {
        padding: 1rem 1.25rem;
    }

    .social-icon {
        width: 42px;
        height: 42px;
    }

    .social-name {
        font-size: 1rem;
    }

    .contact-extras {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .social-link {
        padding: 1rem;
        gap: 0.75rem;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }

    .social-name {
        font-size: 0.95rem;
    }

    .social-handle {
        font-size: 0.8rem;
    }
}

/* Touch-friendly social links */
@media (hover: none) and (pointer: coarse) {
    .social-link {
        min-height: 70px;
    }

    .social-link:hover {
        transform: none;
    }

    .social-link:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
}

/* ========================================
   HOMEPAGE COMPACT STYLES
   ======================================== */

.homepage .hero-banner {
    min-height: auto;
    padding: 1rem 2rem;
}

.homepage .hero-fist img {
    height: 120px;
}

.homepage .hero-title {
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
}

.homepage .hero-banner-content {
    padding: 0.5rem;
}

.homepage .hero-banner-content .tagline {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.homepage .hero-banner-content .subtitle {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.homepage .hero-buttons .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.homepage .info-strip {
    padding: 0.5rem 1rem;
}

.homepage .info-strip p {
    font-size: 0.85rem;
}

.homepage .section {
    padding: 1rem 0;
}

.homepage .container {
    padding: 0.5rem 1rem;
}

.homepage .footer {
    padding: 1rem 0 0.5rem;
}

.homepage .footer-content {
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.homepage .footer-section h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.homepage .footer-section p,
.homepage .footer-section a {
    font-size: 0.8rem;
    line-height: 1.5;
}

.homepage .footer-bottom {
    padding-top: 0.75rem;
    font-size: 0.75rem;
}

/* Responsive homepage adjustments */
@media (max-width: 768px) {
    .homepage .hero-title {
        font-size: 2rem;
    }

    .homepage .hero-fist {
        display: none;
    }

    .homepage .hero-banner {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .homepage .header-container {
        padding: 0.5rem 1rem;
    }

    .homepage .hero-title {
        font-size: 1.75rem;
    }

    .homepage .hero-banner-content .tagline {
        font-size: 0.9rem;
    }

    .homepage .hero-banner-content .subtitle {
        font-size: 0.8rem;
    }
}

/* ========================================
   SLIDES CONTAINER & STYLES
   ======================================== */

.slides-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-height: 80vh;
    overflow-y: auto;
    padding: 1rem;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--background-card);
}

.slides-loading,
.slides-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--text-muted);
    text-align: center;
}

.slides-loading p,
.slides-error p {
    margin-top: 1rem;
}

.slides-error .btn {
    margin-top: 1rem;
}

.no-slides {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
    font-style: italic;
}

.slides-container::-webkit-scrollbar {
    width: 8px;
}

.slides-container::-webkit-scrollbar-track {
    background: var(--background-card);
    border-radius: 4px;
}

.slides-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.slides-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Base Slide Styles */
.slide {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow);
    flex-shrink: 0;
}

/* Slide 1: Breaking News Announcement */
.slide-announcement {
    text-align: center;
    position: relative;
}

.slide-header {
    background: var(--primary);
    padding: 1rem 2rem;
}

.breaking-news-badge {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide-content {
    padding: 2rem 3rem 3rem;
    background: linear-gradient(to bottom, #ffffff 70%, var(--primary-dark));
}

.slide-title {
    color: var(--primary);
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.slide-subtitle {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.slide-cta {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.slide-cta .underline {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

/* Slide 2: Comparison Slide */
.slide-comparison {
    padding: 2rem;
}

.slide-date-header {
    background: var(--primary);
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 900;
    padding: 0.75rem 1.5rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.slide-date-header .date-label {
    font-weight: 400;
}

.slide-note {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.highlight-red {
    color: var(--primary);
    font-weight: 600;
}

.highlight-blue {
    color: #2563eb;
    font-weight: 600;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 4px 1fr;
    gap: 1.5rem;
}

.comparison-grid::before {
    content: '';
    grid-column: 2;
    grid-row: 1;
    background: var(--primary);
    border-radius: 2px;
}

.comparison-column {
    display: flex;
    flex-direction: column;
}

.comparison-content {
    flex: 1;
    padding: 1.5rem;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
    border-radius: 8px 8px 0 0;
}

.comparison-content p {
    margin-bottom: 1rem;
}

.comparison-content p:last-child {
    margin-bottom: 0;
}

.comparison-label {
    background: var(--primary-dark);
    color: #ffffff;
    text-align: center;
    padding: 0.75rem;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0 0 8px 8px;
}

.comparison-column.edited .comparison-content {
    background: #fff5f5;
}

.comparison-column.unedited .comparison-content {
    background: #f0fff4;
}

/* Responsive Slides */
@media (max-width: 1024px) {
    .slide-title {
        font-size: 3rem;
    }

    .breaking-news-badge {
        font-size: 1.5rem;
    }

    .comparison-content {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .slides-container {
        max-height: none;
        overflow-y: visible;
        padding: 0;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-content {
        padding: 1.5rem;
    }

    .breaking-news-badge {
        font-size: 1.25rem;
    }

    .slide-cta {
        font-size: 1rem;
    }

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

    .comparison-grid::before {
        grid-column: 1;
        grid-row: 2;
        width: 100%;
        height: 4px;
    }

    .slide-date-header {
        font-size: 1.25rem;
    }

    .slide-comparison {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .slide-subtitle {
        font-size: 0.9rem;
    }

    .slide-cta {
        font-size: 0.9rem;
    }

    .breaking-news-badge {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .slide-date-header {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    .comparison-content {
        padding: 1rem;
        font-size: 0.75rem;
    }

    .comparison-label {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
}
