/* ================================================================
   MINIFOLIO HUGO — Custom CSS
   Layered on top of Minifolio's main.css
   ================================================================ */

/* ---- Hide custom cursor (not needed for content site) ---- */
.mouse-cursor_7821711e09298406 { display: none !important; }

/* ---- Sticky footer: page content grows to push footer down ---- */
body { display: flex; flex-direction: column; min-height: 100vh; }
.mf-page-content_5f47eb50d2491097 { flex: 1 0 auto; }
.footer-section_a4713d6e7e59cf0c { flex-shrink: 0; }

/* ---- Header: always fixed, no animation on sticky class ---- */
.header-1_a7a69eb016bbd69b {
    position: fixed !important;
    background-color: var(--bg, #171914) !important;
    transition: background-color 0.4s ease;
}
.header-1_a7a69eb016bbd69b.sticky {
    animation: none !important;
    -webkit-animation: none !important;
}

/* ---- Logo sizes ---- */
.header-1_a7a69eb016bbd69b .logo_f26a104f35aae61f img {
    max-height: 60px;
    width: auto;
}
@media (max-width: 767px) {
    .header-1_a7a69eb016bbd69b .logo_f26a104f35aae61f img { max-height: 50px; }
}

/* ---- Play button: always visible in header, thicker border ---- */
.header-1_a7a69eb016bbd69b .av-play-btn {
    display: inline-flex !important;
    border-width: 2px !important;
}

/* ---- Short/full text swap on the header play button ---- */
.av-play-btn .av-btn-text-short_90646ea4ff2b4758 { display: none !important; }
@media (max-width: 576px) {
    .av-play-btn .av-btn-text-full_945164f691607e05  { display: none !important; }
    .av-play-btn .av-btn-text-short_90646ea4ff2b4758 { display: inline !important; }
}

/* ---- Play button in body content: black text, no underline ---- */
.mf-play-btn--content_e05052b19c2b440c,
.mf-play-btn--content_e05052b19c2b440c:visited {
    color: #000 !important;
    text-decoration: none !important;
}

/* ---- Content area ---- */
.mf-content-area,
.mf-home-content-area {
    padding: 80px 0;
}
@media (max-width: 767px) {
    .mf-content-area,
    .mf-home-content-area { padding: 50px 0; }
}

/* ---- Article prose ---- */
.mf-article_a8075d229b6bb9d3 {
    color: rgba(255, 255, 255, 0.85);
}
.mf-article_a8075d229b6bb9d3 p,
.mf-article_a8075d229b6bb9d3 li {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    margin-bottom: 1em;
}
.mf-article_a8075d229b6bb9d3 ul,
.mf-article_a8075d229b6bb9d3 ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
}
.mf-article_a8075d229b6bb9d3 ul { list-style-type: disc; }
.mf-article_a8075d229b6bb9d3 ol { list-style-type: decimal; }
.mf-article_a8075d229b6bb9d3 ul ul { list-style-type: circle; }
.mf-article_a8075d229b6bb9d3 ul ul ul { list-style-type: square; }
.mf-article_a8075d229b6bb9d3 a {
    color: var(--theme, #BFF747);
    text-decoration: underline;
}
.mf-article_a8075d229b6bb9d3 a:hover { opacity: 0.8; }
.mf-article_a8075d229b6bb9d3 img, .mf-article-home_cb586e2ae3b837b3 img { width: 100%; height: auto; }

/* ---- Article headings ---- */
.mf-article_a8075d229b6bb9d3 h1, .mf-article-home_cb586e2ae3b837b3 h1 { font-size: 48px; margin: 1em 0 0.5em; }
.mf-article_a8075d229b6bb9d3 h2, .mf-article-home_cb586e2ae3b837b3 h2 { font-size: 36px; margin: 1em 0 0.5em; }
.mf-article_a8075d229b6bb9d3 h3, .mf-article-home_cb586e2ae3b837b3 h3 { font-size: 28px; margin: 0.9em 0 0.4em; }
.mf-article_a8075d229b6bb9d3 h4, .mf-article-home_cb586e2ae3b837b3 h4 { font-size: 22px; margin: 0.8em 0 0.4em; }
.mf-article_a8075d229b6bb9d3 h5, .mf-article-home_cb586e2ae3b837b3 h5 { font-size: 18px; margin: 0.7em 0 0.3em; }
.mf-article_a8075d229b6bb9d3 h6, .mf-article-home_cb586e2ae3b837b3 h6 { font-size: 16px; margin: 0.7em 0 0.3em; }
@media (max-width: 767px) {
    .mf-article_a8075d229b6bb9d3 h1, .mf-article-home_cb586e2ae3b837b3 h1 { font-size: 34px; }
    .mf-article_a8075d229b6bb9d3 h2, .mf-article-home_cb586e2ae3b837b3 h2 { font-size: 26px; }
    .mf-article_a8075d229b6bb9d3 h3, .mf-article-home_cb586e2ae3b837b3 h3 { font-size: 20px; }
}

/* ---- Tables ---- */
.mf-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5em 0;
}
.mf-article_a8075d229b6bb9d3 table,
.mf-article-home_cb586e2ae3b837b3 table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg, #171914);
}
.mf-article_a8075d229b6bb9d3 table th,
.mf-article-home_cb586e2ae3b837b3 table th {
    color: #fff !important;
    font-weight: 700 !important;
    background: rgba(191, 247, 71, 0.12);
    border: 1px solid rgba(193, 193, 193, 0.16);
    padding: 10px 14px;
    text-align: left;
}
.mf-article_a8075d229b6bb9d3 table td,
.mf-article-home_cb586e2ae3b837b3 table td {
    color: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(193, 193, 193, 0.12);
    padding: 10px 14px;
}
.mf-article_a8075d229b6bb9d3 table tr:nth-child(even) td,
.mf-article-home_cb586e2ae3b837b3 table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.03);
}

/* ---- TOC ---- */
.ek-toc {
    border: 1px solid rgba(193, 193, 193, 0.16);
    border-radius: 8px;
    padding: 16px 20px;
    margin: 1.5em 0;
    background: var(--bg, #171914);
}
.ek-toc summary {
    list-style: none;
    cursor: pointer;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ek-toc summary::-webkit-details-marker { display: none; }
.ek-toc-arrow_b4fe7dc06e1c005b { transition: transform 0.3s ease; }
.ek-toc.is-open .ek-toc-arrow_b4fe7dc06e1c005b { transform: rotate(180deg); }
.ek-toc nav, .ek-toc ul, .ek-toc ol {
    margin-top: 12px;
    overflow: hidden;
}
.ek-toc a { color: var(--theme, #BFF747); text-decoration: none; }
.ek-toc a:hover { text-decoration: underline; }

/* ---- FAQ: hide <hr> rendered from markdown --- separators in answer content ---- */
.faq-items .accordion-body_37168a706816101a hr { display: none; }

/* ---- FAQ: neutralise Bootstrap accordion variables that cause the white line ---- */
.faq-items .accordion {
    --bs-accordion-border-color: transparent;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-active-bg: var(--bg-2, #171914);
    --bs-accordion-active-color: inherit;
}
.faq-items .accordion-item_a2245871de0ed968 {
    background-color: var(--bg-2) !important;
}
.faq-items .accordion-item_a2245871de0ed968 .accordion-header_a1c2012bfe6c8f9e .accordion-button:not(.collapsed),
.faq-items .accordion-item_a2245871de0ed968 .accordion-header_a1c2012bfe6c8f9e .accordion-button:focus {
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
}

/* ---- FAQ: override missing arrow SVGs (icon/ folder removed) with inline green chevron ---- */
.faq-items .accordion-item_a2245871de0ed968 .accordion-header_a1c2012bfe6c8f9e .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23BFF747'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    background-size: 20px !important;
    transform: rotate(0deg);
    transition: transform 0.3s ease !important;
}
.faq-items .accordion-item_a2245871de0ed968 .accordion-header_a1c2012bfe6c8f9e .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23BFF747'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    transform: rotate(-180deg) !important;
}
.faq-section_dc177ff599263a74 .section-title_6d8b683f76940225 h2 {
    color: #fff;
    font-size: 44px !important;
}
@media (max-width: 767px) {
    .faq-section_dc177ff599263a74 .section-title_6d8b683f76940225 h2 { font-size: 30px !important; }
}

/* ---- FAQ answer paragraphs: no extra vertical margin ---- */
.faq-1_0ff9900c5e1fa983 .accordion-body_37168a706816101a p { margin-top: 0 !important; margin-bottom: 0 !important; }

/* ---- FAQ section: reduce top spacing from main content ---- */
.faq-section_dc177ff599263a74.section-padding_7700586e3554ed40 {
    padding-top: 30px !important;
}

/* ---- Casino logos (footer bottom bar, right-aligned) ---- */
.mf-casino-logos_f5dc3b9b9306e622 {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom-wrapper_9a5c735b4c56f71e .mf-casino-logos_f5dc3b9b9306e622 {
    margin: 0;
    justify-content: flex-end;
}
.mf-casino-logo-item_9de6bdb6a151baf1 img {
    height: 32px;
    width: auto;
    object-fit: contain;
    opacity: 0.75;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}
.mf-casino-logo-item_9de6bdb6a151baf1 img:hover {
    opacity: 1;
    filter: grayscale(0%);
}
@media (max-width: 991px) { .mf-casino-logo-item_9de6bdb6a151baf1 img { height: 28px; } }
@media (max-width: 767px) { .mf-casino-logo-item_9de6bdb6a151baf1 img { height: 24px; } }
@media (max-width: 767px) {
    .footer-bottom-wrapper_9a5c735b4c56f71e .mf-casino-logos_f5dc3b9b9306e622 { justify-content: center; }
}

/* ---- Footer: reduce spacing between widget-wrapper and disclaimer ---- */
.mf-footer-widget-wrapper_ae2d53b5bd901797 {
    padding-bottom: 32px !important;
}
.mf-footer-disclaimer_d02f70049edfa71f {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mf-disclaimer-label_1c4e02fdf8120d78 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--theme, #BFF747);
    margin-bottom: 4px;
}
.mf-disclaimer-text_0d203a686e751c36 {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
}
.mf-disclaimer-text_0d203a686e751c36 strong {
    color: rgba(255, 255, 255, 0.75);
}

/* ---- Footer logo ---- */
.footer-logo_5c4c6bc67fc69d3e img {
    max-height: 60px;
    width: auto;
}

/* ---- 404 error page ---- */
.error-section_48c2e63047d30683 {
    padding: 0 !important;
    display: flex;
    align-items: center;
    min-height: 100vh;
}
.error-section_48c2e63047d30683 > .container {
    padding-top: 120px;  /* clear fixed header */
    padding-bottom: 60px;
}
.error-wrapper_6436d4efe3400b8b {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}
.error .h2_ad4c7001e23c8421,
.error h2 {
    font-size: 160px;
    line-height: 1;
    color: var(--theme, #BFF747);
    font-family: "Big Shoulders Display", sans-serif;
    font-weight: 800;
    text-align: center;
}
.error-content_85bc730ca2f375c3 {
    text-align: center;
}
.error-content_85bc730ca2f375c3 h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 12px;
    text-align: center;
}
.error-content_85bc730ca2f375c3 p {
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
    text-align: center;
}
@media (max-width: 767px) {
    .error h2 { font-size: 100px; }
    .error-content_85bc730ca2f375c3 h2 { font-size: 26px; }
}

/* ---- Breadcrumb hero h1 (mirrors main.css .page-heading_7beedadf4aea1c1f h2 rules) ---- */
.breadcrumb-wrapper_7e7f0b5e0a0d2a76 .page-heading_7beedadf4aea1c1f h1 {
    font-size: 72px;
    line-height: 80px;
    margin-bottom: 20px;
}
@media (max-width: 1199px) { .breadcrumb-wrapper_7e7f0b5e0a0d2a76 .page-heading_7beedadf4aea1c1f h1 { font-size: 70px; } }
@media (max-width: 991px)  { .breadcrumb-wrapper_7e7f0b5e0a0d2a76 .page-heading_7beedadf4aea1c1f h1 { font-size: 60px; } }
@media (max-width: 575px)  { .breadcrumb-wrapper_7e7f0b5e0a0d2a76 .page-heading_7beedadf4aea1c1f h1 { font-size: 50px; margin-bottom: 0; } }

/* ---- Breadcrumb trail: links white, current page muted, hover accent ---- */
.breadcrumb-wrapper_7e7f0b5e0a0d2a76 .page-heading_7beedadf4aea1c1f .breadcrumb-list_cc16ee9467477932 li a { color: #fff; }
.breadcrumb-wrapper_7e7f0b5e0a0d2a76 .page-heading_7beedadf4aea1c1f .breadcrumb-list_cc16ee9467477932 li a:hover { color: var(--theme, #BFF747); }
.breadcrumb-wrapper_7e7f0b5e0a0d2a76 .page-heading_7beedadf4aea1c1f .breadcrumb-list_cc16ee9467477932 li.active { color: #868283; }

/* ---- Breadcrumb shapes ---- */
.breadcrumb-wrapper_7e7f0b5e0a0d2a76 .star-shape_6fc2b77e1d3850b4,
.breadcrumb-wrapper_7e7f0b5e0a0d2a76 .arrow-shape_9ed6238746e5f70f {
    pointer-events: none;
}

/* ---- Section item (section.html list) ---- */
/* ---- Contact page item spacing ---- */
.contact-item-wrapper_a80a732947f2f3a6 .contact-item_5810687e8644753f {
    padding: 28px 0 !important;
}

.mf-section-item_5c72de4f9a1d811f {
    padding: 20px 0;
    border-bottom: 1px solid rgba(193, 193, 193, 0.12);
}
.mf-section-item_5c72de4f9a1d811f h2 { font-size: 22px; }
.mf-section-item_5c72de4f9a1d811f h2 a { color: #fff; }
.mf-section-item_5c72de4f9a1d811f h2 a:hover { color: var(--theme, #BFF747); }
.mf-section-item_5c72de4f9a1d811f p { color: rgba(255, 255, 255, 0.65); margin-top: 8px; }
