/*------------------------------------------------------------------
    MONOMOKO.NZ — Spin Casino $1 Deposit NZ
    Navy slate / burnt orange / blue CTA palette

    Dark:     #1E2A3A (nav, footer, dark sections)
    Orange:   #E8793A (accent, highlights, featured)
    Blue CTA: #3B82F6 (buttons, links)
    Light:    #F8F9FB (body bg)
    Alt:      #EDF0F4 (section alternate)
    Text:     #2D3748
-------------------------------------------------------------------*/

/* ── BASE ── */

body {
    color: #2D3748;
    font-size: 16px;
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    background-color: #F8F9FB;
    margin: 0;
    padding: 0;
}

a {
    color: #3B82F6;
    text-decoration: none;
    transition: color .2s ease;
}

a:hover {
    color: #2563EB;
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Work Sans', sans-serif;
    font-weight: 700;
    color: #1E2A3A;
    line-height: 1.25;
    margin: 0 0 15px 0;
    padding: 0;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; margin-bottom: 28px; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

p { margin-bottom: 15px; }

ul, ol { padding-left: 20px; }

img { max-width: 100%; height: auto; }

/* ── SITE NAV ── */

.site-nav {
    background-color: #1E2A3A;
    padding: 12px 0;
    position: relative;
    z-index: 100;
}

.site-nav__brand {
    margin-right: 20px;
    padding: 0;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.01em;
    text-decoration: none;
}

.site-nav__brand:hover {
    color: #E8793A;
    text-decoration: none;
}

.site-nav__brand img {
    max-width: 200px;
    height: 32px;
}

.site-nav .nav-link {
    color: #ffffff !important;
    font-size: 15px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 0;
    transition: background .2s ease, color .2s ease;
}

.site-nav .nav-item {
    margin-left: 4px;
}

.site-nav .nav-link:hover,
.site-nav .nav-item.active .nav-link {
    background: #3B82F6;
    color: #ffffff !important;
}

.site-nav .navbar-toggler {
    border-color: #E8793A;
    padding: 8px 12px;
}

.site-nav .navbar-toggler:hover {
    background: rgba(232, 121, 58, 0.15);
}

.site-nav .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(232, 121, 58, 0.25);
}

.site-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(232,121,58,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO PANEL (Pattern F — Card Hero) ── */

.hero-panel {
    background: linear-gradient(135deg, #1E2A3A 0%, #0F1926 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.hero-panel::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-panel::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 121, 58, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-panel__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 48px 44px;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-panel__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #E8793A;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.hero-panel__title {
    color: #1E2A3A;
    margin-bottom: 12px;
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: -0.02em;
}

.hero-panel__intro {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #4A5568;
    max-width: 600px;
    margin: 0 auto 28px;
}

.hero-panel__intro p {
    margin-bottom: 0;
}

.hero-panel__byline {
    font-size: 0.8125rem;
    color: #999;
    margin-bottom: 28px;
}

.hero-panel__byline a {
    color: #1E2A3A;
    font-weight: 600;
}

.hero-panel__cta {
    display: inline-block;
    background: #E8793A;
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease, transform .15s ease;
    font-family: 'Outfit', sans-serif;
}

.hero-panel__cta:hover {
    background: #D4651F;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

/* ── LISTING (Pattern D — Numbered List) ── */

.listing {
    padding: 60px 0;
    background: #ffffff;
}

.listing__heading {
    text-align: center;
    margin-bottom: 40px;
}

.listing__subheading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #1E2A3A;
    margin: 40px 0 20px;
    padding-top: 20px;
    border-top: 2px solid #EDF0F4;
}

.listing__featured {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #FFF7F2;
    border: 2px solid #E8793A;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
}

.listing__rank {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 50%;
    font-family: 'Outfit', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
}

.listing__featured .listing__rank {
    background: #E8793A;
    color: #fff;
}

.listing__body {
    flex: 1;
    min-width: 0;
}

.listing__deposit {
    font-size: 0.75rem;
    font-weight: 600;
    color: #3B82F6;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 4px;
}

.listing__name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #1E2A3A;
    margin: 0 0 4px;
}

.listing__bonus {
    font-size: 1rem;
    color: #E8793A;
    font-weight: 600;
    margin: 0 0 2px;
}

.listing__meta {
    font-size: 0.8125rem;
    color: #999;
    margin: 0;
}

.listing__action {
    flex-shrink: 0;
}

.listing__featured .listing__action .btn-action {
    padding: 12px 28px;
    font-size: 0.9375rem;
    background: #E8793A;
    border-radius: 8px;
}

.listing__featured .listing__action .btn-action:hover {
    background: #D4651F;
}

.listing__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #EDF0F4;
}

.listing__item:last-child {
    border-bottom: none;
}

.listing__item .listing__rank {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1rem;
    background: #EDF0F4;
    color: #1E2A3A;
}

.listing__item .listing__name {
    font-size: 1.0625rem;
    margin: 0;
}

.listing__item .listing__bonus {
    font-size: 0.875rem;
    color: #4A5568;
    margin: 2px 0 0;
}

.listing__tag {
    flex-shrink: 0;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #3B82F6;
    background: #EBF2FF;
    padding: 4px 10px;
    border-radius: 12px;
    white-space: nowrap;
}

.listing__code {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    background: #F0F1F3;
    padding: 3px 10px;
    border-radius: 3px;
    font-family: 'SF Mono', 'Menlo', monospace;
}

.listing__item .listing__action .btn-action {
    padding: 8px 20px;
    font-size: 0.8125rem;
    border-radius: 6px;
    white-space: nowrap;
}

/* ── BUTTONS ── */

.btn-action {
    background: #3B82F6;
    color: #ffffff;
    padding: 8px 22px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    transition: background .2s ease;
    border: none;
    font-family: 'Outfit', sans-serif;
}

.btn-action:hover {
    background: #2563EB;
    color: #ffffff;
    text-decoration: none;
}

.btn-action--lg {
    padding: 12px 32px;
    font-size: 1rem;
}

/* ── REVIEW STACK (Pattern A — Stacked Cards) ── */

.review-stack {
    padding: 60px 0;
    background: #EDF0F4;
}

.review-stack__heading {
    color: #1E2A3A;
    text-align: center;
    margin-bottom: 45px;
}

.review-stack__card {
    background: #ffffff;
    border: 1px solid #dde2e8;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 24px;
    transition: box-shadow .2s ease;
}

.review-stack__card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.review-stack__card--featured {
    border-top: 3px solid #E8793A;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.review-stack__media {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.review-stack__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-stack__body {
    padding: 28px;
}

.review-stack__badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #E8793A;
    background: #FFF7F2;
    padding: 3px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.review-stack__header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.review-stack__rank {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    background: #1E2A3A;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
}

.review-stack__card--featured .review-stack__rank {
    background: #E8793A;
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 0.875rem;
}

.review-stack__title {
    font-size: 1.125rem;
    color: #1E2A3A;
    margin: 0 0 4px;
}

.review-stack__bonus {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #E8793A;
    margin: 0;
}

.review-stack__text {
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 0.9375rem;
}

.review-stack__text p {
    margin-bottom: 0;
}

.review-stack__footer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

/* ── CONTENT SECTIONS ── */

.article-block {
    padding: 60px 0;
    background: #ffffff;
}

.article-block--alt {
    padding: 60px 0;
    background: #EDF0F4;
}

.article-block h2,
.article-block--alt h2 {
    color: #1E2A3A;
}

.article-block h3,
.article-block--alt h3 {
    margin-top: 30px;
    margin-bottom: 12px;
}

.article-block p,
.article-block--alt p {
    font-size: 1.0625rem;
    line-height: 1.75;
}

.article-block ul li,
.article-block--alt ul li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.text-link {
    color: #E8793A;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid rgba(232, 121, 58, 0.3);
    transition: border-color .2s ease;
}

.text-link:hover {
    color: #D4651F;
    border-bottom-color: #E8793A;
    text-decoration: none;
}

/* ── CALLOUT ── */

.callout {
    background: #ffffff;
    border-left: 4px solid #E8793A;
    padding: 22px 25px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
    border: 1px solid #dde2e8;
    border-left: 4px solid #E8793A;
}

.callout p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.callout strong {
    color: #E8793A;
}

/* ── PAYMENT TABLE ── */

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.data-table thead {
    background: #1E2A3A;
    color: #ffffff;
}

.data-table th {
    padding: 12px 15px;
    font-weight: 600;
    font-size: 0.9375rem;
}

.data-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    font-size: 0.9375rem;
}

.data-table tr:nth-child(even) {
    background: #FAFBFC;
}

/* ── CHECKLIST ── */

.tick-list {
    list-style: none;
    padding: 0;
}

.tick-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    line-height: 1.6;
}

.tick-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #3B82F6;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ── FAQ PANEL ── */

.faq-panel {
    padding: 60px 0;
    background: #EDF0F4;
}

.faq-panel__heading {
    text-align: center;
    color: #1E2A3A;
    margin-bottom: 45px;
}

.faq-panel__item {
    background: #ffffff;
    border: 1px solid #dde2e8;
    margin-bottom: 8px;
    border-radius: 6px;
    overflow: hidden;
}

.faq-panel__item summary {
    padding: 18px 50px 18px 25px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    color: #1E2A3A;
    list-style: none;
    position: relative;
    transition: background .15s ease;
}

.faq-panel__item summary::-webkit-details-marker {
    display: none;
}

.faq-panel__item summary::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    font-weight: 400;
    color: #999;
    transition: transform .2s ease;
}

.faq-panel__item[open] summary::after {
    content: '\2212';
}

.faq-panel__item summary:hover {
    background: #FAFBFC;
}

.faq-panel__answer {
    padding: 0 25px 20px;
    line-height: 1.7;
    font-size: 0.9375rem;
    color: #555;
}

.faq-panel__answer p {
    margin: 0;
}

/* ── RESPONSIBLE GAMBLING ── */

.responsible {
    padding: 60px 0;
    background: #ffffff;
    border-top: 3px solid #E8793A;
}

.responsible h2 {
    color: #C0392B;
}

.responsible a {
    color: #3B82F6;
    font-weight: 500;
}

/* ── MID CTA ── */

.mid-banner {
    background: linear-gradient(135deg, #1E2A3A 0%, #0F1926 100%);
    padding: 40px 0;
    text-align: center;
}

.mid-banner h3 {
    color: #ffffff;
    margin-bottom: 12px;
}

.mid-banner p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

/* ── FOOTER (2-column) ── */

.page-footer {
    background: #1E2A3A;
    padding: 50px 0 20px;
    color: #ccc;
}

.page-footer h3 {
    color: #E8793A;
    font-size: 1.125rem;
    margin-bottom: 18px;
}

.page-footer p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #ccc;
}

.page-footer a {
    color: #ccc;
    transition: color .15s ease;
}

.page-footer a:hover {
    color: #E8793A;
    text-decoration: none;
}

.page-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-footer__links li {
    margin-bottom: 10px;
}

.page-footer__links a {
    color: #ffffff;
    font-size: 0.9375rem;
}

.page-footer__links a:hover {
    color: #E8793A;
}

.page-footer__helpline {
    color: #E8793A;
    font-weight: 500;
}

.page-footer__disclosure {
    background: rgba(255, 255, 255, 0.04);
    border-left: 4px solid #E8793A;
    padding: 20px;
    margin-top: 35px;
    margin-bottom: 25px;
}

.page-footer__disclosure p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.65;
}

.page-footer__disclosure strong {
    color: #E8793A;
}

.page-footer__copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
}

.page-footer__copyright p {
    margin: 0;
    font-size: 0.8125rem;
    color: #999;
}

/* ── ABOUT PAGE ── */

.profile-card {
    background: #ffffff;
    border: 1px solid #dde2e8;
    border-radius: 8px;
    padding: 30px 24px;
    text-align: center;
    height: 100%;
}

.profile-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #1E2A3A;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 60px;
    margin: 0 auto 18px;
}

.profile-card h3 {
    font-size: 1.125rem;
    color: #1E2A3A;
    margin-bottom: 4px;
}

.profile-card__role {
    font-weight: 600;
    color: #E8793A;
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.profile-card__creds {
    font-size: 0.8125rem;
    color: #888;
    margin-bottom: 14px;
    font-style: italic;
}

.profile-card__bio {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #555;
    text-align: left;
    margin-bottom: 0;
}

.standard-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.standard-item__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1E2A3A;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 40px;
    text-align: center;
}

.standard-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.0625rem;
    color: #1E2A3A;
    margin-bottom: 8px;
}

.standard-item p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #555;
    margin-bottom: 0;
}

/* ── UTILITY ── */

.overflow-x-auto {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

#scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #3B82F6;
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    text-align: center;
    line-height: 44px;
    font-size: 1.25rem;
    z-index: 99;
    text-decoration: none;
    display: none;
    transition: background .2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
}

#scroll-top:hover {
    background: #2563EB;
}

/* ── DESKTOP OVERRIDES ── */

@media (min-width: 768px) {
    .listing__tag,
    .listing__code {
        display: inline-block;
    }
}

@media (max-width: 767px) {
    .listing__tag,
    .listing__code {
        display: none;
    }

    .listing__featured {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }

    .listing__featured .listing__action {
        width: 100%;
    }

    .listing__featured .listing__action .btn-action {
        display: block;
        width: 100%;
        text-align: center;
    }

    .listing__item {
        flex-wrap: wrap;
    }

    .listing__item .listing__action {
        width: 100%;
    }

    .listing__item .listing__action .btn-action {
        display: block;
        width: 100%;
        text-align: center;
    }

    .hero-panel {
        padding: 40px 0;
    }

    .hero-panel__card {
        padding: 32px 24px;
    }

    .hero-panel__title {
        font-size: 1.75rem;
    }
}
