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

body {
    font-family: Georgia, 'Times New Roman', serif;
    background-color: #f5f5f5;
    color: #1a1a1a;
    line-height: 1.7;
}

a {
    color: #004d99;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
.times-header {
    background: #000;
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.date {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    font-family: Arial, sans-serif;
}

.times-logo {
    font-family: 'Times New Roman', serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
}

.subscribe-btn {
    background: #fff;
    color: #000;
    padding: 8px 16px;
    font-size: 12px;
    font-family: Arial, sans-serif;
    cursor: pointer;
    border-radius: 2px;
    font-weight: 700;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    background: #000;
}

.main-nav a {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav a:hover {
    color: #fff;
    text-decoration: none;
}

/* Breaking News Banner */
.breaking-news {
    background: #c41e3a;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.breaking-label {
    background: #fff;
    color: #c41e3a;
    padding: 3px 10px;
    font-weight: 700;
    font-size: 11px;
    margin-right: 15px;
    border-radius: 2px;
}

/* Main Container */
.article-container {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

/* Article Styles */
.main-article {
    background: #fff;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.article-category {
    color: #c41e3a;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.article-headline {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.article-subheadline {
    font-size: 22px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 400;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.meta-text {
    flex: 1;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #666;
}

.author-name {
    color: #1a1a1a;
    font-weight: 700;
}

.article-date {
    color: #888;
    font-size: 13px;
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    border-radius: 50%;
    font-size: 16px;
}

.share-btn:hover {
    background: #f5f5f5;
}

/* Featured Image */
.featured-image {
    margin-bottom: 30px;
}

.main-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.featured-image figcaption,
.inline-image figcaption,
.screenshot-figure figcaption {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #666;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Article Content */
.article-content {
    font-size: 19px;
}

.article-content p {
    margin-bottom: 25px;
}

.lead-paragraph {
    font-size: 21px;
}

.drop-cap {
    float: left;
    font-size: 75px;
    line-height: 60px;
    padding-right: 12px;
    padding-top: 5px;
    font-weight: 700;
    color: #c41e3a;
}

.article-content h2 {
    font-size: 28px;
    margin: 35px 0 20px;
    color: #1a1a1a;
}

.article-content strong {
    color: #1a1a1a;
}

/* Inline Images */
.inline-image {
    margin: 30px 0;
}

.content-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Highlight Box */
.highlight-box {
    background: #fff9e6;
    border-left: 4px solid #ffc107;
    padding: 20px 25px;
    margin: 30px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.highlight-icon {
    font-size: 24px;
}

.highlight-content {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

/* Quote Box */
.quote-box {
    background: #f8f9fa;
    padding: 30px 35px;
    margin: 30px 0;
    border-left: 4px solid #005c8a;
    position: relative;
}

.quote-mark {
    font-size: 60px;
    color: #005c8a;
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
}

.quote-text {
    font-size: 22px;
    font-style: italic;
    margin-bottom: 15px;
    padding-left: 30px;
}

.quote-author {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #666;
    padding-left: 30px;
}

/* Results Box */
.results-box {
    background: linear-gradient(135deg, #1a3a52 0%, #0d2137 100%);
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.results-box h3 {
    font-family: Arial, sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.result-item {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 6px;
    text-align: center;
}

.result-item.highlight {
    background: rgba(76, 175, 80, 0.3);
    border: 2px solid #4caf50;
}

.result-item.total {
    background: rgba(76, 175, 80, 0.5);
    grid-column: span 3;
}

.result-label {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 5px;
}

.result-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.result-value.green {
    color: #4caf50;
    font-size: 32px;
}

/* Phone Screenshot */
.screenshot-figure {
    margin: 30px 0;
    text-align: center;
}

.phone-screenshot {
    display: inline-block;
}

.phone-frame {
    background: #1a1a1a;
    border-radius: 35px;
    padding: 12px;
    width: 280px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.phone-notch {
    width: 100px;
    height: 25px;
    background: #1a1a1a;
    margin: 0 auto 10px;
    border-radius: 0 0 15px 15px;
}

.phone-screen {
    background: linear-gradient(180deg, #0f1923 0%, #1a2733 100%);
    border-radius: 25px;
    padding: 20px;
    min-height: 450px;
}

.app-header {
    text-align: center;
    color: #fff;
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 25px;
}

.balance-display {
    text-align: center;
    margin-bottom: 25px;
}

.balance-label {
    display: block;
    color: rgba(255,255,255,0.6);
    font-family: Arial, sans-serif;
    font-size: 12px;
    margin-bottom: 5px;
}

.balance-amount {
    display: block;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    font-family: Arial, sans-serif;
}

.balance-profit {
    display: block;
    color: #4caf50;
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin-top: 5px;
}

.chart-placeholder {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 100px;
    margin-bottom: 25px;
    padding: 0 10px;
}

.chart-bar {
    width: 25px;
    background: linear-gradient(180deg, #4caf50 0%, #2e7d32 100%);
    border-radius: 3px 3px 0 0;
    animation: growBar 1s ease-out forwards;
}

@keyframes growBar {
    from { height: 0; }
}

.recent-trades {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}

.trade-item {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 8px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

/* Info Box */
.info-box {
    background: #e8f4fd;
    border: 1px solid #b3d7f2;
    padding: 25px 30px;
    border-radius: 6px;
    margin: 30px 0;
}

.info-box h4 {
    font-family: Arial, sans-serif;
    font-size: 16px;
    margin-bottom: 15px;
    color: #005c8a;
}

.info-box ul {
    list-style: none;
    font-family: Arial, sans-serif;
    font-size: 15px;
}

.info-box li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Warning Box */
.warning-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    padding: 20px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.warning-icon {
    font-size: 28px;
}

.warning-content {
    font-family: Arial, sans-serif;
    font-size: 15px;
}

.spots-remaining {
    background: #c41e3a;
    color: #fff;
    padding: 3px 10px;
    border-radius: 3px;
    font-weight: 700;
}

/* Steps List */
.steps-list {
    margin: 25px 0;
    padding-left: 25px;
}

.steps-list li {
    margin-bottom: 15px;
    font-size: 17px;
}

/* CTA Buttons */
.cta-container {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #e8f4fd 0%, #d1e8f8 100%);
    border-radius: 10px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
    color: #fff;
    padding: 20px 50px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.5);
    text-decoration: none;
}

.cta-text {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.cta-subtext {
    display: block;
    font-size: 13px;
    opacity: 0.9;
    margin-top: 5px;
}

.cta-disclaimer {
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: #666;
    margin-top: 15px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(196, 30, 58, 0.7); }
    100% { box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4); }
}

/* Comments Section */
.comments-section {
    margin: 30px 0;
}

.comment {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.comment-author {
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #1a1a1a;
}

.comment-time {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #888;
}

.comment-text {
    font-size: 16px;
    margin-bottom: 10px;
}

.comment-actions {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #666;
    display: flex;
    gap: 20px;
}

/* Final CTA */
.final-cta {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 40px;
    margin: 40px -40px -40px;
    border-radius: 0 0 0 0;
}

.final-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.final-cta .cta-button {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.final-cta .cta-button:hover {
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
}

/* Sidebar */
.sidebar {
    position: relative;
}

.sidebar-section {
    background: #fff;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.sidebar-section h3 {
    font-family: Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c41e3a;
}

.trending-list {
    list-style: none;
    counter-reset: trending;
}

.trending-list li {
    counter-increment: trending;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.trending-list li::before {
    content: counter(trending);
    background: #c41e3a;
    color: #fff;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    margin-right: 12px;
    border-radius: 3px;
}

.trending-list li a {
    color: #1a1a1a;
}

/* Sticky CTA Sidebar */
.sticky-cta {
    position: sticky;
    top: 120px;
}

.sidebar-cta-box {
    background: linear-gradient(135deg, #1a3a52 0%, #0d2137 100%);
    color: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.sidebar-cta-box h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.sidebar-cta-box p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.sidebar-stats {
    margin-bottom: 20px;
}

.sidebar-stats .stat {
    background: rgba(76, 175, 80, 0.2);
    padding: 15px;
    border-radius: 6px;
}

.sidebar-stats .stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #4caf50;
}

.sidebar-stats .stat-label {
    font-size: 12px;
    opacity: 0.8;
}

.sidebar-cta-btn {
    display: block;
    background: #c41e3a;
    color: #fff;
    padding: 15px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.sidebar-cta-btn:hover {
    background: #a01830;
    text-decoration: none;
}

.spots-text {
    font-size: 13px;
    color: #ffc107;
}

/* Footer */
.times-footer {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-family: Arial, sans-serif;
    font-size: 13px;
}

.footer-links a:hover {
    color: #fff;
}

.copyright {
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: #fff;
    max-width: 500px;
    width: 100%;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    animation: popIn 0.3s ease;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
}

.popup-close:hover {
    color: #333;
}

.popup-badge {
    display: inline-block;
    background: #c41e3a;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
}

.popup-header h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.popup-content > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.popup-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

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

.big-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    font-family: Arial, sans-serif;
}

.big-number.green {
    color: #4caf50;
}

.popup-stat span:not(.big-number) {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #666;
}

.popup-arrow {
    font-size: 28px;
    color: #4caf50;
}

.popup-cta {
    display: block;
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    color: #fff;
    padding: 18px 40px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
    text-decoration: none;
}

.popup-disclaimer {
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: #888;
}

/* Responsive */
@media (max-width: 1024px) {
    .article-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
    }

    .article-headline {
        font-size: 32px;
    }

    .article-subheadline {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .main-article {
        padding: 25px;
    }

    .article-headline {
        font-size: 26px;
    }

    .article-content {
        font-size: 17px;
    }

    .header-top {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .date, .subscribe-btn {
        display: none;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
        padding: 10px;
    }

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

    .result-item.total {
        grid-column: span 2;
    }

    .final-cta {
        margin: 40px -25px -25px;
    }

    .popup-stats {
        flex-direction: column;
        gap: 10px;
    }

    .popup-arrow {
        transform: rotate(90deg);
    }
}
/* =====================
   EARLY CTA BOX
   ===================== */
.early-cta-box {
    margin: 20px 0;
    background: #fff8e1;
    border-left: 4px solid #c41e3a;
    border-radius: 4px;
    padding: 16px 20px;
}
.early-cta-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.early-cta-label {
    font-size: 11px;
    font-family: Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #c41e3a;
    letter-spacing: 1px;
}
.early-cta-text {
    font-size: 15px;
    font-family: Arial, sans-serif;
    color: #1a1a1a;
    margin: 0;
}
.early-cta-btn {
    display: inline-block;
    background: #c41e3a;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 3px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    align-self: flex-start;
    transition: background 0.2s;
}
.early-cta-btn:hover {
    background: #a01830;
    text-decoration: none !important;
}

/* =====================
   MOBILE OPTIMIZATION
   ===================== */
@media (max-width: 768px) {
    .times-logo { font-size: 22px; letter-spacing: 1px; }
    .main-nav { gap: 12px; flex-wrap: wrap; padding: 8px 10px; }
    .main-nav a { font-size: 11px; }
    .article-container { flex-direction: column; padding: 0 10px; }
    .main-article { max-width: 100%; }
    .sidebar { width: 100%; }
    .article-headline { font-size: 24px; line-height: 1.3; }
    .article-subheadline { font-size: 15px; }
    .results-grid { grid-template-columns: 1fr 1fr; }
    .cta-button { font-size: 15px; padding: 16px 20px; width: 100%; text-align: center; display: block; }
    .early-cta-btn { width: 100%; text-align: center; }
    .phone-frame { max-width: 260px; margin: 0 auto; }
    .breaking-news { font-size: 12px; padding: 8px 10px; }
    .article-meta { flex-wrap: wrap; gap: 8px; }
    .share-buttons { margin-left: auto; }
    .comments-section .comment { flex-direction: column; }
    .sidebar-section.sticky-cta { position: static !important; }
    .live-notification { max-width: 90vw; left: 10px; bottom: 10px; }
    .popup-content { margin: 20px; padding: 20px; }
    .popup-stats { flex-direction: column; gap: 10px; }
    .popup-arrow { transform: rotate(90deg); }
    h2 { font-size: 18px; }
    .info-box ul li { font-size: 14px; }
    .steps-list li { font-size: 14px; }
    .final-cta { padding: 20px 15px; }
    .final-cta .cta-button { width: 100%; }
}

@media (max-width: 480px) {
    .header-top { padding: 10px 12px; }
    .article-headline { font-size: 20px; }
    .results-grid { grid-template-columns: 1fr; }
    .times-logo { font-size: 18px; }
}

/* =====================
   MINI CTA (after H2)
   ===================== */
.mini-cta {
    margin: 12px 0 20px 0;
}
.mini-cta-btn {
    display: inline-block;
    background: transparent;
    border: 2px solid #c41e3a;
    color: #c41e3a !important;
    padding: 8px 18px;
    border-radius: 3px;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.2s;
}
.mini-cta-btn:hover {
    background: #c41e3a;
    color: #fff !important;
}

/* =====================
   STICKY CTA BAR
   ===================== */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    z-index: 9998;
    padding: 12px 16px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.3);
}
.sticky-cta-bar.visible {
    transform: translateY(0);
}
.sticky-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.sticky-cta-text {
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    flex: 1;
}
.sticky-cta-btn {
    background: #c41e3a;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 3px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background 0.2s;
}
.sticky-cta-btn:hover {
    background: #a01830;
}

@media (max-width: 480px) {
    .sticky-cta-inner { flex-direction: column; align-items: stretch; text-align: center; }
    .mini-cta-btn { width: 100%; text-align: center; display: block; }
}
