/* ============================================================
   99EXCHANGES.COM GLOBAL STYLESHEET
   Site: 99Exchanges (My99Exch / 99Exch network)
   Author: My99Exch Editorial Team
   Last Updated: May 2026
   ============================================================ */

/* ============ CSS VARIABLES ============ */
:root {
    --gold: #F6C845;
    --gold-dark: #e0b026;
    --gold-soft: rgba(246, 200, 69, 0.1);
    --gold-border: rgba(246, 200, 69, 0.3);
    --bg-black: #000000;
    --bg-darker: #050505;
    --bg-card: #111111;
    --text-light: #d1d1d1;
    --text-dim: #b0b0b0;
    --text-white: #ffffff;
    --wa-green: #25D366;
    --wa-green-hover: #20b858;
    --transition: 0.3s ease;
    --container-width: 1100px;
}

/* ============ RESET ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--bg-black);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
    padding-bottom: 70px; /* space for fixed bottom nav */
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ============ TYPOGRAPHY & LAYOUT ============ */
.container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
h1.section-title, h2.section-title {
    color: var(--gold);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    text-align: center;
}
.section-desc {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.text-gold { color: var(--gold); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a.text-gold:hover { text-decoration-thickness: 2px; }

/* Author / team name headings (kept visually small via CSS for design balance) */
.author-name { color: var(--gold); font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.team-name { color: var(--gold); font-size: 17px; font-weight: 600; margin-bottom: 6px; }

/* Sub-title used for in-page H2s that aren't section titles */
.sub-title { color: var(--gold); font-size: 22px; font-weight: 600; margin-bottom: 15px; }
.pad-section { padding: 60px 0; }
.bg-darker { background-color: var(--bg-darker); }
.bg-black { background-color: var(--bg-black); }
.title-line { width: 80px; height: 3px; background: var(--gold); margin: -15px auto 30px; }
.bottom-line-container { width: 100%; max-width: 800px; margin: 40px auto; }
.bottom-line { height: 2px; background-color: var(--gold); width: 100%; opacity: 0.5; }

/* ============ TOP HEADER (slim, mobile-app style) ============ */
.site-header {
    background-color: var(--bg-black);
    border-bottom: 2px solid var(--gold);
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header .header-logo { display: flex; align-items: center; gap: 10px; }
.site-header .header-logo img { max-height: 42px; }
.site-header .header-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-black);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.site-header .header-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(246, 200, 69, 0.4); }
.site-header .header-cta svg { width: 14px; height: 14px; fill: currentColor; }

/* ============ BOTTOM NAVIGATION (mobile-app style, fixed) ============ */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0a0a0a;
    border-top: 2px solid var(--gold);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 6px 0;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.5);
    height: 65px;
}
.bottom-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--text-dim);
    font-size: 11px;
    font-weight: 500;
    padding: 4px 2px;
    transition: var(--transition);
    text-align: center;
}
.bottom-nav a:hover, .bottom-nav a.active { color: var(--gold); }
/* Server-side active nav (no JS, no flicker) */
body[data-active-nav="home"]    .bottom-nav a[data-nav="home"],
body[data-active-nav="blog"]    .bottom-nav a[data-nav="blog"],
body[data-active-nav="about"]   .bottom-nav a[data-nav="about"],
body[data-active-nav="contact"] .bottom-nav a[data-nav="contact"] { color: var(--gold); }
.bottom-nav a svg { width: 22px; height: 22px; fill: currentColor; }
.bottom-nav a.nav-center {
    position: relative;
    margin-top: -25px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-black);
    border-radius: 50%;
    flex: 0 0 56px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(246, 200, 69, 0.5);
    border: 4px solid #0a0a0a;
}
.bottom-nav a.nav-center svg { width: 26px; height: 26px; }
.bottom-nav a.nav-center span { display: none; }

/* ============ FLOATING WHATSAPP BUTTON ============ */
@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.floating-wa-btn {
    position: fixed;
    bottom: 85px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--wa-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: wa-pulse 2s infinite;
    transition: transform var(--transition);
}
.floating-wa-btn:hover { transform: scale(1.1); }
.floating-wa-btn svg { width: 22px; height: 22px; fill: #ffffff; }

/* ============ BUTTONS ============ */
.btn-center-wrapper { display: flex; justify-content: center; margin-top: 25px; margin-bottom: 20px; width: 100%; }
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gold);
    color: var(--bg-black);
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    transition: var(--transition);
    gap: 10px;
}
.btn-whatsapp:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(246, 200, 69, 0.3); }
.btn-whatsapp svg { width: 22px; height: 22px; fill: currentColor; }
.btn-solid {
    background: var(--gold);
    color: var(--bg-black);
    padding: 12px 35px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(246, 200, 69, 0.3); }

/* ============ IMAGE LINKS ============ */
.img-wa-link { display: block; transition: transform var(--transition); }
.img-wa-link:hover { transform: scale(1.02); }

/* ============ LISTS ============ */
.styled-list {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
    display: inline-block;
    width: 100%;
    max-width: 800px;
}
.styled-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}
.styled-list li::before, .scroll-text ul li::before {
    content: "✔";
    color: var(--bg-black);
    background-color: var(--gold);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* ============ STICKY ROW LAYOUTS ============ */
.sticky-row { display: flex; align-items: flex-start; gap: 60px; margin-bottom: 80px; }
.sticky-row:last-child { margin-bottom: 40px; }
.scroll-text { flex: 1; font-size: 16px; line-height: 1.8; text-align: left; min-width: 0; }
.scroll-text h2 { color: var(--gold); font-size: 32px; margin-bottom: 20px; font-weight: 600; }
.scroll-text h3 { color: var(--gold); font-size: 22px; margin-top: 30px; margin-bottom: 15px; }
.scroll-text p { margin-bottom: 20px; }
.scroll-text ul { list-style: none; margin-bottom: 25px; }
.scroll-text ul li { position: relative; padding-left: 30px; margin-bottom: 15px; }
.sticky-image { flex: 1; position: sticky; top: 80px; min-width: 0; }
.sticky-image img { width: 100%; border-radius: 12px; border: 1px solid var(--gold-border); }

/* ============ TABLES ============ */
.table-container {
    max-width: 1000px;
    margin: 40px auto;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gold-border);
}
.custom-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.custom-table th, .custom-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    word-wrap: break-word;
}
.custom-table th { background-color: var(--gold); color: var(--bg-black); font-size: 18px; font-weight: bold; }
.custom-table td:first-child {
    width: 35%;
    color: var(--gold);
    font-weight: 600;
    font-size: 16px;
    vertical-align: top;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.custom-table td:last-child { width: 65%; font-size: 15px; line-height: 1.6; vertical-align: top; }
.custom-table tr:hover td { background-color: var(--gold-soft); }

/* ============ STEP CARDS (9-step grid) ============ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.step-card {
    background: var(--bg-card);
    padding: 30px 25px;
    border-radius: 8px;
    border-top: 3px solid var(--gold);
    text-align: left;
    transition: var(--transition);
    min-width: 0;
}
.step-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px var(--gold-soft); }
.step-num { color: var(--gold); font-size: 28px; font-weight: 800; margin-bottom: 15px; display: block; opacity: 0.8; }
.step-card h3 { color: var(--text-white); font-size: 20px; margin-bottom: 15px; }
.step-card p { font-size: 14.5px; line-height: 1.6; color: var(--text-dim); margin-bottom: 10px; }
.step-card ul { list-style: none; padding-left: 0; margin-top: 15px; }
.step-card ul li { position: relative; padding-left: 20px; font-size: 14px; margin-bottom: 8px; color: var(--text-light); }
.step-card ul li::before { content: "•"; color: var(--gold); position: absolute; left: 0; font-size: 18px; line-height: 1; }

/* ============ TEXT BLOCKS ============ */
.text-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 40px; }
.text-block {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    text-align: left;
    min-width: 0;
}
.text-block h3 { color: var(--gold); font-size: 22px; margin-bottom: 15px; }
.text-block p { color: var(--text-light); font-size: 15px; line-height: 1.7; margin-bottom: 15px; }

/* ============ FEATURE CARDS ============ */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 40px; }
.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid rgba(246, 200, 69, 0.1);
    display: flex;
    gap: 20px;
    transition: var(--transition);
    min-width: 0;
}
.feature-card:hover { border-color: rgba(246, 200, 69, 0.5); transform: translateY(-5px); }
.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gold-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}
.feature-icon svg { width: 30px; height: 30px; fill: currentColor; }
.feature-content { text-align: left; min-width: 0; }
.feature-content h3 { color: var(--text-white); font-size: 22px; margin-bottom: 12px; }
.feature-content p { color: var(--text-dim); font-size: 15px; line-height: 1.6; }

/* ============ STAT CARDS ============ */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-top: 30px; }
.stat-card {
    background: linear-gradient(145deg, #151515, #0a0a0a);
    padding: 40px 20px;
    border-radius: 12px;
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    text-align: center;
    min-width: 0;
}
.stat-icon { width: 55px; height: 55px; margin: 0 auto 20px; color: var(--gold); }
.stat-icon svg { width: 100%; height: 100%; fill: currentColor; }
.stat-title { color: var(--gold); font-size: 24px; font-weight: 700; margin-bottom: 15px; }
.stat-desc { font-size: 14px; line-height: 1.6; color: var(--text-dim); }

/* ============ PARTNER CARDS ============ */
.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.partner-card {
    border: 1px solid rgba(246, 200, 69, 0.4);
    border-radius: 8px;
    padding: 30px 20px;
    background: var(--bg-darker);
    text-align: center;
    transition: var(--transition);
    min-width: 0;
}
.partner-card:hover { border-color: var(--gold); box-shadow: 0 0 15px rgba(246, 200, 69, 0.2); }
.partner-logo { max-height: 40px; margin: 0 auto 15px; object-fit: contain; }
.partner-name { color: var(--gold); font-size: 22px; font-weight: bold; margin-bottom: 15px; }
.partner-features { list-style: none; text-align: left; margin-bottom: 20px; padding: 0 10px; }
.partner-features li { color: #ddd; font-size: 13px; margin-bottom: 8px; position: relative; padding-left: 18px; }
.partner-features li::before { content: '✔'; color: var(--gold); position: absolute; left: 0; font-size: 14px; }
.partner-payments { display: flex; gap: 8px; justify-content: center; margin-bottom: 20px; flex-wrap: wrap; }
.partner-payments img { height: 16px; object-fit: contain; }
.partner-bonus { color: #ddd; font-size: 13px; }
.partner-bonus-big { color: var(--text-white); font-size: 18px; font-weight: bold; margin-bottom: 20px; }
.partner-demo { font-size: 13px; color: #aaa; margin-bottom: 25px; line-height: 1.6; }

/* ============ GALLERY / VIDEO GRIDS ============ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.gallery-item { border-radius: 8px; overflow: hidden; border: 2px solid #222; min-width: 0; }
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid #222;
    min-width: 0;
}
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* ============ JOURNEY / APP / FAQ CONTAINERS ============ */
.journey-container, .app-row, .faq-container { display: flex; align-items: center; gap: 50px; }
.journey-content, .app-content, .faq-content { flex: 1; text-align: left; min-width: 0; }
.journey-image, .app-image, .faq-image { flex: 1; text-align: center; min-width: 0; }
.journey-image img, .app-image img, .faq-image img { width: 100%; border-radius: 12px; }

/* ============ FAQ ACCORDION ============ */
details.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(246,200,69,0.2);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}
details.faq-item[open] { border-color: var(--gold); }
summary.faq-question {
    padding: 20px;
    font-size: 17px;
    color: var(--gold);
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
summary.faq-question::-webkit-details-marker { display: none; }
summary.faq-question::after { content: '+'; font-size: 24px; color: var(--gold); }
details.faq-item[open] summary.faq-question::after { content: '−'; }
.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 10px;
    padding-top: 15px;
}

/* ============ AUTHOR BOX (E-E-A-T signal) ============ */
.author-box {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    padding: 25px;
    margin: 40px auto;
    max-width: 800px;
    display: flex;
    gap: 20px;
    align-items: center;
}
.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-black);
    font-size: 28px;
    font-weight: bold;
    flex-shrink: 0;
}
.author-info h4 { color: var(--gold); font-size: 18px; margin-bottom: 5px; }
.author-info p { font-size: 14px; color: var(--text-dim); line-height: 1.5; }

/* ============ FOOTER ============ */
.site-footer {
    background-color: var(--bg-black);
    padding: 50px 20px 30px;
    color: var(--text-light);
}
.footer-container { max-width: var(--container-width); margin: 0 auto; }
.footer-logo-top { text-align: center; margin-bottom: 30px; }
.footer-logo-top img { max-height: 50px; margin: 0 auto; }
.footer-title {
    color: var(--gold);
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 35px;
}
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 35px;
}
.footer-list { list-style: none; }
.footer-list li { margin-bottom: 10px; position: relative; padding-left: 18px; }
.footer-list li::before {
    content: "›";
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    font-weight: bold;
}
.footer-list a {
    color: var(--text-light);
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}
.footer-list a:hover { color: var(--gold); padding-left: 3px; }
.footer-divider { border: 0; height: 1px; background-color: var(--gold); opacity: 0.3; margin: 25px 0; }
.footer-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-gamble-aware { color: var(--gold); font-size: 22px; font-weight: 600; }
.footer-logos-img { display: flex; gap: 25px; align-items: center; }
.footer-logos-img img { max-height: 45px; }
.footer-bottom-links { text-align: center; font-size: 14px; }
.footer-bottom-links a { color: var(--text-light); margin: 0 8px; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); text-decoration: underline; }
.footer-copyright {
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
    color: var(--gold);
    margin-top: 20px;
}
.footer-copyright p { margin-bottom: 6px; }

/* ============ CONTACT FORM (used on contact page) ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.contact-info { background: var(--bg-card); padding: 30px; border-radius: 10px; border-left: 4px solid var(--gold); }
.contact-info h3 { color: var(--gold); margin-bottom: 20px; font-size: 22px; }
.contact-info p { margin-bottom: 12px; font-size: 15px; }
.contact-info p strong { color: var(--gold); }
.contact-form { background: var(--bg-card); padding: 30px; border-radius: 10px; border: 1px solid var(--gold-border); }
.contact-form label { display: block; color: var(--gold); margin-bottom: 6px; font-size: 14px; font-weight: 600; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    background: #050505;
    border: 1px solid rgba(246, 200, 69, 0.2);
    border-radius: 6px;
    color: var(--text-light);
    margin-bottom: 18px;
    font-family: inherit;
    font-size: 15px;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form textarea { min-height: 120px; resize: vertical; }

/* ============ BLOG CARDS ============ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.blog-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(246, 200, 69, 0.15);
}
.blog-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 22px; }
.blog-card-meta { font-size: 12px; color: var(--text-dim); margin-bottom: 10px; }
.blog-card h3 { color: var(--text-white); font-size: 19px; margin-bottom: 12px; line-height: 1.4; }
.blog-card p { font-size: 14px; color: var(--text-dim); margin-bottom: 15px; line-height: 1.6; }
.blog-card a.read-more { color: var(--gold); font-size: 14px; font-weight: 600; }
.blog-card a.read-more:hover { text-decoration: underline; }

/* ============ LEGAL PAGE CONTENT ============ */
.legal-content { max-width: 900px; margin: 0 auto; padding: 0 20px; line-height: 1.8; }
.legal-content h2 { color: var(--gold); font-size: 26px; margin: 40px 0 15px; }
.legal-content h3 { color: var(--gold); font-size: 20px; margin: 25px 0 12px; }
.legal-content p { margin-bottom: 16px; font-size: 15px; }
.legal-content ul { margin-left: 25px; margin-bottom: 20px; }
.legal-content ul li { margin-bottom: 8px; font-size: 15px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
    .sticky-row, .app-row, .journey-container, .faq-container,
    .contact-grid { flex-direction: column; gap: 40px; display: flex; }
    .contact-grid { grid-template-columns: 1fr; }
    .sticky-row.image-left { flex-direction: column-reverse; }
    .sticky-image, .app-image, .journey-image, .faq-image { position: relative; top: 0; width: 100%; }
    .steps-grid, .features-grid, .stats-grid, .partners-grid,
    .video-grid, .text-grid, .gallery-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    h1.section-title, h2.section-title, .scroll-text h2 { font-size: 24px; }
    .pad-section { padding: 40px 0; }
    .steps-grid, .features-grid, .stats-grid, .partners-grid,
    .video-grid, .gallery-grid, .text-grid, .blog-grid,
    .footer-links-grid { grid-template-columns: 1fr; }
    .feature-card { flex-direction: column; align-items: center; text-align: center; }
    .feature-content { text-align: center; }
    .custom-table th, .custom-table td { padding: 12px 10px; }
    .custom-table td:first-child { width: 40%; font-size: 13px; }
    .custom-table td:last-child { width: 60%; font-size: 13px; }
    .author-box { flex-direction: column; text-align: center; }
    .footer-logos { flex-direction: column; text-align: center; }
    .footer-bottom-links { line-height: 2.2; }
    .site-header .header-cta { font-size: 12px; padding: 7px 14px; }
    .bottom-nav a { font-size: 10px; }
    .bottom-nav a svg { width: 20px; height: 20px; }
}

/* ============ VIMEO FACADE (click-to-load for speed) ============ */
.vimeo-facade {
    position: relative;
    cursor: pointer;
    background: #000;
    overflow: hidden;
}
.vimeo-facade img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.85;
    transition: opacity .2s;
}
.vimeo-facade:hover img { opacity: 1; }
.vimeo-facade .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background: rgba(33, 33, 33, .8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.vimeo-facade:hover .play-btn { background: #F6C845; }
.vimeo-facade .play-btn svg { width: 28px; height: 28px; }
.vimeo-facade:hover .play-btn svg path { fill: #000; }
