/* Typography */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #2d3436;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    letter-spacing: -0.01em;
}

/* Header */

.header1 {
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
    position: relative;
    z-index: 50;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.navbar {
    width: 100%;
    margin: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    padding: 0 12%;
    box-sizing: border-box;
    gap: 2rem;
}

.navbar-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    min-width: 0;
}

.logo {
    flex-shrink: 0;
    min-width: 0;
    margin-right: 2rem;
}

.logo a {
    display: inline-flex;
    align-items: center;
}

.logo img,
.logo .custom-logo {
    width: auto;
    height: auto;
    max-width: 220px;
    max-height: 80px;
    object-fit: contain;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: #43b02a;
    border: none;
    border-radius: 6px;
    padding: 8px 10px;
    cursor: pointer;
    transition: background-color 0.18s ease;
}

.navbar-toggle:hover {
    background: #3aa326;
}

.navbar-toggle .icon-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
    transition: all 0.2s ease;
}

#navbar {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    margin-left: 0;
}

.navbar-collapse.collapse {
    display: block;
}

.navbar-collapse.is-open {
    display: block;
}

.menu.nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.01em;
    font-family: "Poppins", Arial, sans-serif;
    justify-content: flex-end;
    flex-wrap: nowrap;
    min-width: 0;
}

.menu.nav > li {
    flex-shrink: 0;
    position: relative;
}

.menu.nav > li > a {
    text-decoration: none;
    color: #0b1324;
    font-size: 13px;
    position: relative;
    padding: 0.35rem 0.4rem;
    transition: color 0.18s ease;
    white-space: nowrap;
    display: block;
    flex-shrink: 0;
}

.menu.nav > li.current-menu-item > a {
    color: #0b1324;
}

.menu.nav > li > a:hover {
    color: #43b02a;
}

.menu .social_links_separator {
    width: 1px;
    height: 24px;
    background: #e5e7eb;
}

.menu .social_links a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px;
    height: 32px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    color: #0b1324;
    background: #fff;
    transition: border-color 0.18s ease, color 0.18s ease;
    text-align: center;
    line-height: 1 !important;
    padding: 0 !important;
    box-sizing: border-box;
    margin: 0;
}

.menu .social_links a i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    width: 100%;
    height: 100%;
}

.menu .social_links .social-icon-img {
    width: 18px !important;
    height: 18px !important;
    object-fit: contain;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    vertical-align: top;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.menu .social_links a:hover {
    border-color: #0b1324;
    color: #0b1324;
}

.menu .nav-menu-account .button {
    display: inline-block;
    padding: 0.55rem 1.2rem;
    background: #43b02a;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.menu .nav-menu-account .button:hover {
    background: #3aa326;
    color: #fff;
}

/* Static badges injected in anchors */
.menu .menu-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
    padding: 1px 4px;
    border-radius: 3px;
    font-size: 8px;
    line-height: 1.1;
    color: #fff;
    background: #22a1a8;
    position: absolute;
    top: -8px;
    right: -10px;
    white-space: nowrap;
    z-index: 1;
}

.menu .menu-badge:empty {
    display: none;
}

.menu .menu-badge:nth-child(1) {
    background: #5d2de6;
}

/* desktop tweaks */
@media (max-width: 1400px) and (min-width: 1201px) {
    .navbar-inner {
        padding: 0 6%;
        gap: 2rem;
    }
    .logo {
        margin-right: 2rem;
    }
    .menu.nav {
        gap: 0.7rem;
    }
}

/* Desktop menu - above 1200px */
@media (min-width: 1201px) {
    /* Hide mobile wrapper on desktop */
    .menu .mobile-menu-cta-wrapper {
        display: none !important;
    }
    /* Show desktop elements on desktop */
    .menu .nav-menu-account,
    .menu .social_links {
        display: list-item;
    }
    .navbar-inner {
        padding: 0 6%;
        gap: 2rem;
    }
    .logo {
        margin-right: 2rem;
    }
    .menu.nav {
        gap: 0.5rem;
        flex-wrap: nowrap;
    }
    .menu.nav > li > a {
        padding: 0.3rem 0.3rem;
        font-size: 11px;
    }
    .menu .nav-menu-account .button {
        padding: 0.5rem 0.9rem;
        font-size: 11px;
    }
    .logo img,
    .logo .custom-logo {
        max-width: 180px;
    }
}

/* tablets */
@media (max-width: 1200px) and (min-width: 576px) {
    .navbar-inner {
        padding: 0 5%;
    }
    .logo img,
    .logo .custom-logo {
        max-width: 180px;
    }
}

/* tablet & mobile */
@media (max-width: 1200px) {
    .navbar-inner {
        padding: 0 4%;
        flex-wrap: wrap;
        gap: 1rem;
        min-height: 70px;
    }
    .navbar-header {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        gap: 1rem;
    }
    .navbar-toggle {
        display: inline-flex;
        flex-shrink: 0;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .logo {
        flex: 0 0 auto;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .logo a {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .logo img,
    .logo .custom-logo {
        max-width: 160px;
    }
    #navbar {
        width: 100%;
        margin-top: 0;
        order: 3;
    }
    .navbar-collapse.collapse {
        display: none;
    }
    .navbar-collapse.is-open {
        display: block;
    }
    .menu.nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0.5rem 0 0.75rem;
        width: 100%;
    }
    .menu.nav > li {
        width: 100%;
    }
    .menu.nav > li > a {
        display: block;
        width: 100%;
        padding: 0.7rem 0;
        border-top: 1px solid #f1f5f9;
        white-space: normal;
        box-sizing: border-box;
    }
    .menu .social_links_separator {
        display: none;
    }
    /* Hide desktop social links and button for mobile */
    .menu .nav-menu-account,
    .menu .social_links {
        display: none;
    }
    /* Show mobile wrapper with flexbox layout */
    .menu .mobile-menu-cta-wrapper {
        display: block;
        width: 100%;
        border-top: 1px solid #f1f5f9;
        padding-top: 0.5rem;
        margin-top: 0.7rem;
    }
    .menu .mobile-menu-cta-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        width: 100%;
    }
    .menu .mobile-menu-cta-left {
        flex-shrink: 0;
    }
    .menu .mobile-menu-cta-right {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        flex-shrink: 0;
    }
    .menu .mobile-social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border: 1px solid #e5e7eb;
        border-radius: 999px;
        color: #0b1324;
        background: #fff;
        transition: border-color 0.18s ease, color 0.18s ease;
        text-align: center;
        line-height: 1;
        padding: 0;
        box-sizing: border-box;
        margin: 0;
        position: relative;
    }
    .menu .mobile-social-link i {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        line-height: 1;
        width: 100%;
        height: 100%;
    }
    .menu .mobile-social-link .social-icon-img {
        width: 18px !important;
        height: 18px !important;
        object-fit: contain;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    .menu .mobile-social-link:hover {
        border-color: #0b1324;
        color: #0b1324;
    }
    .menu .mobile-menu-cta-left .button {
        display: inline-block;
        width: auto;
        padding: 0.5rem 1rem;
        background: #43b02a;
        color: #fff;
        border-radius: 6px;
        text-decoration: none !important;
        font-weight: 700;
        font-size: 12px;
        transition: background-color 0.18s ease, color 0.18s ease;
    }
    .menu .mobile-menu-cta-left .button:hover {
        background: #3aa326;
        color: #fff;
    }
    .menu .menu-badge {
        position: static;
        margin-left: 6px;
        top: auto;
        right: auto;
    }
}

@media (max-width: 575px) {
    .navbar-inner {
        padding: 0 4%;
        gap: 0.75rem;
        min-height: 60px;
    }
    .navbar-header {
        gap: 0.75rem;
    }
    .logo img,
    .logo .custom-logo {
        max-width: 140px;
    }
    .navbar-toggle {
        padding: 5px 6px;
    }
    .navbar-toggle .icon-bar {
        width: 16px;
    }
    .menu.nav > li > a {
        padding: 0.6rem 0;
        font-size: 13px;
    }
    .menu .nav-menu-account .button {
        padding: 0.55rem 1rem;
        font-size: 12px;
    }
}




/* Footer */
.cf-footer {
    background: #0f0f0f;
    color: #dcdcdc;
    width: 100vw;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    max-width: none;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.cf-footer * {
    box-sizing: border-box;
}
.cf-footer .row {
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
}
.cf-footer .footer-top {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 60px 0 30px;
}
.cf-footer .footer-content-wrapper {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 10%;
    box-sizing: border-box;
}
.cf-footer .footer-div-parent {
    width: 100%;
    padding: 0 0 30px;
    box-sizing: border-box;
}
.cf-footer .footer-div-parent .footer-content-wrapper {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 10%;
}
.cf-footer [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}
.cf-footer .col-md-12 { width: 100%; }
.cf-footer .col-md-4 { width: 33.333333%; }
.cf-footer .col-md-3 { width: 25%; }
.cf-footer .col-md-2 { width: 16.666667%; }
.cf-footer .col-md-9 { width: 75%; }
.cf-footer .col-xs-3 { width: 25%; }
.cf-footer .col-xs-9 { width: 75%; }
.cf-footer .footer-top {
    padding: 40px 24px 10px;
}
.cf-footer .widget {
    margin-bottom: 30px;
}
.cf-footer .widget_coinflip_address_social_icons {
    border: none;
    border-bottom: none;
    margin-bottom: 0;
}
.cf-footer .address-social-links {
    border: none;
    border-bottom: none;
}
.cf-footer .widget-title {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    font-weight: 700;
}
.cf-footer p,
.cf-footer a,
.cf-footer li,
.cf-footer span {
    color: #dcdcdc;
    font-size: 13px;
    line-height: 1.6;
}
.cf-footer a:hover {
    color: #7dfb9b;
}
.cf-footer .contact-details {
    margin-bottom: 16px;
}
.cf-footer .contact-details p {
    margin-bottom: 8px;
}
.cf-footer .contact-details strong {
    color: #ffffff;
    font-weight: 700;
}
.cf-footer .social-links {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    gap: 10px;
    border: none;
}
.cf-footer .social-links li {
    margin: 0;
}
.cf-footer .social-links a {
    width: 32px;
    height: 32px;
    border: 1px solid #2a2a2a;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #dcdcdc;
    text-decoration: none;
}
.cf-footer .social-links .social-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.cf-footer .social-links a:hover {
    border-color: #7dfb9b;
    color: #7dfb9b;
}
.cf-footer .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cf-footer .widget ul li {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #1f1f1f;
}
.cf-footer .widget ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.cf-footer .post-thumbnail {
    position: relative;
}
.cf-footer .relative {
    position: relative;
}
.cf-footer .absolute {
    position: absolute;
}
.cf-footer .post-thumbnail img,
.cf-footer .blog_post_image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}
.cf-footer .post-thumb-placeholder {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border-radius: 6px;
    color: #7dfb9b;
    font-weight: 700;
    font-size: 24px;
}
.cf-footer .thumbnail-overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 6px;
}
/* Removed hover effect for footer news images */
.cf-footer .thumbnail-overlay i {
    color: #fff;
    font-size: 18px;
}
.cf-footer .post-details {
    padding-left: 12px;
}
.cf-footer .post-details a {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    color: #ffffff;
    text-decoration: none;
}
.cf-footer .post-details a:hover {
    color: #7dfb9b;
}
.cf-footer .post-date,
.cf-footer .post-listing {
    font-size: 12px;
    color: #9c9c9c;
    display: block;
    margin-top: 4px;
}
.cf-footer .post-listing a {
    color: #9c9c9c;
    text-decoration: none;
}
.cf-footer .post-listing a:hover {
    color: #7dfb9b;
}
.cf-footer .newsletter {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.cf-footer .c-sign-up-form-input {
    flex: 1;
}
.cf-footer .newsletter input[type=email] {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #dcdcdc;
    padding: 10px 12px;
    border-radius: 4px;
    width: 100%;
    font-size: 13px;
}
.cf-footer .newsletter input[type=email]::placeholder {
    color: #9c9c9c;
}
.cf-footer .newsletter input[type=submit] {
    background: #43b02a;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
    transition: background-color 0.18s ease;
}
.cf-footer .newsletter input[type=submit]:hover {
    background: #3aa326;
}
.cf-footer .footer-row-3 {
    border-top: 1px solid #1f1f1f;
    padding: 20px 0 30px;
    margin-top: 20px;
}
.cf-footer .footer-row-3 img {
    max-height: 34px;
    width: auto;
    display: block;
}
.cf-footer .alignleft {
    float: left;
    margin-right: 15px;
}
.footer-div-parent {
    background: #0a0a0a;
    padding: 20px 0;
    width: 100vw;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.footer-copyright-wrapper {
    width: 40%;
    margin: 0 auto;
    padding: 0;
}
.footer-div-parent .copyright {
    color: #9c9c9c;
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    text-align: center;
}
.footer-div-parent a {
    color: #dcdcdc;
    text-decoration: none;
}
.footer-div-parent a:hover {
    color: #7dfb9b;
}
.footer-div-parent strong {
    color: #ffd700;
}
@media (max-width: 991px) {
    .cf-footer .footer-row-1 .row,
    .cf-footer .footer-row-3 .row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -12px;
    }
    .cf-footer .footer-row-1 .col-md-4:first-child {
        width: 100%;
        padding: 0 12px;
        margin-bottom: 24px;
        box-sizing: border-box;
    }
    .cf-footer .footer-row-1 .col-md-4:not(:first-child),
    .cf-footer .col-md-3 {
        width: 50%;
        padding: 0 12px;
        margin-bottom: 24px;
        box-sizing: border-box;
    }
    .cf-footer .col-md-2 {
        width: 50%;
        padding: 0 12px;
        margin-bottom: 20px;
        box-sizing: border-box;
    }
    .cf-footer .newsletter {
        flex-direction: column;
        align-items: flex-start;
    }
    .cf-footer .newsletter input[type=email] {
        width: 100%;
    }
    .cf-footer .mt-footer-svg {
        flex-direction: column;
        align-items: flex-start;
    }
    .cf-footer .alignright,
    .cf-footer .alignleft {
        float: none;
        margin: 0;
    }
}

/* Hero Widget */
.affiliate-betportal-4-hero-widget {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Arial, sans-serif;
}
.content-lr-10 {
    padding-left: 10%;
    padding-right: 10%;
    width: 100%;
    box-sizing: border-box;
}
.hero-container {
    display: flex;
    min-height: 676px; /* +30% from 520 */
    width: 100%;
    position: relative;
    overflow: visible;
    padding: 0 12%;
    box-sizing: border-box;
    background: #f7f7f7;
}
.hero-left {
    flex: 0 0 50%;
    max-width: 50%;
    background: transparent;
    backdrop-filter: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 0;
    position: relative;
    z-index: 2;
}
.hero-content-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transform: translateY(-10%);
}
.hero-heading {
    font-size: 48px;
    font-weight: 700;
    color: #0b1324;
    margin: 0 0 10px;
    line-height: 1.2;
}
.hero-subheading {
    font-size: 32px;
    font-weight: 600;
    color: #0b1324;
    margin: 0 0 30px;
    line-height: 1.3;
}
.hero-search-wrapper {
    position: relative;
    margin-bottom: 24px;
}
.hero-search-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    overflow: visible;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.hero-search-input {
    flex: 1;
    min-width: 0;
    padding: 14px 18px;
    padding-right: 66px;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: 'Poppins', Arial, sans-serif;
    color: #0b1324;
    background: transparent;
    box-sizing: border-box;
    border-radius: 8px;
}
.hero-search-input::placeholder {
    color: #9c9c9c;
}
.hero-search-button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 48px;
    height: 100%;
    background: #43b02a;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.18s ease, transform 0.12s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 6px 6px 0;
    z-index: 10;
}
.hero-search-button i {
    display: none;
}
.hero-search-button::before {
    content: '';
    width: 18px;
    height: 18px;
    display: block;
    background: center/contain no-repeat url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='8' cy='8' r='6'/><line x1='12.5' y1='12.5' x2='16' y2='16'/></svg>");
}
.hero-search-button:hover {
    background: #3aa326;
    transform: translateY(-1px);
}
.hero-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    max-height: 450px;
    overflow-y: auto;
    margin-top: -2px;
}
.hero-search-results::-webkit-scrollbar {
    width: 6px;
}
.hero-search-results::-webkit-scrollbar-track {
    background: #f5f5f5;
}
.hero-search-results::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}
.hero-search-results::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}
.hero-search-results-list {
    padding: 4px 0;
}
.hero-search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    text-decoration: none;
    color: #0b1324;
    transition: background-color 0.15s ease;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
}
.hero-search-result-item:last-child {
    border-bottom: none;
}
.hero-search-result-item:hover {
    background-color: #f8f9fa;
}
.hero-search-result-empty {
    cursor: default;
    color: #6b7280;
    font-weight: 500;
}

/* Welcome Widget */
.affiliate-betportal-4-welcome-widget {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Arial, sans-serif;
}
.welcome-container {
    width: 100%;
    padding: 80px 12% 40px;
    box-sizing: border-box;
}
.welcome-header {
    text-align: center;
    margin-bottom: 60px;
}
.welcome-pretitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 10px;
}
.welcome-title {
    font-size: 36px;
    font-weight: 700;
    color: #0b1324;
    margin: 0 0 14px;
}
.welcome-subtitle {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
}
.welcome-separator {
    width: 60px;
    height: 4px;
    background: #ffba33;
    margin: 26px auto 0;
}
.welcome-items {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}
.welcome-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 240px;
}
.welcome-number {
    font-size: 64px;
    font-weight: 700;
    color: #dddddd;
    line-height: 1;
    margin-bottom: 8px;
}
.welcome-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #0b1324;
    margin: 0 0 12px;
}
.welcome-card-text {
    font-size: 15px;
    color: #636363;
    line-height: 1.6;
}
.welcome-card-separator {
    width: 60px;
    height: 3px;
    background: #ffba33;
    margin-top: 20px;
}
@media (max-width: 991px) {
    .welcome-container {
        padding: 60px 7% 30px;
    }
    .welcome-title {
        font-size: 30px;
    }
    .welcome-items {
        gap: 24px;
    }
    .welcome-card {
        flex: 1 1 100%;
    }
}

/* Top Casinos Widget */
.affiliate-betportal-4-top-casinos-widget {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Arial, sans-serif;
}
.top-casinos-container {
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 800px;
}
.top-casinos-content {
    width: 100%;
    padding: 80px 12% 80px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
.top-casinos-header {
    text-align: center;
    margin-bottom: 60px;
}
.top-casinos-pretitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 10px;
}
.top-casinos-title {
    font-size: 36px;
    font-weight: 700;
    color: #0b1324;
    margin: 0 0 14px;
}
.top-casinos-subtitle {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
}
.top-casinos-separator {
    width: 60px;
    height: 4px;
    background: #ffba33;
    margin: 26px auto 0;
}
.top-casinos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}
.top-casino-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.top-casino-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.top-casino-logo-wrapper {
    position: relative;
    background: #0f0f0f;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 20px;
    text-align: center;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-casino-logo-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}
.top-casino-rating {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #ffffff;
}
.top-casino-rating.green {
    background: #43b02a;
}
.top-casino-rating.yellow {
    background: #f59e0b;
}
.top-casino-rating.red {
    background: #ef4444;
}
.top-casino-rating svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}
.top-casino-content {
    padding: 24px 20px;
    text-align: center;
}
.top-casino-bonus {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 8px;
}
.top-casino-name {
    font-size: 20px;
    font-weight: 700;
    color: #0b1324;
    margin: 0 0 12px;
}
.top-casino-name a {
    color: #0b1324;
    text-decoration: none;
    transition: color 0.2s ease;
}
.top-casino-name a:hover {
    color: #43b02a;
}
.top-casino-description {
    font-size: 14px;
    color: #636363;
    line-height: 1.5;
    margin: 0 0 20px;
    min-height: 42px;
}
.top-casino-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.top-casino-play-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #43b02a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: background-color 0.18s ease;
    margin: 0;
}
.top-casino-play-btn:hover {
    background: #3aa326;
    color: #ffffff;
}
.top-casino-play-btn i {
    margin-right: 6px;
}
.top-casino-tooltip {
    position: relative;
    display: inline-block;
    font-size: 11px;
    color: #9c9c9c;
    cursor: help;
    text-decoration: underline;
    text-decoration-style: dotted;
}
.top-casino-tooltip-text {
    visibility: hidden;
    opacity: 0;
    width: 280px;
    background: #0b1324;
    color: #ffffff;
    text-align: left;
    padding: 12px;
    border-radius: 6px;
    position: absolute;
    z-index: 1000;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.5;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.top-casino-tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #0b1324;
}
.top-casino-tooltip:hover .top-casino-tooltip-text {
    visibility: visible;
    opacity: 1;
}
.top-casinos-empty {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    padding: 60px 0;
}
@media (max-width: 1200px) {
    .top-casinos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 991px) {
    .top-casinos-content {
        padding: 60px 7% 60px;
    }
    .top-casinos-title {
        font-size: 30px;
    }
    .top-casinos-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
.hero-search-result-item:last-child {
    border-bottom: none;
}
.hero-search-result-item:hover {
    background: #f8f9fa;
}
.hero-search-result-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    margin-right: 12px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}
.hero-search-result-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-search-result-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #43b02a;
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
}
.hero-search-result-content {
    flex: 1;
    min-width: 0;
}
.hero-search-result-title {
    font-size: 14px;
    font-weight: 600;
    color: #0b1324;
    margin-bottom: 4px;
    line-height: 1.4;
}
.hero-search-result-category {
    font-size: 12px;
    color: #9c9c9c;
}
.hero-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 24px;
}
.hero-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: #43b02a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: background-color 0.18s ease;
}
.hero-cta-button:hover {
    background: #3aa326;
    color: #ffffff;
}
.hero-email {
    font-size: 14px;
    color: #6b7280;
}
.hero-right {
    position: absolute;
    inset: 0;
    background: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
}
.hero-right::before {
    content: none;
}
.hero-decorative-coins {
    display: none;
}
.hero-decorative-coins::before,
.hero-decorative-coins::after {
    content: none;
}
.hero-decorative-coins::before {
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}
.hero-decorative-coins::after {
    bottom: 15%;
    right: 15%;
    animation: float 8s ease-in-out infinite reverse;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}
@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        min-height: auto;
        padding: 50px 5% 60px;
    }
    .hero-left {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .hero-content-wrapper {
        width: 100%;
        max-width: 90vw;
        padding: 0;
        margin: 0 auto;
        box-sizing: border-box;
        transform: none;
    }
    .hero-heading {
        font-size: 36px;
    }
    .hero-subheading {
        font-size: 24px;
    }
    .hero-right {
        flex: 1 1 100%;
        width: 100%;
        min-height: 260px;
    }
    .hero-search-wrapper {
        width: 100%;
        max-width: 100%;
    }
    .hero-search-input-group {
        width: 100%;
        max-width: 100%;
    }
    .hero-cta-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .hero-left {
        display: flex;
        justify-content: center;
    }
    .hero-content-wrapper {
        width: 100%;
        max-width: 90vw;
        margin: 0 auto;
        transform: none;
    }
    .hero-heading {
        font-size: 32px;
    }
    .hero-subheading {
        font-size: 22px;
    }
    .hero-search-wrapper {
        width: 100%;
        max-width: 100%;
    }
    .hero-search-input-group {
        width: 100%;
        max-width: 100%;
    }
    .hero-search-input {
        padding: 12px 14px;
        padding-right: 58px;
        font-size: 13px;
    }
    .hero-search-button {
        width: 44px;
        height: 100%;
    }
}

/* Games Widget */
.affiliate-betportal-4-games-widget {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Arial, sans-serif;
}
.games-container {
    width: 100%;
    padding: 80px 12% 80px;
    box-sizing: border-box;
}
.games-header {
    text-align: center;
    margin-bottom: 60px;
}
.games-pretitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 10px;
}
.games-title {
    font-size: 36px;
    font-weight: 700;
    color: #0b1324;
    margin: 0 0 14px;
}
.games-subtitle {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
}
.games-separator {
    width: 60px;
    height: 4px;
    background: #ffba33;
    margin: 26px auto 0;
}
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}
.game-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 280px;
}
.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.game-thumbnail {
    flex: 0 0 150px;
    width: 150px;
    min-height: 280px;
    overflow: hidden;
    background: #f0f0f0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.game-thumbnail-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
.game-content {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
}
.game-name {
    font-size: 20px;
    font-weight: 700;
    color: #0b1324;
    margin: 0 0 12px;
    text-align: left;
}
.game-name a {
    color: #0b1324;
    text-decoration: none;
    transition: color 0.2s ease;
}
.game-name a:hover {
    color: #43b02a;
}
.game-description {
    font-size: 14px;
    color: #636363;
    line-height: 1.5;
    margin: 0 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.5em * 3);
}
.game-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.game-play-btn {
    display: inline-block;
    width: auto;
    min-width: 120px;
    padding: 12px 24px;
    background: #43b02a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    text-align: center;
    transition: background-color 0.18s ease;
    box-sizing: border-box;
}
.game-play-btn:hover {
    background: #3aa326;
    color: #ffffff;
}
.game-demo-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #ffffff;
    color: #0b1324;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    text-align: center;
    transition: border-color 0.18s ease, color 0.18s ease;
}
.game-demo-btn:hover {
    border-color: #43b02a;
    color: #43b02a;
}
.games-empty {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    padding: 60px 0;
}
@media (max-width: 1300px) {
    .game-play-btn {
        width: auto;
        min-width: 120px;
    }
}
@media (max-width: 991px) {
    .games-container {
        padding: 60px 7% 60px;
    }
    .games-title {
        font-size: 30px;
    }
    .games-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .game-card {
        flex-direction: column;
    }
    .game-thumbnail {
        flex: 0 0 auto;
        width: 100%;
        height: 200px;
    }
    .game-play-btn {
        width: 100%;
    }
    .game-demo-btn {
        width: 100%;
        text-align: center;
    }
}

/* Info1 Widget */
.affiliate-betportal-4-info1-widget {
    width: 100%;
    position: relative;
}

.info1-container {
    display: flex;
    width: 100%;
    min-height: 600px;
    position: relative;
    padding: 0;
    box-sizing: border-box;
}

.info1-left {
    flex: 0 0 50%;
    max-width: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 80px 0 80px 12%;
    box-sizing: border-box;
}

.info1-content {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.info1-pretitle {
    color: #616161;
    font-weight: 600;
    font-size: 15px;
    margin: 0 0 20px 0;
    font-family: 'Poppins', Arial, sans-serif;
}

.info1-title {
    font-size: 35px;
    font-weight: bold;
    margin: 0 0 45px 0;
    color: #0b1324;
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.3;
}

.info1-description {
    margin: 0 0 50px 0;
}

.info1-description p {
    margin: 0;
    color: #0b1324;
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Poppins', Arial, sans-serif;
}

.info1-button-wrapper {
    text-align: left;
}

.info1-button {
    display: inline-block;
    padding: 14px 32px;
    background: #389d29;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Poppins', Arial, sans-serif;
    transition: background-color 0.18s ease, transform 0.12s ease;
}

.info1-button:hover {
    background: #43b02a;
    transform: translateY(-1px);
    color: #ffffff;
}

.info1-right {
    flex: 0 0 50%;
    max-width: 50%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

@media (max-width: 991px) {
    .info1-container {
        flex-direction: column;
        min-height: auto;
        padding: 0;
    }
    .info1-left {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 60px 0 60px 7%;
    }
    .info1-right {
        flex: 1 1 100%;
        max-width: 100%;
        min-height: 400px;
    }
    .info1-title {
        font-size: 28px;
    }
}

/* Info2 Widget */
.affiliate-betportal-4-info2-widget {
    width: 100%;
    position: relative;
}

.info2-container {
    display: flex;
    width: 100%;
    min-height: 600px;
    position: relative;
    padding: 0;
    box-sizing: border-box;
}

.info2-left {
    flex: 0 0 50%;
    max-width: 50%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.info2-right {
    flex: 0 0 50%;
    max-width: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    box-sizing: border-box;
}

.info2-content {
    width: 100%;
    max-width: 76%;
    padding: 0;
    box-sizing: border-box;
}

.info2-accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info2-accordion-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 0;
    margin: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.info2-accordion-header {
    margin: 0;
}

.info2-accordion-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Poppins', Arial, sans-serif;
}

.info2-accordion-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    color: #0b1324;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Poppins', Arial, sans-serif;
    transition: color 0.18s ease;
    border-radius: 8px;
}

.info2-accordion-button:hover {
    color: #43b02a;
}

.info2-accordion-title-text {
    flex: 1;
    padding-right: 20px;
}

.info2-accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
}

.info2-accordion-icon-plus,
.info2-accordion-icon-minus {
    position: absolute;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    transition: opacity 0.18s ease, transform 0.18s ease;
    color: #0b1324;
}

.info2-accordion-icon-minus {
    opacity: 0;
    transform: rotate(90deg);
}

.info2-accordion-item-active .info2-accordion-icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.info2-accordion-item-active .info2-accordion-icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

.info2-accordion-body {
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.info2-accordion-content {
    padding: 0 24px 20px 24px;
}

.info2-accordion-content p {
    margin: 0;
    color: #0b1324;
    font-size: 15px;
    line-height: 1.6;
    font-family: 'Poppins', Arial, sans-serif;
}

@media (max-width: 991px) {
    .info2-container {
        flex-direction: column;
        min-height: auto;
    }
    .info2-left {
        flex: 1 1 100%;
        max-width: 100%;
        min-height: 400px;
        order: 2;
    }
    .info2-right {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 60px 0;
        order: 1;
    }
    .info2-content {
        max-width: 86%;
    }
}

/* Hero Bonus Widget */
.affiliate-betportal-4-hero-bonus-widget {
    width: 100%;
    position: relative;
}

.hero-bonus-container {
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 800px;
}

.hero-bonus-content {
    width: 100%;
    padding: 80px 12% 80px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.hero-bonus-header {
    text-align: center;
    margin-bottom: 55px;
}

.hero-bonus-pretitle {
    color: #616161;
    font-weight: 600;
    font-size: 15px;
    margin: 0 0 20px 0;
    font-family: 'Poppins', Arial, sans-serif;
}

.hero-bonus-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #0b1324;
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.2;
}

.hero-bonus-subtitle {
    font-size: 16px;
    color: #0b1324;
    line-height: 1.6;
    margin: 0 0 20px 0;
    font-family: 'Poppins', Arial, sans-serif;
}

.hero-bonus-separator {
    width: 60px;
    height: 3px;
    background: #ffba33;
    margin: 0 auto;
}

.hero-bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 55px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-bonus-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    max-width: 280px;
    margin: 0 auto;
}

.hero-bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.hero-bonus-card-image {
    margin-bottom: 20px;
}

.hero-bonus-stars {
    width: auto;
    height: 40px;
    object-fit: contain;
}

.hero-bonus-code {
    display: inline-block;
    padding: 8px 16px;
    border: 2px dashed #43b02a;
    border-radius: 20px;
    color: #43b02a;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
    font-family: 'Poppins', Arial, sans-serif;
}

.hero-bonus-subcategory {
    color: #616161;
    font-size: 13px;
    margin-bottom: 16px;
    font-family: 'Poppins', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-bonus-description {
    margin-bottom: 20px;
    flex: 1;
}

.hero-bonus-description p {
    margin: 0;
    color: #0b1324;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Poppins', Arial, sans-serif;
}

.hero-bonus-button-wrapper {
    width: 100%;
    margin-top: auto;
}

.hero-bonus-button {
    display: inline-block;
    padding: 12px 24px;
    background: #43b02a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Poppins', Arial, sans-serif;
    transition: background-color 0.18s ease, transform 0.12s ease;
    width: 65%;
    text-align: center;
    box-sizing: border-box;
    white-space: nowrap;
}

.hero-bonus-button:hover {
    background: #3aa326;
    transform: translateY(-1px);
    color: #ffffff;
}

@media (max-width: 991px) {
    .hero-bonus-content {
        padding: 60px 7% 60px;
    }
    .hero-bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .hero-bonus-title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .hero-bonus-grid {
        grid-template-columns: 1fr;
    }
}

.hero-bonus-empty {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
    font-size: 16px;
    font-family: 'Poppins', Arial, sans-serif;
}

.hero-bonus-empty p {
    margin: 0;
}

/* Hero News Widget */
.affiliate-betportal-4-hero-news-widget {
    width: 100%;
}

.hero-news-container {
    width: 100%;
    padding: 80px 12% 80px;
    box-sizing: border-box;
}

.hero-news-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 55px;
}

.hero-news-pretitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6b7280;
    margin-bottom: 12px;
    font-family: 'Poppins', Arial, sans-serif;
}

.hero-news-title {
    font-size: 40px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #0b1324;
    font-weight: 700;
    font-family: 'Poppins', Arial, sans-serif;
}

.hero-news-subtitle {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
}

.hero-news-separator {
    width: 60px;
    height: 3px;
    background: #ffb400;
    margin: 24px auto 0;
    border-radius: 999px;
}

.hero-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1350px;
    margin: 0 auto 40px;
}

.hero-news-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(15, 23, 42, 0.06);
    padding: 32px 32px 28px;
    box-sizing: border-box;
    display: flex;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-news-card-inner {
    width: 100%;
}

.hero-news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.12);
}

.hero-news-date {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
    margin-bottom: 18px;
    font-family: 'Poppins', Arial, sans-serif;
}

.hero-news-post-title {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    font-family: 'Poppins', Arial, sans-serif;
    color: #111827;
}

.hero-news-post-title a {
    color: #43b02a;
    text-decoration: none;
}

.hero-news-post-title a:hover {
    color: #2f7f22;
}

.hero-news-excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0 0 20px;
}

.hero-news-excerpt p {
    margin: 0;
}

.hero-news-meta {
    font-size: 13px;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Poppins', Arial, sans-serif;
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
    margin-top: 16px;
}

.hero-news-author-label {
    font-weight: 500;
}

.hero-news-author-name {
    font-weight: 600;
}

.hero-news-more-wrapper {
    display: flex;
    justify-content: flex-end;
    max-width: 1350px;
    margin: 0 auto;
}

.hero-news-more-button {
    display: inline-block;
    padding: 12px 32px;
    background: #43b02a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: 'Poppins', Arial, sans-serif;
    transition: background-color 0.18s ease, transform 0.12s ease, box-shadow 0.12s ease;
}

.hero-news-more-button:hover {
    background: #389127;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.35);
}

.hero-news-empty {
    text-align: center;
    font-size: 15px;
    color: #6b7280;
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0 0 24px;
}

/* New Casinos Widget */
.affiliate-betportal-4-new-casinos-widget {
    width: 100%;
}

.new-casinos-container {
    width: 100%;
    padding: 80px 12% 80px;
    box-sizing: border-box;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.new-casinos-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 55px;
}

.new-casinos-pretitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6b7280;
    margin-bottom: 12px;
    font-family: 'Poppins', Arial, sans-serif;
}

.new-casinos-title {
    font-size: 40px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #0b1324;
    font-weight: 700;
    font-family: 'Poppins', Arial, sans-serif;
}

.new-casinos-subtitle {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
}

.new-casinos-separator {
    width: 60px;
    height: 3px;
    background: #ffb400;
    margin: 24px auto 0;
    border-radius: 999px;
}

.new-casinos-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1350px;
    margin: 0 auto;
}

.new-casino-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 0;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.12);
    padding: 26px 32px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.new-casino-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.18);
}

.new-casino-logo {
    flex: 0 0 140px;
    max-width: 140px;
    margin-right: 26px;
}

.new-casino-logo-link {
    display: block;
}

.new-casino-logo-inner {
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 18px;
    background-color: #111827;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.new-casino-content {
    flex: 1 1 auto;
    padding-right: 24px;
}

.new-casino-name {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    font-family: 'Poppins', Arial, sans-serif;
    color: #0b1324;
}

.new-casino-name a {
    color: inherit;
    text-decoration: none;
}

.new-casino-name a:hover {
    color: #43b02a;
}

.new-casino-bonus {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    font-family: 'Poppins', Arial, sans-serif;
}

.new-casino-actions {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.new-casino-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: #43b02a;
    color: #ffffff;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Poppins', Arial, sans-serif;
    box-shadow: 0 8px 22px rgba(34, 197, 94, 0.35);
    transition: background-color 0.16s ease, box-shadow 0.16s ease, transform 0.12s ease;
}

.new-casino-play-btn:hover {
    background: #3aa326;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.45);
}

.new-casino-play-icon i {
    font-size: 16px;
}

.new-casino-tooltip {
    font-family: 'Poppins', Arial, sans-serif;
}

.new-casinos-empty {
    text-align: center;
    font-size: 15px;
    color: #6b7280;
    font-family: 'Poppins', Arial, sans-serif;
    margin-top: 20px;
}

@media (max-width: 1199px) {
    .new-casino-card {
        padding: 22px 24px;
    }
    .new-casino-logo {
        flex: 0 0 120px;
        max-width: 120px;
        margin-right: 20px;
    }
    .new-casino-logo-inner {
        width: 88px;
        height: 88px;
    }
}

@media (max-width: 991px) {
    .new-casinos-container {
        padding: 60px 7% 60px;
    }
    .new-casino-card {
        flex: 1 1 100%;
    }
    .new-casino-actions {
        margin-top: 16px;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .new-casinos-container {
        padding: 50px 4% 50px;
    }
    .new-casino-card {
        flex-direction: row;
        align-items: center;
        padding: 18px 20px;
        width: 100%;
        box-sizing: border-box;
        position: relative;
        z-index: 1;
    }
    .new-casino-card:hover {
        transform: none;
        box-shadow: 0 10px 40px rgba(15, 23, 42, 0.12);
    }
    .new-casino-play-btn {
        padding: 8px 14px;
        font-size: 11px;
        white-space: nowrap;
    }
    .new-casino-play-icon i {
        font-size: 13px;
    }
    .new-casino-logo {
        flex: 0 0 80px;
        max-width: 80px;
        margin-right: 16px;
        margin-bottom: 0;
    }
    .new-casino-logo-inner {
        width: 70px;
        height: 70px;
    }
    .new-casino-content {
        flex: 1 1 auto;
        padding-right: 12px;
        margin-bottom: 0;
        min-width: 0;
    }
    .new-casino-actions {
        flex: 0 0 auto;
        align-items: flex-end;
        margin-top: 0;
        min-width: 0;
    }
    .new-casino-play-btn {
        padding: 8px 14px;
        font-size: 11px;
        white-space: nowrap;
    }
    .new-casino-play-icon i {
        font-size: 13px;
    }
    .new-casino-tooltip {
        position: relative;
    }
    .new-casino-tooltip .top-casino-tooltip-text {
        width: 260px;
        max-width: calc(100vw - 40px);
        left: auto !important;
        right: 20px !important;
        transform: none !important;
    }
    .new-casino-tooltip .top-casino-tooltip-text::after {
        left: auto !important;
        right: 20px !important;
        transform: none !important;
    }
}

/* Get In Touch Widget */
.affiliate-betportal-4-get-in-touch-widget {
    width: 100%;
}

.get-in-touch-container {
    width: 100%;
    padding: 80px 12% 80px;
    box-sizing: border-box;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.get-in-touch-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.get-in-touch-pretitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #e5f7e8;
    margin-bottom: 10px;
    font-family: 'Poppins', Arial, sans-serif;
}

.get-in-touch-title {
    font-size: 40px;
    line-height: 1.2;
    margin: 0 0 8px;
    color: #ffffff;
    font-weight: 700;
    font-family: 'Poppins', Arial, sans-serif;
}

.get-in-touch-subtitle {
    font-size: 15px;
    line-height: 1.7;
    color: #e5f7e8;
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
}

.get-in-touch-separator {
    width: 60px;
    height: 3px;
    background: #ffb400;
    margin: 24px auto 0;
    border-radius: 999px;
}

.get-in-touch-panel {
    max-width: 1350px;
    margin: 60px auto 0;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 12px 45px rgba(15, 23, 42, 0.18);
    padding: 40px 48px;
    box-sizing: border-box;
}

.get-in-touch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.get-in-touch-box {
    text-align: center;
    padding: 10px 12px;
}

.get-in-touch-icon-wrapper {
    margin-bottom: 16px;
}

.get-in-touch-icon i {
    font-size: 50px;
    color: #fab702;
}

.get-in-touch-box-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222222;
    font-family: 'Poppins', Arial, sans-serif;
}

.get-in-touch-box-text p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    font-family: 'Poppins', Arial, sans-serif;
}

.get-in-touch-box-text p + p {
    margin-top: 4px;
}

.get-in-touch-box-button {
    margin-top: 16px;
}

.get-in-touch-link {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #389d29;
    text-decoration: none;
    font-family: 'Poppins', Arial, sans-serif;
}

.get-in-touch-link:hover {
    color: #2f7f22;
}

.get-in-touch-logos {
    max-width: 1350px;
    margin: 40px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.get-in-touch-logo-item {
    flex: 0 0 auto;
}

/* About Us Widget */
.affiliate-betportal-4-about-us-widget {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-us-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.about-us-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.about-us-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.about-us-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .about-us-title {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .about-us-title {
        font-size: 28px;
    }
}

.get-in-touch-logo-image {
    max-height: 60px;
    width: auto;
    display: block;
}

@media (max-width: 991px) {
    .get-in-touch-container {
        padding: 60px 7% 60px;
    }
    .get-in-touch-panel {
        padding: 32px 24px;
    }
    .get-in-touch-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 575px) {
    .get-in-touch-title {
        font-size: 32px;
    }
    .get-in-touch-panel {
        margin-top: 40px;
    }
}

@media (max-width: 991px) {
    .hero-news-container {
        padding: 60px 7% 60px;
    }
    .hero-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .hero-news-title {
        font-size: 32px;
    }
    .hero-news-card {
        padding: 24px 22px 22px;
    }
    .hero-news-more-wrapper {
        padding: 0 7%;
        box-sizing: border-box;
    }
}

@media (max-width: 575px) {
    .hero-news-grid {
        grid-template-columns: 1fr;
    }
    .hero-news-header {
        margin-bottom: 40px;
    }
    .hero-news-more-wrapper {
        justify-content: center;
    }
}

/* What We Offer Widget */
.affiliate-betportal-4-what-we-offer-widget {
    width: 100%;
    position: relative;
    background: #f1f5f9;
}

.what-we-offer-container {
    display: flex;
    width: 100%;
    min-height: 540px;
    position: relative;
    padding: 0;
    box-sizing: border-box;
}

.what-we-offer-image {
    flex: 0 0 50%;
    max-width: 50%;
    min-height: 540px;
    position: relative;
    padding: 10%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.what-we-offer-image-inner {
    width: 100%;
    height: 100%;
    min-height: 432px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.what-we-offer-content {
    flex: 0 0 50%;
    max-width: 50%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 12% 80px 12%;
    box-sizing: border-box;
}

.what-we-offer-pretitle {
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    margin: 0 0 10px;
    font-family: 'Poppins', Arial, sans-serif;
}

.what-we-offer-title {
    font-size: 36px;
    font-weight: 700;
    color: #0b1324;
    margin: 0 0 20px;
    line-height: 1.2;
    font-family: 'Poppins', Arial, sans-serif;
}

.what-we-offer-description {
    font-size: 15px;
    line-height: 1.7;
    color: #0b1324;
    margin: 0 0 24px;
    font-family: 'Poppins', Arial, sans-serif;
}

.what-we-offer-description p {
    margin: 0;
}

.what-we-offer-separator {
    width: 60px;
    height: 3px;
    background: #ffb400;
    margin: 0 0 24px;
    border-radius: 999px;
}

.what-we-offer-body-text {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0 0 32px;
    font-family: 'Poppins', Arial, sans-serif;
}

.what-we-offer-body-text p {
    margin: 0;
}

.what-we-offer-button-wrapper {
    margin-top: 0;
}

.what-we-offer-button {
    display: inline-block;
    padding: 14px 32px;
    background: #43b02a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: background-color 0.18s ease;
    font-family: 'Poppins', Arial, sans-serif;
}

.what-we-offer-button:hover {
    background: #3aa326;
    color: #ffffff;
}

/* Reverse layout (image on right) */
.what-we-offer-reverse {
    flex-direction: row-reverse;
}

@media (max-width: 991px) {
    .what-we-offer-container {
        flex-direction: column;
        min-height: auto;
        padding: 0;
    }
    .what-we-offer-reverse {
        flex-direction: column;
    }
    .what-we-offer-image {
        flex: 1 1 100%;
        max-width: 100%;
        min-height: 360px;
        padding: 7%;
    }
    .what-we-offer-image-inner {
        min-height: 306px;
    }
    .what-we-offer-content {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 60px 7% 60px;
    }
    .what-we-offer-title {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .what-we-offer-content {
        padding: 40px 5% 40px;
    }
    .what-we-offer-title {
        font-size: 24px;
    }
    .what-we-offer-image {
        min-height: 270px;
        padding: 5%;
    }
    .what-we-offer-image-inner {
        min-height: 243px;
    }
}

/* Testimonials Widget */
.affiliate-betportal-4-testimonials-widget {
    width: 100%;
    padding: 80px 12%;
    box-sizing: border-box;
    background: #ffffff;
}

.testimonials-container {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    position: relative;
}

.testimonials-carousel {
    position: relative;
    width: 100%;
}

.testimonials-wrapper {
    position: relative;
    width: 100%;
    min-height: 400px;
}

.testimonial-item {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-item.active {
    display: block;
    opacity: 1;
}

.testimonial-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.testimonial-image-holder {
    margin-bottom: 24px;
}

.testimonial-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

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

.testimonial-text-content {
    width: 100%;
}

.testimonial-content {
    font-size: 15px;
    line-height: 1.7;
    color: #0b1324;
    margin: 0 0 24px;
    font-family: 'Poppins', Arial, sans-serif;
}

.testimonial-quote-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 24px;
    display: block;
}

.testimonial-quote-icon path {
    fill: #0b1324;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: #0b1324;
    margin: 0 0 8px;
    font-family: 'Poppins', Arial, sans-serif;
}

.testimonial-name strong {
    font-weight: 700;
}

.testimonial-position {
    font-size: 14px;
    color: rgba(37, 37, 37, 0.8);
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
}

.testimonials-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.testimonial-dot.active {
    background: #43b02a;
}

.testimonial-dot:hover {
    background: #43b02a;
}

@media (max-width: 991px) {
    .affiliate-betportal-4-testimonials-widget {
        padding: 60px 7%;
    }
}

@media (max-width: 575px) {
    .affiliate-betportal-4-testimonials-widget {
        padding: 40px 5%;
    }
    .testimonial-image {
        width: 120px;
        height: 120px;
    }
    .testimonial-content {
        font-size: 14px;
    }
    .testimonial-name {
        font-size: 16px;
    }
    .testimonial-position {
        font-size: 13px;
    }
}

