/* ===== CASINO EN LIGNE SUISSE - Main Stylesheet ===== */
:root {
    --primary: #c41230;
    --primary-dark: #9e0f27;
    --secondary: #1a1a2e;
    --accent-gold: #d4af37;
    --accent-green: #2ecc71;
    --dark: #0f0f1a;
    --dark-card: #1a1a2e;
    --dark-surface: #16213e;
    --light: #ffffff;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0b0;
    --text-dark: #333333;
    --border-color: #2a2a4a;
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
    --info: #3498db;
    --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --gradient-cta: linear-gradient(135deg, #c41230 0%, #e74c3c 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f0c040 100%);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 30px rgba(196, 18, 48, 0.3);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Montserrat', var(--font-main);
    --max-width: 1200px;
    --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: var(--font-main);
    background: var(--dark);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-gold); text-decoration: none; transition: var(--transition); }
a:hover { color: #f0c040; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--light);
    margin-bottom: 1rem;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
p { margin-bottom: 1rem; color: var(--text-primary); }

/* ===== UTILITY CLASSES ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 0; }
.section-dark { background: var(--secondary); }
.section-darker { background: var(--dark); }
.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-red { color: var(--primary); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}
.badge-gold { background: var(--gradient-gold); color: var(--dark); }
.badge-red { background: var(--primary); color: var(--light); }
.badge-green { background: var(--success); color: var(--light); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--gradient-cta);
    color: var(--light);
    box-shadow: 0 4px 15px rgba(196, 18, 48, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 18, 48, 0.6);
    color: var(--light);
}
.btn-gold {
    background: var(--gradient-gold);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    color: var(--dark);
}
.btn-outline {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--accent-gold);
}
.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--dark);
}
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.125rem; }

/* ===== HEADER & NAVIGATION ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo .swiss-cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 4px;
    color: var(--light);
    font-weight: 900;
    font-size: 1.25rem;
}
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav a {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}
.nav-cta {
    background: var(--gradient-cta) !important;
    color: var(--light) !important;
    padding: 0.5rem 1.25rem !important;
    font-weight: 700 !important;
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== DROPDOWN NAVIGATION ===== */
.nav-dropdown {
    position: relative;
}
.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.nav-dropdown > a::after {
    content: '\25BE';
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}
.nav-dropdown:hover > a::after {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    min-width: 240px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    max-height: 70vh;
    overflow-y: auto;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    color: var(--text-secondary) !important;
    background: none !important;
    border-radius: 0 !important;
}
.dropdown-menu a:hover {
    color: var(--accent-gold) !important;
    background: rgba(212, 175, 55, 0.08) !important;
}
.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.35rem 0;
}
.dropdown-label {
    padding: 0.5rem 1.25rem 0.25rem;
    font-size: 0.7rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}
.age-banner {
    background: var(--warning);
    color: var(--dark);
    text-align: center;
    padding: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}
.site-header { top: 30px; }

/* ===== HERO SECTION ===== */
.hero {
    background: var(--gradient-hero);
    padding: 10rem 0 5rem;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 18, 48, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-text h1 { margin-bottom: 1.5rem; }
.hero-text h1 .highlight { color: var(--accent-gold); }
.hero-text .subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}
.hero-stat { text-align: center; }
.hero-stat .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
    display: block;
}
.hero-stat .label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-pick-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    width: 100%;
    max-width: 420px;
}
.top-pick-card .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.top-pick-card .rank-badge {
    background: var(--gradient-gold);
    color: var(--dark);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

/* ===== CASINO CARD (Top List) ===== */
.casino-list { display: flex; flex-direction: column; gap: 1.5rem; }
.casino-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: 50px 180px 1fr 200px 160px;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
    position: relative;
}
.casino-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}
.casino-card.featured {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, var(--dark-card) 100%);
}
.casino-card.featured::before {
    content: 'Top Pick';
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 0.2rem 0.75rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}
.casino-rank {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-align: center;
}
.casino-brand {
    display: flex;
    flex-direction: column;
}
.casino-brand .name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light);
}
.casino-brand .sub { font-size: 0.8rem; color: var(--text-secondary); }
.casino-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.casino-info .bonus {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-gold);
}
.casino-info .details { font-size: 0.85rem; color: var(--text-secondary); }
.casino-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}
.rating-stars { color: var(--accent-gold); font-size: 1rem; letter-spacing: 2px; }
.rating-score {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--light);
}
.rating-label { font-size: 0.75rem; color: var(--text-secondary); }
.casino-action { text-align: center; }

/* ===== FEATURE BOXES ===== */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.feature-box {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
}
.feature-box:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}
.feature-box .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.feature-box h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.feature-box p { font-size: 0.9rem; color: var(--text-secondary); }

/* ===== COMPARISON TABLE ===== */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark-card);
    border-radius: var(--radius);
    overflow: hidden;
}
.comparison-table thead th {
    background: var(--dark-surface);
    color: var(--accent-gold);
    padding: 1rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid var(--accent-gold);
}
.comparison-table tbody td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}
.comparison-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}
.check { color: var(--success); font-weight: 700; }
.cross { color: var(--danger); font-weight: 700; }

/* ===== REVIEW CARD ===== */
.review-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}
.review-card .card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}
.review-card .card-body { padding: 1.5rem; }
.review-card .card-footer {
    padding: 1rem 1.5rem;
    background: rgba(0,0,0,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.5rem 0; }
.pros li::before { content: '+'; color: var(--success); font-weight: 700; margin-right: 0.5rem; }
.cons li::before { content: '-'; color: var(--danger); font-weight: 700; margin-right: 0.5rem; }
.pros li, .cons li { padding: 0.35rem 0; font-size: 0.9rem; }

/* ===== FAQ / ACCORDION ===== */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--light);
    transition: var(--transition);
}
.faq-question:hover { color: var(--accent-gold); }
.faq-question .arrow { transition: transform 0.3s ease; font-size: 0.8rem; }
.faq-item.active .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 1.5rem;
}
.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
}
.faq-answer p { color: var(--text-secondary); font-size: 0.95rem; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    padding: 1rem 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.breadcrumbs a { color: var(--text-secondary); }
.breadcrumbs a:hover { color: var(--accent-gold); }
.breadcrumbs span { margin: 0 0.5rem; }

/* ===== TABLE OF CONTENTS ===== */
.toc {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}
.toc h4 { color: var(--accent-gold); margin-bottom: 1rem; font-size: 1rem; }
.toc ol { counter-reset: toc; padding-left: 0; }
.toc li {
    counter-increment: toc;
    padding: 0.35rem 0;
    font-size: 0.9rem;
}
.toc li::before {
    content: counter(toc) ".";
    color: var(--accent-gold);
    font-weight: 600;
    margin-right: 0.5rem;
}
.toc a { color: var(--text-primary); }
.toc a:hover { color: var(--accent-gold); }

/* ===== AUTHOR BOX (E-E-A-T) ===== */
.author-box {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin: 2rem 0;
}
.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    flex-shrink: 0;
}
.author-info h4 { margin-bottom: 0.25rem; }
.author-info .role { color: var(--accent-gold); font-size: 0.85rem; margin-bottom: 0.5rem; }
.author-info p { font-size: 0.9rem; color: var(--text-secondary); }

/* ===== CONTENT ARTICLE ===== */
.article-content { max-width: 800px; margin: 0 auto; }
.article-content h2 { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-color); }
.article-content h3 { margin-top: 1.5rem; color: var(--accent-gold); }
.article-content ul, .article-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.article-content li { padding: 0.25rem 0; color: var(--text-primary); list-style: disc; }
.article-content ol li { list-style: decimal; }
.article-content blockquote {
    border-left: 4px solid var(--accent-gold);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-content blockquote p { color: var(--text-primary); margin: 0; font-style: italic; }
.info-box {
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid var(--info);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}
.warning-box {
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid var(--warning);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--secondary);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}
.footer-about .logo { margin-bottom: 1rem; }
.footer-about p { font-size: 0.9rem; color: var(--text-secondary); }
.footer-col h4 {
    color: var(--accent-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.footer-col a {
    display: block;
    padding: 0.3rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.footer-col a:hover { color: var(--accent-gold); }
.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-badges { display: flex; gap: 1rem; align-items: center; }
.footer-badges img { height: 30px; opacity: 0.7; }
.responsible-gambling {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid var(--danger);
    border-radius: var(--radius-sm);
    padding: 1rem 1.5rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

/* ===== PAYMENT ICONS ===== */
.payment-methods {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}
.payment-icon {
    background: var(--dark-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .casino-card {
        grid-template-columns: 40px 1fr 1fr;
        grid-template-rows: auto auto;
    }
    .casino-rating { grid-column: 2; }
    .casino-action { grid-column: 3; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-content { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .main-nav { display: none; }
    .mobile-menu-btn { display: block; }
    .main-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }
    .casino-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    .casino-rank { font-size: 1.2rem; }
    .hero { min-height: auto; padding: 8rem 0 3rem; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .pros-cons { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .author-box { flex-direction: column; text-align: center; align-items: center; }
    .section { padding: 3rem 0; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease-out forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===== SCHEMA / STRUCTURED DATA STYLING ===== */
.rating-widget {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dark-surface);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}
.stars { color: var(--accent-gold); }

/* ===== LAST UPDATED ===== */
.last-updated {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    background: var(--gradient-cta);
    color: var(--light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(196, 18, 48, 0.4);
}
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top.visible { display: flex; }
