.newsletter-banner {
position: fixed;
bottom: -400px;
display: none;
left: 0;
width: 100%;
background-color: #006;
color: #fff;
text-align: center;
padding: 20px;
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
transition: bottom 0.5s ease-in-out; /* Smooth transition for the slide-up effect */
z-index: 1000;
}

.newsletter-banner.show {
transform: translateY(0); /* Moves it back to its original position */
}

.banner-content {
max-width: 600px;
margin: 0 auto;
}

.newsletter-banner h3 {
margin-top: 0;
}

.banner-content p {
margin-bottom: 5px;
}

.newsletter-banner input[type="email"] {
padding: 10px;
width: 70%;
border: none;
border-radius: 5px;
margin-right: 5px;
}

.newsletter-banner button {
padding: 10px 15px;
margin: 10px 0;
border: none;
border-radius: 5px;
background-color: #fc0;
color: #006;
cursor: pointer;
font-weight: bold;
}

.newsletter-banner .close-btn {
position: absolute;
top: -10px;
right: 0;
background: transparent;
color: #fff;
font-size: 1.5em;
font-weight: bold;
}

.newsletter-banner input[type="email"] {
color: black;
}

@media screen and (min-width: 750px) {
.newsletter-banner .close-btn {
top: 0px;
right: 10px;
}
}

.quick-pick-card { border: 1px solid #c7d2fe; background: #eef2ff; border-radius: 10px; padding: 14px 14px; }
.quick-pick-title { font-size: 0.9rem; color: #334155; margin-bottom: 2px; }
.quick-pick-value { font-weight: bold; color: #000066; }
.quick-pick-note { font-weight: normal; margin-left: 4px; font-size: 0.95em; }
.quick-pick-name { text-decoration: underline; }

.author-bio-box {
border: 1px solid #000066;
background: #f0f4ff;
border-radius: 12px;
padding: 24px 20px;
margin: 42px 0 0 0;
display: flex;
align-items: flex-start;
gap: 20px;
box-shadow: 0 2px 8px #0001;
max-width: 600px;
}
.author-bio-avatar {
width: 64px; height: 64px;
border-radius: 50%;
background: #4F46E5;
color: #fff;
font-size: 2rem;
font-weight: bold;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
border: 2px solid #fff;
margin-top: 4px;
}
.author-bio-content { flex: 1; }
.author-bio-name { font-size: 1.12rem; font-weight: bold; color: #000066; margin-bottom: 2px; }
.author-bio-role { font-size: 0.96rem; color: #6366F1; margin-bottom: 8px; }
@media (max-width: 700px) {
.author-bio-box { flex-direction: column; align-items: center; max-width: 100%; }
.author-bio-description { font-size: 0.98rem; line-height: 1.6; color: #334155; }
.author-bio-avatar { margin-bottom: 12px; }
.author-bio-content { text-align: center; }
}
.latest-casino-offer-box {
    background: linear-gradient(135deg, #fffbe6 0%, #fff7cc 100%);
    border: 1px solid #FFCC00;
    border-left: 6px solid #000066;
    border-radius: 10px;
    padding: 18px 18px 16px 18px;
    margin: 22px 0 26px 0;
    box-shadow: 0 2px 10px #0001;
}

.latest-casino-offer-label {
    display: inline-block;
    background: #000066;
    color: #fff;
    font-size: 0.82rem;
    font-weight: bold;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.latest-casino-offer-title {
    color: #000066;
    font-size: 1.35rem;
    line-height: 1.25;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.latest-casino-offer-text {
    margin: 0 0 10px 0;
    color: #1f2937;
    line-height: 1.6;
}

.latest-casino-offer-points {
    margin: 0 0 14px 18px;
    padding: 0;
    color: #1f2937;
}

.latest-casino-offer-points li {
    margin-bottom: 6px;
}

.latest-casino-offer-btn {
    display: inline-block;
    background: #000066;
    color: #fff !important;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 16px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.latest-casino-offer-btn:hover {
    background: #1a1a8a;
    color: #fff !important;
}

.latest-casino-offer-note {
    margin-top: 10px;
    font-size: 0.88rem;
    color: #475569;
}

@media (max-width: 600px) {
    .latest-casino-offer-title {
        font-size: 1.15rem;
    }

    .latest-casino-offer-btn {
        display: block;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
}
.featured-casino-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.featured-casino-card {
    background: #f8fafc;
    border: 2px solid #dbeafe;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.featured-casino-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.10);
    border-color: #93c5fd;
}

.featured-casino-top {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.featured-casino-badge {
    display: inline-block;
    background: #FFCC00;
    color: #000066;
    font-size: 0.85rem;
    font-weight: bold;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    border: 1px solid #000066;
    line-height: 1.2;
}

.featured-casino-market {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    font-size: 0.82rem;
    font-weight: bold;
    border-radius: 999px;
    padding: 0.32rem 0.7rem;
    border: 1px solid #86efac;
    line-height: 1.2;
}

.featured-casino-logo-wrap {
    text-align: center;
    margin-bottom: 1rem;
}

.featured-casino-logo {
    width: 120px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

.featured-casino-name {
    font-size: 1.75rem;
    line-height: 1.15;
    font-weight: 700;
    color: #b91c1c;
    margin: 0 0 0.35rem 0;
    text-align: center;
}

.featured-casino-offer {
    font-size: 1.25rem;
    line-height: 1.25;
    font-weight: 700;
    color: #1d4ed8;
    text-align: center;
    margin: 0 0 0.75rem 0;
}

.featured-casino-summary {
    color: #1f2937;
    font-size: 0.98rem;
    line-height: 1.55;
    text-align: center;
    margin-bottom: 1rem;
}

.featured-casino-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.1rem;
}

.featured-casino-fact {
    display: inline-block;
    background: #e0e7ff;
    color: #1e40af;
    font-size: 0.84rem;
    font-weight: bold;
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    line-height: 1.2;
}

.featured-casino-actions {
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.featured-casino-actions .nav-button,
.featured-casino-actions .nav-button-blue {
    width: 100%;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}

@media (max-width: 900px) {
    .featured-casino-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .featured-casino-name {
        font-size: 1.45rem;
    }

    .featured-casino-offer {
        font-size: 1.08rem;
    }

    .featured-casino-actions {
        grid-template-columns: 1fr;
    }

    .featured-casino-top {
        justify-content: center;
    }
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.last-updated {
    display: inline-block;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 10px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95rem;
}

.comparison-table th {
    background: #000066;
    color: #fff;
    padding: 12px;
    text-align: left;
}

.comparison-table td {
    border: 1px solid #ddd;
    padding: 10px;
}

.comparison-table tr:nth-child(even) {
    background: #f9f9f9;
}

.comparison-table tr:hover {
    background: #fffbe6;
}

@media (max-width: 768px) {
    .comparison-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

table td,
table th {
    vertical-align: top;
}

table tr:hover {
    background-color: #fffbe6;
}

.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
}

.table-scroll .comparison-table {
    width: 100%;
}

.mobile-scroll-hint {
    display: none;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {
    .mobile-scroll-hint {
        display: block;
    }
}

.on-this-page-box {
    background: #f8fafc;
    border: 1px solid #dbeafe;
    border-radius: 10px;
    padding: 16px 20px;
    margin: 24px 0;
}

.on-this-page-box strong {
    display: block;
    margin-bottom: 10px;
    color: #000066;
}

.on-this-page-box ul {
    margin: 0;
    padding-left: 20px;
}

.on-this-page-box li {
    margin-bottom: 6px;
}

.link-primary {
    color: #000066;
    text-decoration: underline;
}

.link-primary:hover {
    color: #660000;
}

.cluster-card {
            border: 1px solid #FFCC00;
            border-radius: 10px;
            padding: 18px 16px;
            background: #fffbe6;
            margin-bottom: 20px;
            box-shadow: 0 1px 6px #0001;
            transition: box-shadow 0.2s;
        }
        .cluster-card:hover {
            box-shadow: 0 4px 14px #0002;
        }
        .cluster-card h3, .cluster-card strong a {
            color: #000066;
            font-size: 1.12em;
            font-weight: bold;
            margin-bottom: 0.3em;
            text-decoration: none;
        }