.withdraw-banner {
    position: fixed;
    top: var(--withdraw-top-offset);
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 100%;
    max-width: 520px;
    padding: 0 12px;
    box-sizing: border-box;
    pointer-events: none;
    font-family: LatoWeb;
}

.withdraw-banner-inner {
    pointer-events: none;
    background: radial-gradient(circle at 0% 0%, #202742, #111321 55%);
    border-radius: 18px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.withdraw-banner-inner.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@keyframes rainbowLine {
    0% {
        transform: translateX(-40%);
    }

    50% {
        transform: translateX(10%);
    }

    100% {
        transform: translateX(40%);
    }
}

.withdraw-banner-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 180%;
    height: 3px;
    background: linear-gradient(90deg, #ffcc33, #ff4b91, #5c25ff, #00d4ff, #25d366);
    animation: rainbowLine 6s linear infinite;
}

.wb-bank {
    flex: 0 0 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wb-bank img {
    max-width: 100%;
    max-height: 32px;
    object-fit: contain;
    display: block;
}

.wb-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.wb-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    color: #ffe9a6;
}

.wb-body {
    font-size: 13px;
    font-weight: 500;
    color: #f5f6ff;
    text-align: center;
    line-height: 1.4;
    white-space: normal;
}

.wb-user {
    font-weight: 700;
    color: #ffffff;
}

.wb-amount {
    font-weight: 700;
    color: #3bff8f;
}

@media (max-width: 480px) {
    .withdraw-banner-inner {
        padding: 9px 12px;
        border-radius: 14px;
    }

    .wb-title {
        font-size: 10px;
    }

    .wb-body {
        font-size: 12px;
    }

    .wb-bank {
        flex-basis: 48px;
    }
}

.article-selote633 {
    border: 1px solid rgba(184, 134, 11, 0.9);
    border-radius: 18px;
    padding: 26px 30px;
    margin: 24px auto;
    background: #14161e;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03),
        0 18px 40px rgba(0, 0, 0, 0.8);
    font-family: LatoWeb;
    font-size: 14px;
    line-height: 1.9;
    color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.article-selote633 h1 {
    margin-top: 0;
    margin-bottom: 16px;
    text-align: left;
    color: #ffe38f;
    letter-spacing: 0.03em;
}

.article-selote633 h2 {
    margin-top: 26px;
    margin-bottom: 14px;
    color: #ffffff;
    text-align: left;
    position: relative;
    padding-left: 14px;
}

.article-selote633 h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gold-light), var(--gold-main));
    box-shadow: 0 0 10px rgba(255, 227, 143, 0.7);
}

.article-selote633 p {
    margin: 0 0 16px;
    text-align: left;
    font-size: 14px;
    color: #e1e4f0;
}

.article-selote633 p:last-of-type {
    margin-bottom: 0;
}

.article-selote633 a {
    color: #ffe38f;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 227, 143, 0.8);
    transition: color 0.18s ease, border-color 0.18s ease, text-shadow 0.18s ease;
}

.article-selote633 a:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 8px rgba(255, 227, 143, 0.85);
}

@media (max-width: 768px) {
    .article-selote633 {
        padding: 20px 16px;
        border-radius: 14px;
        margin: 18px 10px;
        font-size: 14px;
        line-height: 1.85;
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.floating-widget {
    position: fixed;
    left: 16px !important;
    right: auto !important;
    bottom: 70px !important;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 10px;
    font-family: LatoWeb;
}

.floating-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 290px;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating-widget.is-open .floating-buttons {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    max-height: 260px;
    margin-top: 4px;
}

.floating-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fdfdfd;
    background: var(--floating-bg);
    border-radius: var(--floating-radius);
    padding: 11px 16px;
    box-shadow: var(--floating-shadow);
    border: 1px solid var(--floating-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    min-height: 48px;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, filter 0.18s ease;
    cursor: pointer;
}

.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
    filter: brightness(1.05);
}

.btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    width: 100%;
}

.btn-label-main {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.btn-label-sub {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.85;
    margin-top: 2px;
}

.btn-primary {
    background-image: linear-gradient(120deg, #ffdf6b, #ff8c42, #ff4b91, #ffdf6b);
    background-size: 260% 260%;
    animation: gradientFlow 7s ease-in-out infinite;
    color: #151515;
    border-color: rgba(0, 0, 0, 0.25);
}

.btn-facebook {
    background-image: linear-gradient(120deg, #00c6ff, #1877f2, #4c3cff, #00c6ff);
    background-size: 260% 260%;
    animation: gradientFlow 8s ease-in-out infinite;
    color: #ffffff;
    border-color: rgba(0, 0, 0, 0.35);
}

.btn-whatsapp {
    background-image: linear-gradient(120deg, #25d366, #00e676, #00c853, #25d366);
    background-size: 260% 260%;
    animation: gradientFlow 6.5s ease-in-out infinite;
    color: #ffffff;
    border-color: rgba(0, 0, 0, 0.35);
}

.floating-toggle {
    width: 56px;
    height: 56px;
    border-radius: var(--floating-radius);
    border: none;
    outline: none;
    cursor: pointer;
    background: radial-gradient(circle at 20% 0, #ffe8a3, #f3b02c 45%, #b96b00 100%);
    box-shadow: var(--floating-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.floating-toggle:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
}

.toggle-line {
    position: absolute;
    width: 24px;
    height: 2.4px;
    background: #241400;
    border-radius: 999px;
    transition: transform 0.22s ease, opacity 0.22s ease, top 0.22s ease;
}

.toggle-line:nth-child(1) {
    top: 20px;
}

.toggle-line:nth-child(2) {
    top: 27px;
}

.toggle-line:nth-child(3) {
    top: 34px;
}

.floating-widget.is-open .toggle-line:nth-child(1) {
    top: 27px;
    transform: rotate(45deg);
}

.floating-widget.is-open .toggle-line:nth-child(2) {
    opacity: 0;
}

.floating-widget.is-open .toggle-line:nth-child(3) {
    top: 27px;
    transform: rotate(-45deg);
}

@media (min-width: 480px) {
    .floating-btn {
        min-height: 50px;
        padding: 12px 18px;
    }

    .btn-label-main {
        font-size: 14.5px;
    }

    .btn-label-sub {
        font-size: 13.5px;
    }
}

@media (min-width: 992px) {
    .floating-btn {
        min-height: 52px;
        padding: 13px 20px;
    }

    .btn-label-main {
        font-size: 15px;
    }

    .btn-label-sub {
        font-size: 14px;
    }

    .floating-widget {
        left: 24px;
        bottom: 70px;
    }
}

/* Reset & base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ACCESSIBILITY HELPER (sr-only di HTML) */
.sr-only633 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Layout dasar container/row (jika tidak pakai Bootstrap) */
.container633 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.row633 {
    width: 100%;
}

/* ==========================
   CAROUSEL PROVIDER
   ========================== */

.carousel.slots-providers {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: #ffffff;
    padding: 2.5rem 1rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* overlay gelap agar text lebih kebaca */
.carousel.slots-providers::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08) 0, transparent 55%),
        radial-gradient(circle at bottom right, rgba(255, 153, 0, 0.25) 0, transparent 60%),
        rgba(0, 0, 0, 0.7);
    pointer-events: none;
    z-index: 0;
}

.carousel.slots-providers .carousel-inner633 {
    position: relative;
    z-index: 1;
}

/* Satu slide */
.carousel.slots-providers .carousel-inner633 .item633 {
    width: 100%;
    display: none;
    /* di-control JS */
}

.carousel.slots-providers .carousel-inner633 .item633.active {
    display: block;
}

/* Content per provider */
.provider-item633 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}

/* Gambar game */
.provider-item633 picture,
.provider-item633 img {
    display: block;
    max-width: 100%;
}

.provider-item633 img {
    width: 100%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.8));
}

/* Text section */
.provider-item633 section {
    max-width: 640px;
    text-align: center;
}

.provider-item633 section .h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.provider-item633 section p {
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0 0 1.75rem;
    color: rgba(255, 255, 255, 0.88);
}

/* Button "Coba Sekarang" */
.provider-item633 section a {
    display: inline-block;
    padding: 0.9rem 2.7rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-image: linear-gradient(135deg, #ffa000, #ff6d00);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    border: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.provider-item633 section a:hover,
.provider-item633 section a:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.8);
    filter: brightness(1.05);
}

.provider-item633 section a:active {
    transform: translateY(1px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
}

/* ==========================
   NAVIGATION ARROWS
   ========================== */

.carousel.slots-providers .left,
.carousel.slots-providers .right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgba(255, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    z-index: 2;
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.carousel.slots-providers .left {
    left: 1rem;
}

.carousel.slots-providers .right {
    right: 1rem;
}

.carousel.slots-providers .left img,
.carousel.slots-providers .right img {
    width: 24px;
    height: 24px;
    display: block;
}

.carousel.slots-providers .left:hover,
.carousel.slots-providers .right:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
}

/* ==========================
   ANIMATION (mengganti animated633/fadeInLeftBig633 dsb)
   ========================== */

.animated633 {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.fadeInLeftBig633 {
    animation-name: fadeInLeftBig633;
}

.fadeInRightBig633 {
    animation-name: fadeInRightBig633;
}

@keyframes fadeInLeftBig633 {
    from {
        opacity: 0;
        transform: translate3d(-60px, 0, 0) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes fadeInRightBig633 {
    from {
        opacity: 0;
        transform: translate3d(60px, 0, 0) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

/* ==========================
   RESPONSIVE
   ========================== */

/* Tablet dan ke atas */
@media (min-width: 768px) {
    .carousel.slots-providers {
        padding: 3.5rem 2rem;
    }

    .provider-item633 {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
    }

    .provider-item633>.animated633 {
        flex: 0 0 45%;
        max-width: 45%;
    }

    .provider-item633 section {
        flex: 0 0 45%;
        max-width: 45%;
        text-align: left;
    }

    .provider-item633 img {
        max-width: 500px;
    }

    .provider-item633 section p {
        font-size: 1rem;
    }
}

/* Desktop lebar */
@media (min-width: 1024px) {
    .carousel.slots-providers {
        padding: 4.5rem 2.5rem;
    }

    .provider-item633 img {
        max-width: 560px;
    }

    .provider-item633 section .h2 {
        font-size: clamp(2.4rem, 4vw, 3.4rem);
    }
}

/* Mobile kecil: atur tombol & panah supaya tidak ganggu gambar */
@media (max-width: 575.98px) {
    .carousel.slots-providers {
        padding: 2rem 0.75rem 3.25rem;
    }

    .provider-item633 section a {
        width: 100%;
        max-width: 260px;
    }

    .carousel.slots-providers .left,
    .carousel.slots-providers .right {
        top: auto;
        bottom: 1.1rem;
        transform: none;
        width: 40px;
        height: 40px;
    }

    .carousel.slots-providers .left {
        left: 0.8rem;
    }

    .carousel.slots-providers .right {
        right: 0.8rem;
    }

    .carousel.slots-providers .left:hover,
    .carousel.slots-providers .right:hover {
        transform: scale(1.06);
    }
}