/* =============================================
   webfolio-custom.css — casino content overrides
   Sits on top of plugins.css + style.css
   ============================================= */

/* ── 0. Container (plugins.css has no Bootstrap) ── */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}
.container-fluid {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}
@media (max-width: 575px) {
    .container, .container-fluid { padding-left: 20px; padding-right: 20px; }
}

/* ── 0b. Row / col grid (Bootstrap-lite) ── */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}
.row > * {
    padding-left: 12px;
    padding-right: 12px;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
@media (min-width: 768px) {
    .col-md-4  { width: 33.333%; }
    .col-md-6  { width: 50%; }
}
@media (min-width: 992px) {
    .col-lg-2  { width: 16.666%; }
    .col-lg-3  { width: 25%; }
    .col-lg-4  { width: 33.333%; }
    .col-lg-5  { width: 41.666%; }
    .col-lg-6  { width: 50%; }
    .col-lg-7  { width: 58.333%; }
}
.g-4 { gap: 24px; }
.g-5 { gap: 32px; }
.row.g-4  { margin: 0; }
.row.g-4 > * { padding: 0; }
.row.g-5  { margin: 0; }
.row.g-5 > * { padding: 0; }
.justify-content-between { justify-content: space-between; }
.mb-4  { margin-bottom: 24px; }
.mb-5  { margin-bottom: 32px; }
.mb-lg-0 { margin-bottom: 0; }
@media (max-width: 991px) {
    .mb-lg-0 { margin-bottom: 24px; }
}

/* ── 0c. Reset overflow ── */
body {
    overflow-x: hidden !important;
}

/* ── 1. Navbar ── */
/* nav-crev: floating pill, absolute, becomes fixed on scroll */
.navbar.nav-crev {
    position: absolute;
    left: 40px;
    top: 30px;
    width: calc(100% - 80px);
    padding: 0 30px;
    min-height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    z-index: 999;
    transition: background 0.4s, border-color 0.4s, border-radius 0.4s, top 0.4s, left 0.4s, width 0.4s;
}

.navbar.nav-crev .wf-nav-logo {
    width: 110px;
    flex-shrink: 0;
    position: relative;
}
.navbar.nav-crev .wf-nav-logo::after {
    content: '';
    position: absolute;
    top: -20px;
    bottom: -20px;
    right: -20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.nav-crev .wf-nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    gap: 0;
}

.navbar.nav-crev .wf-nav-links li { position: relative; }

.navbar.nav-crev .wf-nav-links a {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 24px 16px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s;
}
.navbar.nav-crev .wf-nav-links a:hover { color: #fd5b38; }

/* Dropdown */
.navbar.nav-crev .wf-nav-links .wf-dropdown { position: relative; }

.navbar.nav-crev .wf-nav-links .wf-dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background: #121212;
    border: 1px solid #393939;
    border-radius: 5px;
    min-width: 200px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 1000;
    list-style: none;
    margin: 0;
}
.navbar.nav-crev .wf-nav-links .wf-dropdown:hover .wf-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.navbar.nav-crev .wf-nav-links .wf-dropdown-menu a {
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    position: relative;
}
.navbar.nav-crev .wf-nav-links .wf-dropdown-menu a::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s;
}
.navbar.nav-crev .wf-nav-links .wf-dropdown-menu a:hover { padding-left: 26px; }
.navbar.nav-crev .wf-nav-links .wf-dropdown-menu a:hover::after { width: 10px; }

/* Play button area */
.wf-nav-play {
    flex-shrink: 0;
    position: relative;
    padding-left: 20px;
}
.wf-nav-play::before {
    content: '';
    position: absolute;
    top: -20px;
    bottom: -20px;
    left: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sticky state */
.navbar.nav-crev.nav-scroll {
    position: fixed;
    top: -50px;
    left: 0;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 0;
    background: rgba(15, 15, 15, 0.97);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

/* Hamburger */
.wf-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    flex-direction: column;
    gap: 5px;
}
.wf-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile nav */
.wf-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: #121212;
    z-index: 10000;
    padding: 30px 24px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
}
.wf-mobile-nav.open { transform: translateX(0); }

.wf-mobile-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.35s;
}
.wf-mobile-backdrop.open { opacity: 1; }

.wf-mobile-nav .wf-mobile-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: block;
    margin-bottom: 30px;
    padding: 0;
}

.wf-mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.wf-mobile-nav ul li a {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-decoration: none;
}
.wf-mobile-nav ul li a:hover { color: #fd5b38; }

.wf-mobile-nav .wf-mobile-play {
    margin-top: 24px;
}

@media (max-width: 991px) {
    .navbar.nav-crev { padding: 0 20px; }
    .navbar.nav-crev .wf-nav-links { display: none; }
    /* Keep play button in mobile navbar, strip desktop divider + logo separator */
    .navbar.nav-crev .wf-nav-play { display: flex; padding-left: 12px; }
    .navbar.nav-crev .wf-nav-play::before { display: none; }
    .navbar.nav-crev .wf-nav-logo::after { display: none; }
    .wf-hamburger { display: flex; }
    .wf-mobile-nav { display: block; }
    /* Backdrop must be in DOM for transitions but must NOT intercept clicks until open */
    .wf-mobile-backdrop { display: block; pointer-events: none; }
}
.wf-mobile-backdrop.open { pointer-events: auto; }

/* ── 2. Navbar spacer ── */
.wf-nav-spacer {
    height: 110px; /* matches nav pill height + top offset */
}

/* ── 3. Page hero ── */
.wf-page-hero {
    position: relative;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    background-color: #0f0f0f;
    padding: 160px 0 70px;
    overflow: hidden;
}
@media (max-width: 991px) {
    .wf-page-hero { background-attachment: scroll; }
}
.wf-page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: -2px;
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0.55), #0f0f0f);
    pointer-events: none;
}
.wf-page-hero-content {
    position: relative;
    z-index: 2;
}
.wf-page-hero h1 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 0;
}
.wf-page-hero .wf-post-author {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-top: 12px;
}
.wf-page-hero .wf-post-author span { color: rgba(255, 255, 255, 0.85); }

/* ── 4. Breadcrumbs ── */
.wf-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    flex-wrap: wrap;
}
.wf-breadcrumbs li {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
}
.wf-breadcrumbs li + li::before {
    content: '/';
    opacity: 0.4;
}
.wf-breadcrumbs li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.wf-breadcrumbs li a:hover { color: #fd5b38; }
.wf-breadcrumbs li[aria-current] { color: rgba(255, 255, 255, 0.8); }

/* ── 5. Content area ── */
.wf-content-area {
    background: #0f0f0f;
    padding: 60px 0 80px;
}

/* Article typography on dark bg */
.wf-article {
    color: #c6c8c9;
    line-height: 1.8;
    font-size: 16px;
}
.wf-article h1,
.wf-article h2,
.wf-article h3,
.wf-article h4,
.wf-article h5,
.wf-article h6 {
    color: #fff;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 2em;
    margin-bottom: 0.6em;
}
.wf-article h2 { font-size: 1.75rem; }
.wf-article h3 { font-size: 1.4rem; }
.wf-article h4 { font-size: 1.15rem; }
.wf-article p { margin-bottom: 1.1em; color: #c6c8c9; }
.wf-article a { color: #fd5b38; text-decoration: none; }
.wf-article a:hover { color: #ff7a5c; text-decoration: underline; }

.wf-article ul,
.wf-article ol {
    padding-left: 1.6em;
    margin-bottom: 1.1em;
    color: #c6c8c9;
}
.wf-article ul { list-style: disc; }
.wf-article ul ul { list-style: circle; }
.wf-article ol { list-style: decimal; }
.wf-article ol ol { list-style: lower-alpha; }
.wf-article li { margin-bottom: 0.4em; list-style: inherit; }

/* Images */
.wf-article img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
    margin: 1.5em 0;
}

/* Tables */
.wf-article table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: 15px;
}
.wf-article table thead tr {
    background: linear-gradient(45deg, #fd5b38, #c23000);
}
.wf-article table th {
    background: transparent;
    color: #fff;
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    white-space: nowrap;
}
.wf-article table td {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: #c6c8c9;
}
.wf-article table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

/* ── 6. ToC ── */
details.wf-toc {
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 16px 20px;
    margin: 0 0 2em;
}
summary.wf-toc-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    list-style: none;
    user-select: none;
}
summary.wf-toc-toggle::-webkit-details-marker { display: none; }
summary.wf-toc-toggle::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}
details.wf-toc[open] > summary.wf-toc-toggle::after {
    transform: rotate(180deg);
}
.wf-toc-nav {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.wf-toc-nav ul { list-style: none; padding: 0; margin: 0; }
.wf-toc-nav li { margin: 4px 0; }
.wf-toc-nav a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}
.wf-toc-nav a:hover { color: #fd5b38; }
.wf-toc-nav ul ul { padding-left: 16px; }

/* ── 7. FAQ ── */
.wf-faq {
    margin-top: 60px;
}
.wf-faq-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 28px;
}
.wf-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.wf-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    list-style: none;
    user-select: none;
    gap: 12px;
}
.wf-faq-item summary::-webkit-details-marker { display: none; }
.wf-faq-item summary::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: #fd5b38;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.wf-faq-item[open] > summary::after {
    content: '\f068';
}
.wf-faq-answer {
    padding: 0 0 20px;
    color: #c6c8c9;
    font-size: 15px;
    line-height: 1.8;
}

/* ── 8. Play button (shortcode + header) ── */
.wf-play-btn {
    display: inline-block;
    background: #fd5b38;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 22px;
    border-radius: 5px;
    border: 1px solid transparent;
    text-decoration: none !important;
    transition: all 0.4s;
    white-space: nowrap;
}
.wf-play-btn:hover {
    background: transparent;
    border-color: #fff;
    color: #fff !important;
}
.wf-play-btn--lg {
    padding: 14px 34px;
    font-size: 15px;
    border-radius: 6px;
}
.wf-play-btn-wrap {
    margin: 1.5em 0;
}

/* ── 9. Demo iframe shortcode ── */
.wf-demo-wrap {
    margin: 1.5em 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── 10. Section cards ── */
.wf-card {
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 28px 24px;
    height: 100%;
    transition: border-color 0.3s;
}
.wf-card:hover { border-color: rgba(253, 91, 56, 0.4); }
.wf-card-title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.wf-card-title a { color: inherit; text-decoration: none; }
.wf-card-title a:hover { color: #fd5b38; }
.wf-card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 12px 0;
}
.wf-card-desc {
    color: #c6c8c9;
    font-size: 14px;
    line-height: 1.7;
}
.wf-read-more {
    display: inline-block;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #fd5b38;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.wf-read-more:hover { color: #ff7a5c; }

/* ── 11. Marquee CTA (Play Now) ── */
.wf-marq-cta {
    overflow: hidden;
    padding: 40px 0 0;
}
/* Row 1 inherits .main-marq.lrg.sub-bg styles from style.css */
/* Row 2 inherits .main-marq.bord-item styles from style.css */
/* Overlay link covers the strip and acts as Play Now link */
.wf-marq-cta .main-marq .slide-har {
    position: relative;
}
.wf-marq-cta .overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}

/* ── 12. Footer ── */
footer.wf-footer {
    position: relative;
    background: transparent;
    padding: 60px 0 30px;
}
footer.wf-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    bottom: 40px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.01), transparent);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    z-index: 0;
}
footer.wf-footer .wf-footer-inner {
    position: relative;
    z-index: 1;
}

/* Top row */
.wf-footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 60px;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.wf-footer-logo-wrap { flex-shrink: 0; }
.wf-footer-logo {
    width: 110px;
    display: block;
}
.wf-footer-disclaimers {
    flex: 1;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.wf-footer-disclaimer-block { flex: 1; min-width: 180px; }
.wf-footer-disclaimer-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
    margin: 0;
}
.wf-footer-legal { flex-shrink: 0; min-width: 140px; }

/* Shared elements */
.wf-footer-section-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
}
.wf-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.wf-footer-links li { margin-bottom: 8px; }
.wf-footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}
.wf-footer-links a:hover { color: #fd5b38; }

/* Bottom bar */
.wf-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 28px;
}
.wf-footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}
.wf-footer-copyright p { margin: 0; }

/* Casino trust logos */
.wf-footer-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.wf-footer-trust img {
    height: 24px;
    width: auto;
    opacity: 0.75;
    filter: grayscale(1);
    transition: opacity 0.3s, filter 0.3s;
}
.wf-footer-trust img:hover {
    opacity: 1;
    filter: none;
}

@media (max-width: 767px) {
    footer.wf-footer::before { left: 0; right: 0; }
    .wf-footer-top { gap: 28px; }
    .wf-footer-disclaimers { flex-direction: column; gap: 24px; }
    .wf-footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ── 13. Responsive helpers ── */
@media (max-width: 767px) {
    .wf-page-hero { padding: 130px 0 50px; }
    .wf-content-area { padding: 40px 0 60px; }
    .wf-article h2 { font-size: 1.4rem; }
    .wf-article h3 { font-size: 1.15rem; }
    footer.wf-footer::before { left: 0; right: 0; }
}
