/* ============ RESET & BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #f7f4ed;
    font-size: 16px;
}

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

/* ============ HEADER ============ */
.header {
    background: linear-gradient(135deg, #0a3d2e 0%, #145a3f 100%);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    flex-wrap: wrap;
}

.logo a {
    font-size: 24px;
    font-weight: 800;
    color: #ffd700;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo a span {
    color: #fff;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav a:hover {
    color: #ffd700;
}

/* ============ BANNER ============ */
.banner {
    background: linear-gradient(135deg, #0a3d2e 0%, #1a6b4a 50%, #c89b3c 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 0 0 20px 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.2) 0%, transparent 35%);
    pointer-events: none;
}

.banner__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.banner h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.banner p.lede {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* ============ AUTHOR INFO ============ */
.author-info {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    margin-bottom: 14px;
    border-left: 4px solid #c89b3c;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c89b3c, #ffd700);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a3d2e;
    font-weight: 800;
    font-size: 24px;
    flex-shrink: 0;
}

.author-name {
    font-size: 15px;
    margin-bottom: 4px;
}

.author-bio {
    font-size: 14px;
    color: #555;
}

.date {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    margin-bottom: 26px;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.date .reload-icon {
    width: 18px;
    height: 18px;
    color: #145a3f;
}

.updated {
    display: flex;
    gap: 6px;
    font-size: 14px;
}

.updated p {
    color: #666;
}

.updated time {
    font-weight: 600;
    color: #0a3d2e;
}

/* ============ CONTENT ============ */
.content {
    background: #fff;
    padding: 38px 42px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.content h2 {
    font-size: 1.85rem;
    color: #0a3d2e;
    margin-top: 38px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 3px solid #c89b3c;
    font-weight: 800;
}

.content h2:first-child {
    margin-top: 0;
}

.content h3 {
    font-size: 1.4rem;
    color: #145a3f;
    margin-top: 28px;
    margin-bottom: 14px;
    font-weight: 700;
}

.content h4 {
    font-size: 1.15rem;
    color: #1a6b4a;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.content p {
    margin-bottom: 16px;
    color: #2a2a2a;
}

.content ul, .content ol {
    margin: 0 0 20px 22px;
    color: #2a2a2a;
}

.content ul li, .content ol li {
    margin-bottom: 8px;
}

.content ul ul, .content ol ol, .content ul ol, .content ol ul {
    margin-top: 8px;
}

.content em {
    background: linear-gradient(120deg, #ffe9a0 0%, #ffe9a0 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 88%;
    padding: 0 4px;
    font-style: normal;
    font-weight: 600;
}

.content strong {
    color: #0a3d2e;
}

/* ============ TABLES ============ */
.content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 28px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.content table th {
    background: linear-gradient(135deg, #0a3d2e, #145a3f);
    color: #fff;
    padding: 14px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.content table td {
    padding: 12px 16px;
    border-bottom: 1px solid #ecebe5;
    font-size: 15px;
}

.content table tr:nth-child(even) td {
    background: #faf8f2;
}

.content table tr:last-child td {
    border-bottom: none;
}

/* ============ CASINO CARDS ============ */
.casino-card {
    background: #fff;
    border-radius: 14px;
    padding: 26px;
    margin-bottom: 22px;
    border: 1px solid #ebe7d8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}

.casino-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
    transform: translateY(-2px);
}

.casino-card__header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.casino-card__rank {
    background: linear-gradient(135deg, #c89b3c, #ffd700);
    color: #0a3d2e;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    flex-shrink: 0;
}

.casino-card__logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0a3d2e, #1a6b4a);
    color: #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 30px;
    flex-shrink: 0;
}

.casino-card__title {
    flex: 1;
    min-width: 200px;
}

.casino-card__title h3 {
    color: #0a3d2e;
    font-size: 1.5rem;
    margin: 0 0 6px;
}

.casino-card__rating {
    color: #c89b3c;
    font-size: 18px;
    letter-spacing: 2px;
}

.casino-card__bonus {
    background: linear-gradient(135deg, #fff8e1, #fffbeb);
    border-left: 4px solid #c89b3c;
    padding: 14px 18px;
    border-radius: 8px;
    margin: 14px 0;
}

.casino-card__bonus strong {
    display: block;
    font-size: 13px;
    color: #b07e1c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.casino-card__bonus .bonus-amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0a3d2e;
}

.casino-card__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin: 16px 0;
}

.casino-card__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #2a2a2a;
}

.casino-card__feature::before {
    content: "✓";
    color: #1a6b4a;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.casino-card__cta {
    display: inline-block;
    background: linear-gradient(135deg, #0a3d2e, #145a3f);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 8px;
    transition: background 0.2s, transform 0.2s;
}

.casino-card__cta:hover {
    background: linear-gradient(135deg, #145a3f, #1a6b4a);
    transform: translateY(-1px);
}

/* ============ TOC / QUICK NAV ============ */
.toc {
    background: linear-gradient(135deg, #faf8f2, #f0ece0);
    border: 1px solid #e6dfc8;
    border-radius: 12px;
    padding: 24px 28px;
    margin: 28px 0;
}

.toc h3 {
    margin-top: 0 !important;
    color: #0a3d2e !important;
    font-size: 1.25rem !important;
    margin-bottom: 14px !important;
}

.toc ul {
    list-style: none;
    margin: 0 !important;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 6px;
}

.toc ul li {
    margin: 0 !important;
}

.toc a {
    color: #145a3f;
    text-decoration: none;
    padding: 6px 0;
    display: block;
    font-size: 15px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
}

.toc a:hover {
    color: #c89b3c;
    border-bottom-color: #c89b3c;
}

/* ============ INFO BOXES ============ */
.info-box {
    background: #f0f7f3;
    border-left: 4px solid #1a6b4a;
    padding: 18px 22px;
    border-radius: 8px;
    margin: 20px 0;
}

.warning-box {
    background: #fff8e6;
    border-left: 4px solid #c89b3c;
    padding: 18px 22px;
    border-radius: 8px;
    margin: 20px 0;
}

.warning-box p:last-child, .info-box p:last-child {
    margin-bottom: 0;
}

/* ============ RATING BAR ============ */
.rating-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 10px 0 16px;
    flex-wrap: wrap;
}

.rating-bar__label {
    font-weight: 600;
    color: #0a3d2e;
    min-width: 150px;
    font-size: 14px;
}

.rating-bar__track {
    flex: 1;
    min-width: 200px;
    height: 10px;
    background: #ebe7d8;
    border-radius: 5px;
    overflow: hidden;
}

.rating-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, #c89b3c, #ffd700);
    border-radius: 5px;
}

.rating-bar__score {
    font-weight: 800;
    color: #0a3d2e;
    font-size: 15px;
    min-width: 50px;
}

/* ============ PROS / CONS ============ */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 22px 0;
}

.pros-cons__box {
    padding: 18px 22px;
    border-radius: 10px;
}

.pros-cons__box.pros {
    background: #e8f5ed;
    border-left: 4px solid #1a6b4a;
}

.pros-cons__box.cons {
    background: #fceeee;
    border-left: 4px solid #b03a3a;
}

.pros-cons__box h4 {
    margin-top: 0 !important;
    margin-bottom: 12px !important;
}

.pros-cons__box.pros h4 {
    color: #1a6b4a !important;
}

.pros-cons__box.cons h4 {
    color: #b03a3a !important;
}

.pros-cons__box ul {
    margin: 0 !important;
    list-style: none !important;
}

.pros-cons__box ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 6px;
    font-size: 14px;
}

.pros-cons__box.pros ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a6b4a;
    font-weight: 800;
}

.pros-cons__box.cons ul li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #b03a3a;
    font-weight: 800;
}

@media (max-width: 700px) {
    .pros-cons {
        grid-template-columns: 1fr;
    }
}

/* ============ FAQ ============ */
.faq-item {
    background: #faf8f2;
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid #ebe7d8;
}

.faq-item summary {
    padding: 16px 22px;
    cursor: pointer;
    font-weight: 700;
    color: #0a3d2e;
    font-size: 16px;
    transition: background 0.2s;
}

.faq-item summary:hover {
    background: #f3efde;
}

.faq-item[open] summary {
    background: #f3efde;
    border-bottom: 1px solid #ebe7d8;
}

.faq-item__content {
    padding: 16px 22px;
    color: #2a2a2a;
}

.faq-item__content p {
    margin-bottom: 12px;
}

.faq-item__content p:last-child {
    margin-bottom: 0;
}

/* ============ FOOTER ============ */
.footer {
    background: linear-gradient(135deg, #0a3d2e, #051f17);
    color: #c4cfca;
    padding: 50px 20px 25px;
    margin-top: 40px;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer__col h4 {
    color: #ffd700;
    margin-bottom: 14px;
    font-size: 1.05rem;
}

.footer__col ul {
    list-style: none;
}

.footer__col ul li {
    margin-bottom: 8px;
}

.footer__col a {
    color: #c4cfca;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer__col a:hover {
    color: #ffd700;
}

.footer__col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer__bottom {
    text-align: center;
    padding-top: 22px;
    border-top: 1px solid #1a6b4a;
    font-size: 13px;
    color: #94a59c;
}

.footer__bottom p {
    margin-bottom: 8px;
}

.footer__disclaimer {
    font-size: 12px;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    color: #94a59c;
}

/* ============ STATS GRID ============ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.stat-card {
    background: linear-gradient(135deg, #0a3d2e, #145a3f);
    color: #fff;
    padding: 22px;
    border-radius: 12px;
    text-align: center;
}

.stat-card__number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-card__label {
    font-size: 14px;
    color: #e0d7c8;
}

/* ============ COMPARISON CHIP ============ */
.feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}

.chip {
    background: #e8f5ed;
    color: #0a3d2e;
    padding: 5px 12px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 600;
}

.chip.gold {
    background: #fff3c4;
    color: #8a5e10;
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
    padding: 12px 0;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #145a3f;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .banner h1 {
        font-size: 1.9rem;
    }

    .banner {
        padding: 40px 20px;
    }

    .content {
        padding: 24px 22px;
    }

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

    .content h3 {
        font-size: 1.2rem;
    }

    .nav ul {
        gap: 14px;
        font-size: 14px;
    }

    .header .container {
        flex-direction: column;
        gap: 12px;
    }

    .casino-card__header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .banner h1 {
        font-size: 1.55rem;
    }

    .content {
        padding: 18px 16px;
    }

    .content table {
        font-size: 13px;
    }

    .content table th,
    .content table td {
        padding: 8px 10px;
    }
}
