/* ==========================================================================
   Dawson Recycling & Disposal Inc. - Sports Betting California
   Homepage Money Page Styles
   Color Scheme: Navy Blue (#1a2332) + Amber Gold (#e8a020) + White (#fff)
   ========================================================================== */

/* ---------- CSS Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #2d3748;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1d4ed8;
}

/* ---------- Layout Container ---------- */
.container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Header (Minimal for "1-pager" look) ---------- */
.site-header {
    background: #1a2332;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.site-logo span {
    color: #e8a020;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08);
    padding: 4px 12px;
    border-radius: 20px;
}

.header-badge svg {
    width: 14px;
    height: 14px;
    fill: #e8a020;
}

/* ---------- Hero Section ---------- */
.hero {
    background: linear-gradient(135deg, #1a2332 0%, #243347 100%);
    padding: 24px 0 14px;
    color: #ffffff;
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.hero h1 .highlight {
    color: #e8a020;
}

/* ---------- Author Byline (Under H1) ---------- */
.author-byline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.08);
    border-radius: 40px;
}

.author-byline img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e8a020;
    object-fit: cover;
}

.author-byline .author-info {
    text-align: left;
}

.author-byline .author-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
}

.author-byline .author-role {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
}

.hero-intro {
    max-width: 680px;
    margin: 10px auto 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 8px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ---------- Toplist Section ---------- */
.toplist-section {
    padding: 16px 0 20px;
    background: #f8f9fb;
    border-bottom: 1px solid #e2e8f0;
}

.toplist-section h2 {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 20px;
}

/* ---------- Toplist Card ---------- */
.toplist-card {
    display: grid;
    grid-template-columns: 48px 1fr auto auto auto;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 10px;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.toplist-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

/* Position number column */
.toplist-position {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a2332;
    text-align: center;
    min-width: 40px;
}

.toplist-card:first-child .toplist-position {
    color: #e8a020;
}

/* Brand / Logo column */
.toplist-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.toplist-logo {
    width: 60px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 4px;
}

.toplist-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.toplist-brand-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a2332;
}

.toplist-brand-tag {
    font-size: 0.72rem;
    color: #718096;
}

/* Bonus column */
.toplist-bonus {
    text-align: center;
    min-width: 160px;
    background: linear-gradient(135deg, #1a5c1a, #2e8b2e);
    padding: 10px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(46,139,46,0.3);
}

.toplist-bonus-amount {
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    letter-spacing: -0.3px;
}

.toplist-bonus-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Rating column */
.toplist-rating {
    text-align: center;
    min-width: 80px;
}

.toplist-rating .stars {
    color: #e8a020;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.toplist-rating .rating-num {
    font-size: 0.78rem;
    font-weight: 700;
    color: #1a2332;
    margin-top: 2px;
}

/* CTA button column */
.toplist-cta {
    min-width: 130px;
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #e8a020 0%, #d4911a 100%);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.15s ease;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #d4911a 0%, #c0820f 100%);
    color: #ffffff;
    transform: translateY(-1px);
}

/* First card (gold highlight) */
.toplist-card.top-pick {
    border: 2px solid #e8a020;
    background: linear-gradient(to right, #fffdf5, #ffffff);
    position: relative;
}

.toplist-card.top-pick::before {
    content: "TOP PICK";
    position: absolute;
    top: -10px;
    left: 20px;
    background: #e8a020;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 4px;
    letter-spacing: 0.8px;
}

/* ---------- Mobile Toplist Responsive ---------- */
@media (max-width: 768px) {
    .toplist-card {
        grid-template-columns: 36px 1fr;
        grid-template-rows: auto auto auto;
        gap: 8px 12px;
        padding: 14px 14px;
    }

    .toplist-position {
        font-size: 1.3rem;
        grid-row: 1 / 3;
        align-self: start;
        padding-top: 4px;
    }

    .toplist-brand {
        grid-column: 2;
    }

    .toplist-logo {
        width: 44px;
    }

    .review-logo {
        width: 50px;
    }

    .runner-logo {
        width: 40px;
    }

    .toplist-bonus {
        grid-column: 2;
        text-align: left;
    }

    .toplist-rating {
        grid-column: 1 / 3;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .toplist-cta {
        grid-column: 1 / 3;
    }

    .btn-cta {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
}

/* ---------- Content Sections ---------- */
.content-section {
    padding: 40px 0;
}

.content-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 16px;
    line-height: 1.3;
}

.content-section h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a2332;
    margin: 28px 0 10px;
}

.content-section p {
    margin-bottom: 16px;
    color: #4a5568;
    font-size: 0.95rem;
}

/* ---------- Individual Sportsbook Review Card ---------- */
.review-card {
    background: #f8f9fb;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px 24px;
    margin: 28px 0;
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.review-card-position {
    font-size: 1.8rem;
    font-weight: 800;
    color: #e8a020;
    min-width: 36px;
}

.review-logo {
    width: 70px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 4px;
}

.runner-logo {
    width: 50px;
    height: auto;
    object-fit: contain;
    margin: 6px auto;
    display: block;
    border-radius: 4px;
}

.review-card-title {
    flex: 1;
}

.review-card-title h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a2332;
    margin: 0;
}

.review-card-title .subtitle {
    font-size: 0.82rem;
    color: #718096;
    margin-top: 2px;
}

.review-card .review-cta-top {
    min-width: 130px;
}

/* Review info grid */
.review-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.review-info-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 12px;
    text-align: center;
}

.review-info-item .label {
    font-size: 0.68rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.review-info-item .value {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a2332;
}

@media (max-width: 640px) {
    .review-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Pros and Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 16px 0;
}

@media (max-width: 640px) {
    .pros-cons {
        grid-template-columns: 1fr;
    }
}

.pros-list, .cons-list {
    list-style: none;
    padding: 0;
}

.pros-cons h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.pros-cons .pros-heading {
    color: #22c55e;
}

.pros-cons .cons-heading {
    color: #ef4444;
}

.pros-list li, .cons-list li {
    font-size: 0.88rem;
    color: #4a5568;
    padding: 4px 0 4px 22px;
    position: relative;
}

.pros-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

.cons-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

/* Testing section */
.testing-block {
    background: #ffffff;
    border-left: 3px solid #e8a020;
    padding: 16px 20px;
    margin: 16px 0;
    border-radius: 0 8px 8px 0;
}

.testing-block h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 8px;
}

.testing-block p {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 10px;
}

/* Rating bars */
.rating-bars {
    margin: 16px 0;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.rating-bar-label {
    font-size: 0.8rem;
    color: #4a5568;
    min-width: 160px;
}

.rating-bar-track {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #e8a020, #f0b840);
    border-radius: 4px;
}

.rating-bar-value {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1a2332;
    min-width: 36px;
    text-align: right;
}

/* Review bottom CTA */
.review-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.review-card-bottom p {
    font-size: 0.88rem;
    color: #4a5568;
    margin: 0;
    font-style: italic;
}

.review-card-bottom .btn-cta {
    font-size: 0.88rem;
    padding: 12px 28px;
}

@media (max-width: 640px) {
    .review-card-bottom {
        flex-direction: column;
        gap: 12px;
    }
    .review-card-bottom .btn-cta {
        width: 100%;
        text-align: center;
    }
}

/* ---------- Ranking Criteria Section ---------- */
.criteria-section {
    background: #f8f9fb;
    padding: 40px 0;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 640px) {
    .criteria-grid {
        grid-template-columns: 1fr;
    }
}

.criteria-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
}

.criteria-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2332;
    margin: 0 0 8px;
}

.criteria-card p {
    font-size: 0.88rem;
    color: #4a5568;
    margin: 0;
}

/* ---------- Why #1 Section ---------- */
.why-section {
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
}

/* ---------- Bonuses at a Glance Table ---------- */
.bonus-table-wrap {
    overflow-x: auto;
    margin: 20px 0;
}

.bonus-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.bonus-table thead {
    background: #1a2332;
    color: #ffffff;
}

.bonus-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

.bonus-table tbody tr:nth-child(even) {
    background: #f8f9fb;
}

.bonus-table tbody tr:hover {
    background: #edf2f7;
}

/* ---------- Payment Methods ---------- */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 20px 0;
}

@media (max-width: 640px) {
    .payment-grid {
        grid-template-columns: 1fr;
    }
}

.payment-card {
    background: #f8f9fb;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 18px;
}

.payment-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a2332;
    margin: 0 0 6px;
}

.payment-card p {
    font-size: 0.85rem;
    color: #4a5568;
    margin: 0;
}

/* ---------- How to Sign Up Steps ---------- */
.steps-list {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.steps-list li {
    counter-increment: step;
    position: relative;
    padding: 16px 16px 16px 56px;
    margin-bottom: 12px;
    background: #f8f9fb;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #4a5568;
}

.steps-list li::before {
    content: counter(step);
    position: absolute;
    left: 16px;
    top: 14px;
    width: 28px;
    height: 28px;
    background: #e8a020;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.82rem;
}

/* ---------- Tips Section ---------- */
.tips-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.tips-list li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 0.9rem;
    color: #4a5568;
    border-bottom: 1px solid #f0f0f0;
}

.tips-list li::before {
    content: "💡";
    position: absolute;
    left: 0;
}

.tips-list li strong {
    color: #1a2332;
}

/* ---------- FAQ Section ---------- */
.faq-section {
    padding: 40px 0;
    background: #f8f9fb;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a2332;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f8f9fb;
}

.faq-question::after {
    content: "+";
    font-size: 1.3rem;
    font-weight: 300;
    color: #718096;
    transition: transform 0.2s;
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    display: none;
    padding: 0 20px 16px;
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ---------- Runners-Up Section ---------- */
.runners-up {
    padding: 32px 0;
    border-top: 1px solid #e2e8f0;
}

.runners-up h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 16px;
}

.runners-up-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

@media (max-width: 768px) {
    .runners-up-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.runner-card {
    background: #f8f9fb;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.runner-card .runner-pos {
    font-size: 0.72rem;
    color: #718096;
    margin-bottom: 4px;
}

.runner-card .runner-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a2332;
}

.runner-card .btn-cta {
    margin-top: 10px;
    font-size: 0.72rem;
    padding: 6px 14px;
}

/* ---------- About Author Section ---------- */
.about-author {
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
}

.author-card {
    display: flex;
    gap: 24px;
    background: #f8f9fb;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
}

.author-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e8a020;
    flex-shrink: 0;
}

.author-card-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2332;
    margin: 0 0 4px;
}

.author-card-info .author-title {
    font-size: 0.82rem;
    color: #718096;
    margin-bottom: 10px;
}

.author-card-info p {
    font-size: 0.85rem;
    color: #4a5568;
    margin: 0 0 10px;
}

.author-card-info p:last-child {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .author-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ---------- How We Rate Section ---------- */
.how-we-rate {
    padding: 40px 0;
    background: #f8f9fb;
}

/* ---------- Conclusion ---------- */
.conclusion-section {
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
}

.conclusion-cta {
    text-align: center;
    margin-top: 24px;
}

.conclusion-cta .btn-cta {
    font-size: 1rem;
    padding: 14px 40px;
    border-radius: 8px;
}

/* ---------- Responsible Gambling ---------- */
.responsible-gambling {
    padding: 28px 0;
    background: #1a2332;
    color: rgba(255,255,255,0.7);
    text-align: center;
}

.responsible-gambling p {
    font-size: 0.78rem;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.6);
}

.rg-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.rg-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
}

/* ---------- Footer ---------- */
.site-footer {
    padding: 24px 0;
    background: #111827;
    text-align: center;
}

.site-footer p {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
}

/* ---------- Comparison Table ---------- */
.comparison-table-wrap {
    overflow-x: auto;
    margin: 20px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.comparison-table thead {
    background: #1a2332;
    color: #ffffff;
}

.comparison-table th {
    padding: 12px 14px;
    text-align: left;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

.comparison-table tbody tr:nth-child(even) {
    background: #f8f9fb;
}

/* ---------- Casino Games Section ---------- */
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 20px 0;
}

@media (max-width: 640px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
}

.game-card {
    background: #f8f9fb;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 18px;
}

.game-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a2332;
    margin: 0 0 6px;
}

.game-card p {
    font-size: 0.85rem;
    color: #4a5568;
    margin: 0;
}

/* ---------- Sticky Mobile CTA ---------- */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2332;
    padding: 10px 16px;
    z-index: 99;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

.mobile-sticky-cta .btn-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
    body {
        padding-bottom: 60px;
    }
}

/* ---------- Updated indicator ---------- */
.last-updated {
    text-align: center;
    font-size: 0.75rem;
    color: #a0aec0;
    padding: 8px 0;
    background: #f8f9fb;
    border-bottom: 1px solid #e2e8f0;
}
