@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Oxanium:wght@200..800&display=swap');

@font-face {
    font-family: 'Kanit Medium';
    src: url('/assets/fonts/Kanit-Medium.woff') format('woff');
    font-weight: 100;
    /* Thin */
    font-style: normal;
}

@font-face {
    font-family: 'Kanit Regular';
    src: url('/assets/fonts/Kanit-Regular.woff') format('woff');
    font-weight: 100;
    /* Thin */
    font-style: normal;
}

@font-face {
    font-family: 'Kanit Thin';
    src: url('/assets/fonts/Kanit-Thin.woff') format('woff');
    font-weight: 100;
    /* Thin */
    font-style: normal;
}

:root {
    --primary: #019ea8;
    --secondary: #42e3f5;
    --accent: #f542b9;
    --dark: #22000e;
    --darker: #000;
    --light: #eee;
    --success: #4caf50;
    --warning: #ff9800;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: 'Oxanium', sans-serif;
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
    color: var(--light);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(108, 66, 245, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(66, 227, 245, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 30% 60%, rgba(245, 66, 185, 0.1) 0%, transparent 20%);
    z-index: -1;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: rgb(0 42 43 / 80%);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgb(222 66 245 / 13%);
}

.front-logo img {
    height: 90px;
}

.front-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 28.8px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(108, 66, 245, 0.5);
}

.logo-icon {
    color: var(--secondary);
    font-size: 32px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-linked {
    text-decoration: none;
    color: var(--light);
    font-weight: 600;
    font-size: 17.6px;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.nav-linked:hover {
    color: var(--secondary);
    text-decoration: none;
}

.nav-linked::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-linked:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-wallet {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: white;
    padding: 5.8px 16.8px !important;
    border-radius: 50px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border: none;
    outline: none;
}

.btn {
    padding: 12.8px 28.8px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.btn-login {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
}

.btn-login:hover,
.btn-login:active,
.btn-login:focus {
    background: #002c2b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgb(0 240 200 / 23%);
    outline: none;
}

.btn-signup {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: white;
}

.btn-signup:hover,
.btn-signup:active .btn-signup:focus {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgb(0 240 200 / 23%) !important;
    color: white !important;
    outline: none !important;
    background-image: linear-gradient(90deg, var(--primary), var(--accent)) !important;
}

.btn.focus,
.btn:focus,
.btn:hover {
    color: white !important;
    outline: none !important;
}

.cryptocurrencies {
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 3%;
}

.t-and-c {
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 3%;
}

.term-style {
    background: #1c2732;
    border: 1px solid #1198a9;
    text-align: center;
    padding: 22px;
    border-radius: 15px;
}

.term-style h3 {
    margin-top: 0;
    font-size: 24px;
    background: linear-gradient(90deg, #ffd700, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    font-weight: 700;
}

.term-style p {
    margin-bottom: 0;
    line-height: 28px;
    padding: 0 100px;
    font-size: 16px;
}

.cashApp {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 32px;
    margin: 32px 0;
}

.bitcoin {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transform: translateY(0);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bitcoin img {
    text-align: center;
}

.bitcoin-style {
    background: #faa31b1a;
    padding: 40px;
    border: 1px solid #faa31b78;
}

.cashapp-style {
    background: #00d6321a;
    padding: 40px;
    border: 1px solid #00d53175;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 3% 0 3%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 24px;
    margin-top: 0;
    background: linear-gradient(90deg, #00c9c2, #36fff8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgb(41 233 255 / 74%);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 16px;
    color: rgba(224, 224, 255, 0.8);
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin: 32px 0;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(224, 224, 255, 0.7);
    font-size: 16px;
}

/* Affiliate Program CSS*/
.affiliate-register .img-logo {
    margin: 0 auto;
    max-width: 35%;
    padding-top: 30px;
}

.generous {
    text-align: center;
    background: linear-gradient(90deg, #002a2bcc 0%, #00424d 100%);
    position: relative;
    overflow: hidden;
    padding: 25px;
    margin-top: 30px;
}

.generous::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(30deg);
}

.generous h1 {
    font-size: 44px !important;
    padding: 0 0 20px 0 !important;
    color: #ffc107;
}

.generous p {
    font-size: 17px;
    margin: 0;
}

.info-box {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 0 5px 5px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box i {
    color: #ffc107;
    font-size: 18px;
    margin-top: 2px;
}

.dashboard-card {
    background: rgb(0 34 35);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-referral {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #17a2b8;
    color: #ffc107;
}

.referral-link {
    display: flex;
    margin-top: 20px;
}

.referral-link input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 5px 0 0 5px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.referral-link button {
    padding: 12px 20px;
    background: #f90061;
    border: none;
    border-radius: 0 5px 5px 0;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
}

.badge-success-lighten {
    color: #00933B;
    background-color: rgba(10, 207, 151, .18);
}

.filter-affiliate {
    margin-bottom: 20px;
    background: #f3f3f3;
    border-radius: 4px;
    padding: 20px;
    border: 1px solid #dfdfdf;
}

.filter-affiliate .form-group {
    margin-bottom: 0;
}

.recent-player {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.recent-player h3 {
    letter-spacing: 0 !important;
    font-size: 18px !important;
    color: #333 !important;
    font-weight: 600;
    margin-bottom: 0px !important;
}

.recent-player .btn {
    font-size: 14px;
}

.section {
    background: #f7f7f7;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid #cccccc;
}

.section h5 {
    border-bottom: 2px solid #01686a;
    padding-bottom: 8px;
    margin-bottom: 8px;
    color: #333;
    font-size: 18px;
}

.section i {
    color: #222;
}

.section label {
    color: #555;
}

.me-2 {
    margin-right: 8px !important;
}

.g-3,
.gy-3 {
    --bs-gutter-y: 16px;
    --bs-gutter-x: 16px;
}

.form-select {
    display: block;
    width: 100%;
    padding: 6px 36px 6px 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.payout-card {
    background-color: #f9ffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.06);
    border: 1px solid #1b4648;
}

.payout-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
}

.payout-card h3 {
    color: #222;
    font-size: 18px;
    margin: 0;
}

.card-icon {
    width: 50px;
    height: 50px;
    background-color: #153b3c1c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e7073;
    font-size: 25px;
}

.commission-amount {
    font-size: 40px;
    font-weight: 700;
    color: #e02a50;
    text-align: center;
    margin: 20px 0 0 0;
}

.payout-card p {
    text-align: center;
    font-size: 14px;
    color: #444;
    margin-bottom: 40px;
    font-weight: 600;
}

.payout-card label {
    color: #333;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.stat-box {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eee;
}

.stat-values {
    font-size: 24px;
    font-weight: 700;
    color: #103031;
}

.stat-label {
    font-size: 15px;
    color: #95a5a6;
}

.payout-history {
    margin-top: 30px;
}

.d-flex-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-dialog-centered .modal-body {
    padding: 15px 30px;
}

.span-4 {
    grid-column: span 4;
}

.span-7 {
    grid-column: span 7;
}

.span-5 {
    grid-column: span 5;
}

.span-12 {
    grid-column: span 12;
}

.modal-dialog-centered .row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.mAff {
    font-size: 15px;
    color: #444;
    font-weight: 600;
}

.modal-dialog-centered .btn.green {
    background: #00933B;
    border-color: #155642;
    gap: 8px;
    padding: 9px 12px !important;
    border-radius: 8px !important;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.modal-dialog-centered .btn.red {
    background: #C10007;
    border-color: #610003;
    gap: 8px;
    padding: 9px 12px !important;
    border-radius: 8px !important;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.modal-dialog-centered .btn.small {
    padding: 6px 10px !important;
    border-radius: 4px !important;
    font-size: 13px;
    background: #4b4b4b;
    color: #fff;
}

.modal-dialog-centered .btn.red i,
.modal-dialog-centered .btn.green i {
    margin-right: 8px;
}

.btn-copy {
    font-size: 13px;
    background: #e2e2e2;
    margin-left: 7px;
}

.bg-phone {
    background: #f3ffff;
    border: 1px solid #008688;
    color: #005e60;
    padding: 3px 8px;
    border-radius: 3px;
    max-width: fit-content;
    margin: 3px 0px 6px 0px;
    font-size: 13px;
}

#affCountry,
#affPhone,
#affEmail {
    font-size: 14px;
}

.soft {
    color: #a9b7bf;
}

.data-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .06);
    padding: 6px 10px;
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, .08);
}

.data-chip .mdi {
    font-size: 17px;
}

.card-gradient {
    background: radial-gradient(1200px 400px at -5% -15%, rgba(22, 219, 147, .2), transparent 50%), linear-gradient(160deg, #0f3e44, #0b2326);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
    padding: 24px;
    border-radius: 12px;
}

.gap-3 {
    gap: 16px !important;
}

.gap-2 {
    gap: 8px !important;
}

.stat-card {
    background: linear-gradient(160deg, #0f3e44, #0b2326);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 24px;
}

.stat-icon {
    font-size: 36px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: #da3e63;
}

.affi-card {
    background: #f6feff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid #007a77;
}

.affi-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dee2e6;
}

.affi-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
}

.affi-card-title i {
    margin-right: 8px;
    color: #4361ee;
}

.affi-card .form-group {
    margin-bottom: 12px;
}

.affi-card label {
    margin-bottom: 8px;
    font-size: 14px;
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-approved {
    background-color: rgba(76, 201, 240, 0.2);
    color: #1686a0;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

input:checked+.slider {
    background-color: #4cc9f0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #6c757d;
    transition: .4s;
    border-radius: 34px;
}

input:checked+.slider:before {
    transform: translateX(30px);
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.status-rejected {
    background-color: rgba(247, 37, 133, 0.2);
    color: #c21b6d;
}

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}


















/* End Affiliate Program CSS*/
.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-image-main {
    width: 100%;
    transform: perspective(1200px) rotateY(-7deg);
    transition: transform 0.3s ease;
}

.affiliate-hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.affiliate-hero-image-main {
    width: 65%;

}

@media (max-width: 765px) {
    .affiliate-hero-image {
        justify-content: center;
        position: relative;
    }

    .affiliate-hero-image-main {
        width: 100%;
    }
}

.hero-image-main:hover {
    transform: perspective(1000px) rotateY(0);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 40px;
    text-align: center;
    margin: 40px 0 64px;
    background: linear-gradient(90deg, var(--light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.games-container {
    width: calc(100% - 100px);
    margin: 0 auto;
}

.icon-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
}

.game-carousel .game-card {
    margin: 0 7.5px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
    margin: 32px 0;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.game-card {
    background: rgb(11 14 25);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgb(66 232 245 / 22%);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgb(0 240 200 / 23%);
    border: 1px solid rgb(66 238 245 / 50%);
}

.payment-card {
    background: #fffffff2;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(108, 66, 245, 0.2);
    text-align: center;
    padding: 15px;
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgb(0 240 200 / 23%);
    border: 1px solid rgb(66 238 245 / 50%);
}

.game-image {
    width: 100%;
    object-fit: cover;
    border-bottom: 2px solid rgba(108, 66, 245, 0.3);
}

.payment-card .payment-image {
    width: 100px;
    margin: 0 auto;
}

.game-details {
    padding: 20px;
}

.game-title {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
    font-weight: 500;
}

.payment-title {
    font-size: 16px;
    color: var(--dark);
    text-align: center;
    margin-top: 15px;
}

.game-title i {
    color: var(--accent);
}

.game-provider {
    color: var(--secondary);
    font-size: 14.4px;
    margin-bottom: 16px;
}

.game-features {
    display: flex;
    justify-content: space-between;
    margin: 24px 0;
}

.feature {
    text-align: center;
}

.feature-label {
    font-size: 12.8px;
    color: rgba(224, 224, 255, 0.7);
    margin-bottom: 4.8px;
}

.feature-value {
    font-weight: 600;
    font-size: 17.6px;
}

.volatility-high {
    color: var(--accent);
}

.volatility-medium {
    color: var(--warning);
}

.volatility-low {
    color: var(--success);
}

.game-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}

.btn-play {
    flex: 1;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: white;
    border: none;
    padding: 12.8px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.slick-prev:before,
.slick-next:before {
    color: black;
}

.btn-play:hover,
.btn-play:active,
.btn-play:focus {
    transform: translateY(-3px);
    color: white;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    outline: none;
}

.btn-demo {
    background: transparent;
    color: var(--light);
    border: 1px solid var(--primary);
    margin-right: 10px;
}

.btn-demo:hover {
    background: rgba(108, 66, 245, 0.2);
}

.jackpot-section {
    background: linear-gradient(135deg, rgb(23 126 138 / 41%), rgb(245 0 0 / 8%));
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.jackpot-container {
    padding: 32px 3%;
    max-width: 1400px;
    margin: 0 auto;
}

/* .jackpot-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon points="0,0 100,0 100,100" fill="rgba(108, 66, 245, 0.05)"/></svg>');
            background-size: 100% 100%;
        } */

.jackpot-value {
    font-size: 30px;
    margin: 16px 0;
    background: linear-gradient(90deg, #ffd700, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    font-weight: 700;
}

.start-palying {
    margin-top: 30px;
}

.jackpot-timer {
    font-size: 15px;
    color: var(--light);
    margin-bottom: 32px;
    line-height: 26px;
}

.btn-jackpot {
    background: linear-gradient(90deg, #ffd700, #ff9800);
    color: #0f0c24;
    font-weight: 700;
    padding: 11px 40px;
    border-radius: 50px;
    font-size: 17.6px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    margin: 0 8px;
}

.btn-jackpot:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.7);
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    max-width: 1400px;
    margin: 64px auto;
    padding: 0 32px;
}

.feature-card {
    background: rgb(16 39 48 / 45%);
    border-radius: 15px;
    padding: 32px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    border: 1px solid rgb(66 179 245 / 20%);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgb(0 240 200 / 23%);
    border: 1px solid rgb(66 238 245 / 50%);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--secondary);
}

.feature-title {
    font-size: 22.4px;
    margin-bottom: 16px;
    color: var(--light);
}

.feature-desc {
    color: rgba(224, 224, 255, 0.8);
    line-height: 1.6;
}

/* Animations */

.floating {
    animation: floatScale 3s ease-in-out infinite;
}

@keyframes floatScale {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(0) scale(1.1);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 3s ease-in-out infinite;
}

.gaming_poup {
    background: #cd1c520f;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #cd1c52;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rainbow-text {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 22px;
    margin: 0;
    position: relative;
    color: #000;
    background: #fff;
    mix-blend-mode: multiply;
    overflow: hidden;
}

.rainbow-text::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -100%;
    background: white repeating-linear-gradient(90deg, #14ffc4 0%, #ffc400 16.66666%, #ff00e0 33.33333%, #0312eb 50.0%);
    mix-blend-mode: screen;
    pointer-events: none;
    animation: move 1s ease-in-out infinite;
}

@keyframes move {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
}

.navbar-custom {
    background: linear-gradient(180deg, rgba(32, 81, 83, 1) 0%, rgba(5, 26, 26, 1) 100%);
}

.navbar-custom .nav-user {
    background: #000;
    border-color: transparent;
}

.navbar-custom .affliate-nav {
    background: #000;
    border-color: transparent;
}

.navbar-custom .button-menu-mobile i {
    vertical-align: middle;
    color: #ddd;
}

.carousel-control {
    width: auto;
}

.carousel-control.left {
    left: -30px;
}

.carousel-control.right {
    right: -30px;
}

.carousel-control.left i,
.carousel-control.right i {
    position: relative;
    top: 10px;
    font-size: 50px;
}

.navbar-custom .topbar-right-menu .nav-link {
    color: #f3f3f3 !important;
}

.desktop-home .shark-fish {
    margin-top: 0;
}

.desktop-home .firekirin {
    padding-bottom: 0px;
}

.desktop-home .rsweeps {
    padding-bottom: 0px;
}

.logo span.logo-lg {
    background: linear-gradient(180deg, rgba(32, 81, 83, 1) 0%, rgba(5, 26, 26, 1) 100%);
    font-size: 20px;
}

.card {
    border: none;
    -webkit-box-shadow: 0 0 1px 0 rgb(255, 255, 255);
    box-shadow: 0 0 0px 0 rgb(255 255 255);
    margin-bottom: 24px;
}

.help-box {
    margin: 20px 20px 20px 20px;
}

.side-nav-item {
    padding: 8px;
    border-bottom: 1px solid #2d2d2d;
}

#main a {
    color: #222;
    background: #ededed;
    border: 1px solid #ddd;
    padding: 5px 15px;
    border-radius: 57px;
}

#main a:hover {
    color: #000;
    background: #ddd;
}

#onesignal-bell-container.onesignal-reset.onesignal-bell-container-bottom-right {
    bottom: 70px !important;
    right: 0;
}

#onesignal-bell-container.onesignal-reset {
    z-index: 9999 !important;
}

.mobile-header {
    display: none;
}

.mobile-smash {
    display: none;
}

.desktop-header .col-sm-3 {
    padding: 0;
}

.desktop-header .navbar-brand {
    padding: 0;
}

.desktop-header .navbar {
    margin: 0;
}

.login-bg {
    background: linear-gradient(180deg, #60f8fa12 4%, #60f8fa12 89%);
}

.login-bg a {
    color: #f42854 !important;
    font-family: 'Kanit Medium';
}

.register-bg {
    background: linear-gradient(180deg, #60f8fa30 4%, #60f8fa30 89%);
}

.register-bg a {
    color: #00f7ff !important;
    font-family: 'Kanit Medium';
}

.desktop-header .navbar li {
    padding: 40px 14px;
}

.desktop-header .navbar li:hover {
    background: linear-gradient(180deg, #00000070, #0000001a);
}

.desktop-header .navbar li a {
    color: #eee;
    text-transform: uppercase;
    font-family: 'Kanit Medium';
    letter-spacing: 2px;
    font-size: 15px;
    text-shadow: 0px -1px 3px #000;
    padding: 0;
}

.desktop-header .navbar li a:hover {
    color: #fff;
    background: transparent;
}

.login-body {
    background: #000;
    min-height: 100%;
}

.login-gradient h1 {
    font-size: 40px;
    color: #fff;
    font-family: 'Kanit Thin';
    padding: 25px 0;
    margin: 0;
}

.login-gradient h2 {
    font-family: 'Kanit Thin';
}

.login-form {
    padding: 30px 0 50px 0;
}

.remember-me {
    display: flex;
    justify-content: space-around;
    ;
}

.login-form .img-logo {
    margin: 0 auto;
    max-width: 35%;
}

.tele_gram {
    text-align: center;
    background: rgba(0, 136, 204, 0.08);
    /* Telegram light blue */
    border: 1px solid #0088cc;
    /* Telegram primary */
    border-radius: 6px;
    /* Slightly smoother */
    padding: 6px 12px;
    /* Better spacing */
    margin-bottom: 20px;
    color: #0088cc;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.choti-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    /* text size */
    line-height: 1;
    /* FIX: no forced line height */
    height: 32px;
    /* matches Hyper navbar buttons */
}

.choti-icon i {
    font-size: 18px;
    line-height: 1;
}

.tele_gram p {
    font-size: 18px;
    font-weight: 600;
    color: #0f2e2f;
}

.tele_gram h5 {
    margin: 5px 0 5px 0;
}

.tele_gram a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: #0088cc;
    /* Telegram official blue */
    color: #ffffff;

    padding: 10px 22px;
    border-radius: 6px;
    /* Telegram uses softer corners */
    border: 1px solid #0088cc;

    font-size: 15px;
    font-weight: 500;
    line-height: 1;

    text-decoration: none;
    cursor: pointer;

    transition: all 0.25s ease;
}

.tele_gram a:hover {
    background: #007ab8;
    /* Telegram hover shade */
    border-color: #007ab8;
    color: #ffffff;
}

.tele_gram a:active {
    background: #006fa6;
    border-color: #006fa6;
}


.play-sweeps {
    font-size: 36px !important;
    color: #fff;
    font-weight: 700;
}

.featured-game h2 {
    font-size: 32px;
    color: #ddd;
    font-weight: 500;
    padding-bottom: 30px;
}

.featured-game .swiper-pagination .swiper-pagination-bullet {
    background: #fff;
}

.rank-one {
    font-size: 50px !important;
    color: #fff;
    font-family: 'Kanit Thin';
    padding-top: 40px;
}

.play-sweeps {
    font-size: 36px !important;
    color: #fff;
    font-weight: 700;
}

.rank-one {
    font-size: 50px !important;
    color: #fff;
    font-family: 'Kanit Thin';
    padding-top: 40px;
}

.dark-body h1 {
    font-size: 50px;
    color: #fff;
    font-family: 'Kanit Thin';
    padding-top: 40px;
}

.dark-body p {
    font-size: 16px;
    color: #ccc;
}

.request-ur {
    margin-top: 30px;
}

.request-ur p {
    margin-top: 10px;
}

.request-ur a {
    margin-top: 30px;
}

.no-one {
    font-family: 'Kanit Regular';
}

.shark-fish {
    margin-top: 50px;
}

.about-us {
    margin-top: 30px;
}

.about-us h4 {
    color: #ffffffd1;
    font-family: 'Kanit Light';
    font-size: 26px;
}

.about-us ul li {
    color: #fffc;
    font-family: 'Kanit Light';
    font-size: 15px;
    text-align: justify;
}

.about-us p {
    color: #fffc;
    font-family: 'Kanit Light';
    font-size: 16px;
    text-align: justify;
}

.about-us p a {
    color: #fffc;
    text-decoration: none;
}

.register-button {
    display: block;
    margin: 0 auto;
    margin-bottom: 70px;
    width: 15%;
    padding: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    font-family: 'Kanit Medium';
    border-radius: 50px;
    text-shadow: -1px -1px 4px #000000;
}

.register-with-us {
    display: block;
    margin: 0 auto;
    width: 31%;
    padding: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    font-family: 'Kanit Medium';
    border-radius: 50px;
    text-shadow: -1px -1px 4px #000000;
}

.signup-button {
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 30px;
    padding: 13px 39px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    font-family: 'Kanit Medium';
    border-radius: 50px;
    text-shadow: -1px -1px 4px #000000;
}

.btn-dark {
    background: linear-gradient(180deg, rgba(1, 158, 168, 1) 0%, rgba(13, 80, 81, 1) 60%);
    background-repeat: repeat-x;
    color: #eee;
    border: none;
}

.btn-dark:hover {
    background: linear-gradient(180deg, rgba(0, 129, 135, 1) 0%, rgba(5, 36, 37, 1) 100%);
    background-repeat: repeat-x;
    color: #fff;
}

.btn-casino {
    background: linear-gradient(180deg, rgba(1, 158, 168, 1) 0%, rgba(13, 80, 81, 1) 100%);
    background-repeat: repeat-x;
    color: #eee;

}

.btn-casino:hover {
    background: linear-gradient(180deg, rgba(0, 129, 135, 1) 0%, rgba(5, 36, 37, 1) 100%);
    background-repeat: repeat-x;
    color: #fff;
}

.firekirin {
    float: right;
    padding-bottom: 50px;
    padding-right: 12px;
}

.rsweeps {
    padding-bottom: 50px;
    padding-left: 12px;
}

.smash img {
    margin: 0 auto;
    display: block;
}

.login-form ul {
    padding-top: 18px;
    padding-bottom: 10px;
    z-index: 111;
}

.login-form li a {
    text-decoration: none;
    color: #006c73;
    font-size: 17px;
}

.login-form .active a {
    color: #00f0ff;
    font-family: 'Kanit Medium';

}

.casino-form {
    max-width: 45%;
    margin: 0 auto;
}

.casino-form .input-group {
    width: 100%;
    border: 1px solid #8d8d8d;
    border-radius: 100px;
    margin-top: 17px;
    background: #000;
}

.casino-form .input-group-addon {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: #eee;
    border: none;
    border-radius: 72px;
    height: 54px;
    width: 54px;
    font-size: 22px;
}

.iti__country {
    color: #333;
}

.contact-bg {
    background: url('../images/contact-bg.png');
    background-position: top;
    background-repeat: no-repeat;
}

.casino-form input {
    background: transparent;
    border: none;
    height: 54px;
    font-size: 16px;
    color: #eee;
    font-weight: 400;
    border-radius: 100px;
    border-top-left-radius: 100px !important;
    border-bottom-left-radius: 100px !important;
}

.signup-button i {
    font-size: 20px;
}

.casino-select {
    display: inline-flex;
}

.custom-select {
    background: transparent;
    padding: 0;
    border-radius: 100px;
    border: none;
}

.custom-select selected {
    background: transparent;
    padding: 0;
    border-radius: 100px;
    border: none;
}

.mobile-home {
    display: none;
}

.iti__selected-dial-code {
    color: #eee;
}

.casino-form .checkbox {
    color: #eee;
    margin-top: 0;
}

.toll-free-box h4 {
    font-family: 'Kanit Regular' !important;
    color: #333 !important;
}

.custom-card-body {
    padding: 20px !important;
}

.list-group-item {
    border: 1px solid #1841428a !important;
    margin-bottom: 10px;
}

.card .header-title {
    letter-spacing: 0 !important;
    font-size: 18px !important;
    color: #333 !important;
    font-weight: 600;
    margin-bottom: 15px !important;

}

.credit-body {
    margin: 22px !important;
    margin-top: -26px !important;
    box-shadow: 0 0 15px #00000033 !important;
}

.casino-form textarea {
    background: transparent;
    border: none;
    height: 54px;
    font-size: 16px;
    color: #eee;
    font-weight: 400;
    border-radius: 100px;
    border-top-left-radius: 100px !important;
    border-bottom-left-radius: 100px !important;
    padding-top: 14px;
}

input.remember {
    margin: -18px;
}

.account-user-avatar i {
    font-size: 30px !important;
    color: #eee !important;
}

.nav-user .account-user-avatar {
    position: absolute !important;
    top: calc(30px / 2) !important;
    left: 13px !important;
}

.affliate-nav .account-user-avatar {
    position: absolute !important;
    top: calc(30px / 2) !important;
    left: 13px !important;
}

.auth-fluid .auth-fluid-form-box {
    background: linear-gradient(180deg, rgba(5, 26, 26, 1) 0%, rgba(32, 81, 83, 1) 100%) !important;
    color: #ccc !important;
}

.filterCol .form-group {
    margin-bottom: 0px;
    margin-right: 10px;
}

.casino-footer {
    padding: 35px;
}

.copy-right {
    color: #c9c9c9;
    font-size: 16px;
    margin-top: 20px;
}

.copy-right a {
    color: #c9c9c9;
    text-decoration: none;
    text-shadow: 0 0 10px #000;
}

.invalid-feedback {
    color: #FF2955;
}

.text-white {
    color: whitesmoke;
}

.side-nav-forth-level li a,
.side-nav-second-level li a,
.side-nav-third-level li a {
    padding: 8px 30px 8px 30px;
}

.input-group>.custom-file {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(2.25rem + 2px);
    margin: 0;
    overflow: hidden;
    opacity: 0;
}

.custom-file-label {
    position: absolute;
    right: 0;
    left: -74px;
    z-index: 1;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #6c757d;
    background-color: #fff0;
    border-radius: 0.25rem;
}

.alert {
    margin-bottom: 0px !important;
}

.btn-outline-danger {
    color: #dc3545;
    background-color: transparent;
    background-image: none;
    border-color: #dc3545;
    font-size: 15px;
}

.get-started {
    border-width: 3px;
    font-weight: 700;
    font-size: 20px;
}

.video-information h4 {
    background: linear-gradient(180deg, rgb(31 80 82) 0%, rgba(5, 26, 26, 1) 100%);
    color: #fff;
    font-size: 20px;
    padding: 20px;
    margin: 0;
    margin-bottom: 20px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.video-information .instruction {
    padding: 20px;
}

.instruction {
    background: #d5feff;
    border: 1px solid #009a9d;
    margin: 15px;
    padding: 5px 0;
    border-radius: 4px;
}

.instruction h4 {
    font-size: 14px;
    margin: 5px 0 3px 0;
}

.instruction span {
    font-size: 18px;
    font-weight: 600;
    color: #003d3e;
    margin: 0;
}

.instruction p {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #007922;
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.how-to-get .card {
    background: #1740411f;
    border: 1px solid #004649;
    margin-top: 20px;
    border-radius: 8px;
}

.how-to-get .card .card-body ul {
    padding: 10px 40px;
}

.help-list h1 {
    font-size: 36px;
    padding-top: 15px;
}

.help-list p {
    font-size: 16px;
}

.help-button {
    background: #ff355e;
    padding: 15px;
    margin-top: 15px;
    border-radius: 4px;
    font-size: 16px;
}

.help-button:hover {
    background: #c92546;
}

.help-button a {
    color: #fff;
    text-decoration: none;
}

.btn-mobile-register {
    background: #0169ee;
    color: #fff;
    border-radius: 4px;
    padding: 8px 15px;
}

.btn-mobile-login {
    background: #eebe01;
    color: #000;
    border-radius: 4px;
    padding: 8px 15px;
}

.terms-header {
    background: url(/assets/images/tc-bg.png) 50%/cover no-repeat, linear-gradient(105.97deg, #fc3f6a -.8%, #22e0e6);
    /* background: url(/assets/images/tc-bg.png) 50%/cover no-repeat,linear-gradient(105.97deg,#ff00a8 -.8%,#5200ff); */
    padding: 50px;
}

.term-heading {
    font-size: 50px;
    color: #fff;
    font-family: 'Kanit Thin';
    padding: 30px;
    text-align: center;
    margin: 0;
}

.terms-header h2 {
    font-size: 36px;
    color: #fff;
}

.text-bg {
    background: #082121;
    padding: 25px;
    margin-top: 30px;
    border-radius: 8px;
    border: 1px solid #256467;
}

.text-bg h2 {
    font-size: 22px;
    color: #fff;
    margin: 0 0 10px 0;
}

.text-bg h3 {
    font-size: 22px;
    color: #fff;
    margin: 0 0 10px 0;
}

.text-bg h4 {
    font-size: 22px;
    color: #fff;
    margin: 0 0 10px 0;
}

.text-bg p {
    font-size: 16px;
    color: #ccc;
    margin: 0;
    line-height: 26px;
}

.text-bg ul li {
    font-size: 16px;
    color: #ccc;
    margin: 0;
    line-height: 26px;
}

.payment-method ul {
    display: inline-flex;
}

.payment-method ul li {
    margin-right: 15px;
}

.payment-method {
    margin-top: 22px;
}

.desktop-home .featured-game img {
    margin-bottom: 0 !important;
    border: none;
}

#carousel-reviews img {
    margin: 0 auto;
}

.featured-game img {
    margin-bottom: 10px !important;
    border: 1px solid #999;
}

.terms-information h3 {
    font-size: 22px;
    color: #eee;
    font-weight: 600;
}

.terms-information h4 {
    font-size: 18px;
    color: #e54f72;
    font-weight: 500;
}

.terms-information ul li {
    color: #bbb;
    line-height: 24px;
    font-size: 15px;
    padding-bottom: 10px;
}

.terms-information p {
    color: #bbb;
    line-height: 24px;
    font-size: 15px;
    padding-bottom: 10px;
}

.terms-information p span {
    color: #03d0d6;
    font-weight: 600;
    font-size: 16px;
}

.nav-pills {
    display: flex;
    justify-content: center;
}

.game-tab .nav-pills>li.active>a {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: white;
    font-size: 16px;
    border-radius: 100px;
    padding: 13px 30px;
    text-shadow: -1px -1px 6px #000;
    border: 2px solid var(--light);
}

.game-tab .nav-pills>li>a {
    background: transparent;
    font-size: 16px;
    border-radius: 100px;
    padding: 12px 30px;
    text-shadow: none;
    color: var(--light);
    border: 2px solid var(--primary);
}

.game-tab .nav-pills>li>a:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgb(0 240 200 / 23%);
}

.tab-content ul {
    margin: 0 auto;
    max-width: 95%;
    padding-top: 25px;
}

.game-tab .tab-content {
    text-align: center;
}

.game-tab img {
    margin-bottom: 10px;
    border: 1px solid #e1e1e1;
}

.d-box {
    text-align: center;
    border-radius: 4px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.d-box a {
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    display: block;
    padding: 40px 0;
    color: #222;
}

.colo_bg_purple {
    border-left: 4px solid #5420c8;
    background: #fff;
}

.colo_bg_green {
    border-left: 4px solid #009398;
    background: #fff;
}

.colo_bg_red {
    border-left: 4px solid #ff3b13;
    background: #fff;
}

.colo_bg_pink {
    border-left: 4px solid #df4bd2;
    background: #fff;
}

.colo_bg_yellow {
    border-left: 4px solid #ffb300;
    background: #fff;
}

.colo_bg_blue {
    border-left: 4px solid #006bed;
    background: #fff;
}

.bonus {
    /* background-color: #ff2955ba;
    border-radius: 5px;
    padding: 7px; */
    max-width: 50%;
    margin: 0 auto;
    margin-top: 40px;
    text-align: center;
}

.bonus h2 {
    font-size: 30px;
    text-transform: capitalize;
    color: #d8ff00;
    margin: 0;
    font-weight: 500;
    padding-bottom: 5px;
}

.form-control:focus {
    box-shadow: none;
}

.bonus h4 {
    font-size: 22px;
    text-transform: capitalize;
    color: #fff;
}

.bonus h2 span {
    background: #f75076;
    color: #fff;
    font-weight: 500;
    padding: 0px 10px;
    border-radius: 10px;
    text-shadow: -1px -1px 4px #000;
}

.register_m p.disc {
    color: #ddd;
    margin-bottom: 0;
}

.cashtag_info_div {
    background-color: #ff0000;
    border-color: #ff0000 !important;
    color: #fff;
}

.cashtag_info_div p {
    color: #fff !important;
}

.widget-icon {
    color: #fff !important;
    background-color: rgb(22 61 62) !important;
}

.border-1-px-grey {
    border: 1px solid #173f403b !important;
}

.page-title-box .page-title {
    font-weight: 700;
    font-size: 22px;
    color: #444;
}

.table .thead-dark th {
    color: #f5f5f5;
    background-color: rgb(22 61 62) !important;
    border-color: rgb(22 61 62) !important;
}

tfoot tr {
    background-color: #f1f3fa !important;
}

.badge-md {
    padding: 7px !important;
    font-size: 12px !important;
    width: 80px !important;
}

.badge-lg {
    padding: 8px !important;
    font-size: 12px !important;
    width: 92px !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.badge-dark-lighten {
    color: #313a468a !important;
}

.side-nav .side-nav-link {
    padding: 6px 8px !important;
    font-size: .8875rem !important;
}

.left-side-menu {
    width: 226px !important;
}

.logo {
    width: 226px !important;
}

.navbar-custom {
    left: 226px;
}

.affiliate-navbar {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.content-page {
    margin-left: 226px;
    overflow: hidden !important;
    padding: 70px 0px 60px !important;
    min-height: 100vh !important;
}

.card-body {
    padding: 0.8rem !important;
}

.fb-promo-container {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    margin: 20px auto;
    perspective: 1000px;
}

.fb-promo-card {
    background: rgb(28, 39, 50);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(59, 89, 152, 0.3);
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    display: grid;
}

.fb-promo-card:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 0 15px 35px rgba(59, 89, 152, 0.4);
}

.fb-promo-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -50%;
    }

    100% {
        left: 150%;
    }
}

.promo-title {
    font-size: 1.8em;
    margin: 0 0 15px;
    position: relative;
    display: inline-block;
    letter-spacing: 0;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.promo-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #FFD700;
    border-radius: 3px;
}

.promo-text {
    font-size: 1.1em;
    line-height: 1.5;
    margin-bottom: 20px;
}

.money-badge {
    background: #FFD700;
    color: #333;
    font-weight: bold;
    font-size: 1.3em;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin: 20px auto 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.fb-btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.primary-btn {
    background: #FFD700;
    color: #333;
}

.primary-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.affiliate-navbar .topbar-logo img {
    display: none;
}

.commission-structure {
    margin-top: 30px;
    color: #fff;
    font-size: 1.125rem;
}

.image-placeholder {
    width: 60px;
    height: 60px;
    background: #fc3f6a;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    border: 3px solid #fff;
}

.image-placeholder-nav {
    width: 36px;
    height: 36px;
    background: #fc3f6a;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    border: 2px solid #fff;
}

.affliate-nav {
    margin-right: 0 !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    display: flex !important;
    padding: calc(31px / 2) 20px calc(31px / 2) 57px !important;
    text-align: left !important;
    border: 1px solid #f1f3fa;
    border-width: 0 1px;
    min-height: 70px;
}

.affliate-nav .account-user-name {
    display: block;
    font-weight: 600;
}

.affliate-nav .account-position {
    display: block;
    font-size: 12px;
    margin-top: -3px;
}

.approved_title i {
    color: #00d2d8;
    font-size: 70px;
    line-height: 64px;
}

.approved_title h2 {
    font-family: 'Kanit Medium';
    font-size: 40px;
    margin-top: 20px;
    color: #ff8600;
}

.approved_title p {
    font-size: 16px;
    color: #b6c2c2;
    line-height: 30px;
    margin-top: 10px;
}

.approved_title a {
    margin-top: 20px;
}

.approved_title {
    max-width: 80%;
    margin: 100px auto;
    background: #001414;
    border-radius: 8px;
    padding: 50px;
    border-left: 4px solid #00d2d8 !important;
    border: 1px solid #00d2d833;
}

.verification {
    max-width: 80%;
    margin: 100px auto;
    background: #001414;
    border-radius: 8px;
    padding: 50px;
    border-left: 4px solid #00d2d8;
    text-align: center;
}

.verification h4 {
    font-size: 24px;
    color: #00d42b;
}

.verification p {
    font-size: 17.8px;
    color: #b6c2c2;
    margin-bottom: 0;
}

.verification i {
    color: #00d2d8;
    font-size: 50px;
    line-height: 34px;
}

.verification button {
    margin-top: 15px;
}

/***** Prashant CSS *****/
.card-body-front {
    padding: 1.5rem 1.5rem !important;
}

.card-front {
    border: 1px solid rgba(0, 0, 0, 0.175);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}

.side-nav .menu-arrow {
    right: 0px !important;
}

/* affiliate program */

.affiliate-feature-card {
    background: rgb(16 39 48 / 45%);
    border-radius: 15px;
    padding: 32px;
    text-align: center;
    flex: 1;
    border: 1px solid rgb(66 179 245 / 20%);
    transition: all 0.3s ease;
}


.commission-dropdown,
.brands-dropdown,
.frequently-dropdown {
    max-width: 1400px;
    margin: 64px auto;
}

.commission-dropdown .dropdown-item,
.brands-dropdown .dropdown-item,
.frequently-dropdown .dropdown-item {
    background: rgb(28, 39, 50);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.commission-dropdown .dropdown-header,
.brands-dropdown .dropdown-header,
.frequently-dropdown .dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    gap: 15px;
    cursor: pointer;
}

.dropdown-left {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    justify-content: space-between;
}

.commission-dropdown .icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.commission-dropdown .icon-circle img {
    width: 120px;
    height: 120px;
}

.brands-dropdown .icon {
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brands-dropdown .icon img {
    width: 200px;
}

.frequently-dropdown .icon {
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.frequently-dropdown .icon img {
    width: 100px;
}

.dropdown-text h3 {
    margin: 0;
    font-size: 20px;
    color: white;
}

.dropdown-text {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    white-space: normal;
}

.dropdown-text p {
    margin: 4px 0 0;
    color: white;
    opacity: 0.8;
    font-size: 15px;
    line-height: 1.6;
    word-break: break-word;
    text-align: left;
}

.dropdown-arrow {
    font-size: 20px;
    color: white;
    transition: transform 0.3s ease;
}

.dropdown-content {
    padding: 0 24px 24px;
    color: white;
    line-height: 1.6;
    display: none;
    animation: fadeIn 0.3s ease;
    margin: 0 100px;
}

.dropdown-item.active .dropdown-content {
    display: block;
}

.dropdown-item.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-text h4 {
    color: azure;
}

.affiliate-feature-icon img {
    max-width: 150px;
}

.notice-body {
    padding: 20px;
}

.notice-body span {
    font-size: 30px;
    color: #ffc107;
}

.notice-body h3 {
    color: #ffbc00;
}

.notice-body ul {
    list-style: none;
    text-align: center;
    margin-top: 30px;
}

.notice-body ul li {
    line-height: 26px;
}

.desktop-hidden {
    display: none;
}


/* CTA Box */
.cta-box {
    max-width: 1400px;
    background: rgba(30, 60, 70, 0.9);
    border-radius: 18px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    margin: 64px auto;
    padding: 30px;
}

/* Gradient heading text */
.text-gradient {
    background: linear-gradient(90deg, #0ff, #ff73fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Highlight word */
.text-highlight {
    color: #00ffd0;
    font-weight: 600;
}

/* Buttons */
.btn-cta {
    border: none;
    border-radius: 999px;
    color: #0c0c0c;
    background: linear-gradient(90deg, #ffd400, #ff9b00);
    box-shadow: 0 8px 18px rgba(255, 168, 0, 0.4);
    transition: all 0.25s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(255, 190, 0, 0.6);
}

.btn-outline-cta {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 999px;
    background: transparent;
    transition: all 0.25s ease;
}

.btn-outline-cta:hover {
    border-color: #00ffd0;
    color: #00ffd0;
}

/* Features */
.features-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
}

.features-list li {
    padding: 6px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.d-md-flex {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.crypto-list {
    list-style: none;
    /* remove default bullets */
    padding-left: 0;
    margin-top: 10px;
    text-align: left;
    /* align items to left side */
    color: #e6faff;
    /* soft white text */
}

.crypto-list li {
    position: relative;
    padding-left: 28px;
    /* space for icon */
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 15px;
}

/* add custom bullet */
.crypto-list li::before {
    content: "✔";
    color: #00ffd5;
    font-size: 13px;
    margin-right: 8px;
}

/* Optional hover glow */
.crypto-list li:hover::before {
    color: #ff73fa;
    transition: color 0.2s ease;
}

@media (max-width: 767px) {
    .notice-body p {
        font-size: 13px;
        line-height: 18px;
    }

    .crypto-list li {
        padding-left: 8px;
    }

    .d-md-flex {
        display: grid;
    }

    .mobile-hidden {
        display: none;
    }

    .commission-dropdown,
    .brands-dropdown,
    .frequently-dropdown {
        padding: 0 20px;
    }

    .affiliate-invite {
        padding: 0 20px;
    }

    .desktop-hidden {
        display: block;
    }

    .notice-body ul li {
        font-size: 13px;
        line-height: 18px;
    }

    .notice-body label {
        font-size: 11px;
    }

    .notice-body {
        padding: 15px;
    }

    .fb-promo-container {
        max-width: 100%;
    }

    .dropdown-text h4 {
        font-size: 15px;
        line-height: 24px;
    }

    .affiliate-feature-card {
        flex: 1 1 100%;
    }

    .affiliate-feature-icon img {
        max-width: 100px;
    }

    .verification {
        max-width: 100%;
        margin: 40px auto 150px auto;
        padding: 30px 15px;
        border-left: 3px solid #00d2d8;
    }

    .verification h4 {
        font-size: 18px;
        margin-top: 12px;
        line-height: 30px;
    }

    .verification h5 {
        font-size: 14px;
        line-height: 21px;
    }

    .verification p {
        font-size: 13px !important;
        line-height: 21px;
        text-align: center !important;
    }

    .verification button {
        margin-top: 6px;
    }

    .verification i {
        font-size: 40px;
        line-height: 30px;
    }

    .approved_title {
        max-width: 100%;
        margin: 40px auto;
        padding: 30px 15px;
        border-left: 3px solid #00d2d8;
    }

    .approved_title i {
        font-size: 40px;
        line-height: 30px;
    }

    .approved_title h2 {
        font-size: 20px;
        margin-top: 12px;
    }

    .approved_title p {
        font-size: 13px;
        line-height: 21px;
    }

    .approved_title a {
        margin-top: 6px;
    }

    .affliate-nav .account-user-name,
    .affliate-nav .account-position {
        display: none;
    }

    .button-menu-mobile {
        width: 50px;
    }

    .h3,
    h3 {
        font-size: 1.1rem;
    }

    .h5,
    h5 {
        font-size: .9rem;
    }

    .dashboard-card {
        padding: 15px;
        margin-bottom: 20px;
    }

    .text-referral {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .referral-link {
        margin-top: 15px;
    }

    .referral-link input {
        padding: 8px 10px;
        font-size: 13px;
    }

    .referral-link button {
        padding: 8px 12px;
        font-size: 13px;
    }

    .commission-structure {
        margin-top: 15px;
        font-size: 14px;
    }

    .info-box {
        padding: 10px;
        margin-bottom: 10px;
        font-size: 13px;
        align-items: normal;
    }

    .widget-icon {
        font-size: 18px;
        height: 36px;
        width: 36px;
        line-height: 36px;
    }

    .page-title-box .page-title {
        font-weight: 600;
        font-size: 1.5rem;
        color: #444;
    }

    .recent-player h3 {
        font-size: 14px !important;
    }

    .table .thead-dark th,
    .table tbody td {
        font-size: 13px;
    }

    .metismenu li {
        padding: 8px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .filter-affiliate {
        padding: 15px;
    }

    .filter-affiliate .col-sm-3 {
        margin-bottom: 10px;
    }

    .filter-affiliate label {
        font-size: 13px;
    }

    .payout-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .payout-card-header {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .payout-card h3 {
        font-size: 16px;
    }

    .card-icon {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

    .commission-amount {
        font-size: 30px;
        margin: 10px 0 0 0;
    }

    .payout-card p {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .payout-card label {
        font-size: 13px;
    }

    .stat-values {
        font-size: 20px;
    }

    .stat-label {
        font-size: 13px;
    }

    .section {
        padding: 15px;
        margin-bottom: 20px;
    }

    .section label {
        font-size: 13px;
    }





    .fb-btn {
        justify-content: center;
    }

    header {
        padding: 6px 3%;
    }

    .hero {
        padding: 25px 20px 0 20px;
        display: grid;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 15px;
        text-align: center;
    }

    .affiliate-register .img-logo {
        max-width: 100%;
    }

    .stat-value {
        font-size: 24px;
    }

    .hero-image {
        flex: 1;
        display: grid;
        justify-content: center;
        position: relative;
        max-width: 100%;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .game-details {
        padding: 15px 20px 20px 20px;
    }

    .game-title {
        font-size: 20px;
    }

    .game-features {
        margin: 15px 0;
    }

    .hero-stats {
        gap: 40px;
        margin: 20px 0;
    }

    .hero-subtitle {
        display: none;
        font-size: 14px;
        margin-bottom: 16px;
        color: rgba(224, 224, 255, 0.8);
        line-height: 1.6;
    }



    .section-title {
        font-size: 24px;
        margin: 30px 0 30px;
        line-height: 30px;
        padding: 0;
    }

    .features {
        gap: 20px;
        margin: 40px auto 10px auto;
        padding: 0 20px;
    }

    .feature-card {
        padding: 20px;
        min-width: 100%;
    }

    .feature-icon {
        font-size: 30px;
        margin-bottom: 0;
    }

    .feature-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .casino-footer {
        padding: 20px;
    }

    .copy-right a {
        font-size: 14px;
    }

    .copy-right {
        font-size: 13px;
        margin-top: 15px;
    }

    .payment-grid {
        margin: 0px;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .payment-card .payment-image {
        width: 70px;
    }

    .games-container {
        width: calc(100% - 50px);
    }

    .icon-container {
        padding: 25px 20px 0 20px;
        display: grid;
    }

    .jackpot-container {
        padding: 20px;
    }

    .cryptocurrencies {
        padding: 0 20px 0 20px;
    }

    .cashApp {
        grid-template-columns: unset;
        gap: 20px;
        margin: 0 0;
    }

    .bitcoin-style {
        padding: 20px;
    }

    .cashapp-style {
        padding: 20px;
    }

    .term-style {
        padding: 20px;
        margin-top: 20px;
    }

    .term-style h3 {
        font-size: 20px;
        line-height: 27px;
    }

    .term-style p {
        line-height: 23px;
        padding: 0;
        font-size: 13px;
    }

    .navbar-custom {
        left: 0 !important;
    }

    .content-page {
        margin-left: 0px !important;
    }

    .register_m .login-form {
        padding-top: 15px;
        padding-bottom: 10px;
    }

    .jackpot-section {
        padding: 20px;
        margin: 30px 0px;
    }

    .jackpot-section h2 {
        font-size: 20px;
        line-height: 25px;
    }

    .jackpot-value {
        font-size: 24px;
        line-height: 30px;
    }

    .jackpot-timer {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 24px;
    }

    .btn-jackpot {
        margin: 7px 0;
        width: 100%;
    }

    .start-palying {
        margin-top: 10px;
        margin-bottom: 25px;
    }

    .start-palying .btn-signup {
        width: 100%;
    }

    .register_m .login-form .img-logo {
        display: none;
    }

    .bonus {
        max-width: 100%;
        margin: 20px 0;
    }

    .bonus h2 {
        font-size: 25px;
    }

    .bonus h4 {
        font-size: 18px;
    }

    .bonus h2 span {
        padding: 0px 5px;
        border-radius: 6px;
    }

    .register_m p.disc {
        color: #ddd;
        margin-bottom: 0;
        margin-top: 20px;
    }

    .desktop-header {
        display: none;
    }

    .d-box a {
        font-size: 15px;
        padding: 25px 0;
    }

    .m_logo {
        line-height: 70px;
        width: 200px;
        position: fixed;
        top: -5px;
        right: 117px;
    }

    .nav-pills {
        margin: 20px 0 20px 0;
        display: contents;
    }

    .tab-content ul {
        max-width: 100%;
    }

    #home ul li {
        float: left;
        max-width: 50%;
    }

    #menu1 ul li {
        float: left;
        max-width: 50%;
    }

    #menu3 ul li {
        float: left;
        max-width: 50%;
    }

    #menu2 ul li {
        float: left;
        max-width: 50%;
    }

    .tele_gram a {
        padding: 8px 16px;
        font-size: 14px;
    }

    .tele_gram {
        padding: 10px;
    }

    .tele_gram p {
        font-size: 16px;
    }

    .nav-pills>li {
        margin-bottom: 10px;
    }

    .desktop-smash {
        display: none;
    }

    .play-sweeps {
        font-size: 28px !important;
    }

    .carousel-control.right {
        right: 0px;
    }

    .carousel-control.left i,
    .carousel-control.right i {
        top: 25px;
        font-size: 30px;
    }

    .carousel-control.left {
        left: 0px;
    }

    .mobile-free-play {
        font-size: 18px !important;
    }

    .rank-one {
        font-size: 30px !important;
        padding-top: 0;
    }

    .payment-card {
        margin-bottom: 0;
        padding: 12px;
    }

    .payment-title {
        font-size: 14px;
        margin-top: 12px;
        margin-bottom: 0;
    }

    .payment-card h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .payment-card p {
        text-align: center !important;
        margin-bottom: 10px;
    }

    .payment-card ul li {
        flex: 0 0 calc(24% - 15px);
        margin: 0px 7px 14px;
    }

    .mobile-smash {
        display: block;
    }

    .mobile-smash img {
        margin-left: 0;
    }

    .mobile-home {
        display: block;
        height: 100%;
    }

    .mobile-header {
        display: block;
    }

    .mobile-header .navbar-brand {
        padding: 0px;
        float: unset;
    }

    .mobile-header .navbar-brand>img {
        position: relative;
        width: 250px;
        margin: 5px 0 6px 0;
    }

    .navbar {
        margin-bottom: 0;
    }

    .navbar-closed {
        background: transparent;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1111;
        border: none;
    }

    i.mdi.mdi-window-close {
        font-size: 30px;
        color: #000;
        margin-right: 6px;
    }

    .navbar-toggle {
        background: linear-gradient(0deg, rgb(180, 7, 43) 0%, rgba(255, 41, 85, 1) 100%);
        position: relative;
        z-index: 111;
        border: none;
        padding: 12px;
        border-radius: 4px;
        margin: 12px 0 0 0;
    }

    .navbar-collapse {
        padding-right: 0px;
        padding-left: 0px;
        position: absolute;
        top: 18px;
        z-index: 111;
        background: #dc244a;
        width: 260px;
        right: 0;
        border-radius: 4px;
        padding-top: 20px;
    }

    .navbar-toggle .icon-bar {
        display: block;
        width: 22px;
        height: 3px;
        border-radius: 98px;
        z-index: 1111;
        background: #000;
    }

    .mobile-header ul {
        margin-bottom: 25px;
        max-width: 100%;
        margin-top: 25px;
    }

    .mobile-header li a {
        font-size: 13px;
        font-family: 'Kanit Light';
        color: #fff;
        letter-spacing: 1px;
        background: #380505e6;
        padding: 14px 24px;
        border-radius: 30px;
    }

    .mobile-header a i {
        margin-right: 10px;
    }

    .mobile-header .navbar li {

        margin: 9px 0px 0px 30px;
    }

    .mobile-header li a:hover,
    .mobile-header li a:focus {
        color: #fff;
        background: #000;
        border-bottom: none;
        padding-bottom: 14px;
        outline: none;
        outline-offset: 0;
    }

    .mobile-home img {
        margin: 0 auto;
    }

    .dark-body {
        min-height: 100%;
    }

    .dark-body h1 {
        font-size: 30px;
        padding-top: 20px;
        max-width: 100%;
        margin: 0 auto 15px auto;
    }

    .terms-header h2 {
        font-size: 24px;
        margin-top: 10px;
    }

    .terms-header {
        padding: 20px;
    }

    .about-us p {
        max-width: 85%;
        margin: 0 auto;
        font-size: 14px;
    }

    .register-button {
        margin-bottom: 30px;
        width: 50%;
        margin-top: 30px;
    }

    .mobile-home-bg {
        background: url(/assets/images/home-mobile-bg.png);
        background-position: bottom;
        background-repeat: no-repeat;
    }

    .shark-fish {
        margin-top: 30px;
    }

    .firekirin {
        float: none;
        padding-bottom: 10px;
        padding-right: 0px;
    }

    .rsweeps {
        padding-bottom: 10px;
        padding-left: 0px;
    }

    .bg-fire {
        background-image: url('../images/mobile-fire-bg.png');
        background-repeat: no-repeat;
        background-position: bottom;
        background-size: initial;
        height: auto;
    }

    .thank_you i {
        padding: 0px 13px;
        font-size: 54px;
        border-radius: 100px;
        color: #fff;
        background: linear-gradient(180deg, rgb(1, 158, 168) 0%, rgb(13, 80, 81) 100%);
    }

    .thank_you h1 {
        font-size: 26px;
        color: #111;
        line-height: 36px;
    }

    .thank_you p {
        color: #444;
    }

    .thank_you a {
        background-color: #dc3545;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        padding: 10px 30px;
        border-radius: 4px;
    }

    .contact-bg {
        height: 740px;
    }

    .casino-form {
        max-width: 100%;
    }

    .card-body {
        padding: 15px !important;
    }

    .card .header-title {
        margin-top: 15px !important;
    }

    .credit-body {
        margin-top: -10px !important;
        margin-bottom: 20px !important;
        margin-left: 0px !important;
        margin-right: 0 !important;
    }

    .card .credit-body {
        padding: 10px 15px !important;
    }

    .date-width {
        min-width: 110px !important;
    }

    .account-user-avatar i {
        font-size: 24px !important;
    }

    .nav-user .account-user-avatar {
        top: calc(30px / 2) !important;
        left: 18px !important;
    }

    .affliate-nav .account-user-avatar {
        top: calc(30px / 2) !important;
        left: 0px !important;
    }

    .navbar-custom .affliate-nav {
        background: transparent;
    }

    .content-page {
        background: #fff !important;
    }

    .filterCol .form-group {
        width: 100%;
    }

    .login-form img {
        max-width: 100%;
    }

    .register-with-us {
        width: 80%;
        padding: 15px;
        font-size: 14px;
    }

    .dark-body p {
        text-align: justify;
        font-size: 14px;
        padding-bottom: 10px;
    }

    .text-bg {
        padding: 20px;
    }

    .help-list h2 {
        font-size: 26px;
        padding-top: 0;
    }

    .help-list p {
        font-size: 14px;
    }

    .help-button {
        padding: 10px;
        margin-top: 10px;
        font-size: 15px;
    }

    .video-information h4 {
        font-size: 16px;
        padding: 15px;
        margin: 0;
        margin-bottom: 0px;
        margin-bottom: 10px;
    }

    .instruction h4 {
        font-size: 13px;
    }

    .instruction span {
        font-size: 16px;
    }

    .instruction p {
        font-size: 13px;
    }

    .how-to-get .card .card-body ul {
        padding: 10px 25px;
    }

    .page-title-box .page-title-right {
        display: block;
    }

    .promo-text p {
        margin-bottom: 100px;
        font-size: 17px;
        text-align: center;
        color: #00c400;
    }

    .promo-text h1 {
        line-height: 35px;
    }

    .promo-text h3 {
        line-height: 30px;
    }

    .custom-file-label {
        left: -47px;
    }

    .get-started {
        border-width: 2px;
        font-weight: 700;
        font-size: 16px;
    }

    .featured-game h2 {
        font-size: 20px;
        padding-bottom: 8px;
        padding-top: 0;
        color: #fff561;
        font-weight: bold;
    }

    .smash-promo {
        background-color: #1d001d;
        border: 1px solid #6d007b;
        border-radius: 8px;
        padding: 15px 15px 30px 15px;
        margin-top: 20px;
        position: relative;
    }

    .smash-promo .col-xs-4 {
        width: 30%;
        padding: 0;
    }

    .smash-promo .col-xs-8 {
        width: 70%;
        padding: 0 15px 0 0;
    }

    .smash-promo h3 {
        color: #ddd;
        font-size: 17px;
        line-height: 24px;
        font-weight: 600;
        margin: 0 0 5px 0;
    }

    .smash-promo p {
        font-size: 15px;
        line-height: 30px;
        color: #00c400;
        font-weight: 600;
    }

    .smash-icon a {
        background: #912a99;
        color: #fff;
        padding: 8px 30px;
        border-radius: 4px;
        text-decoration: none;
    }

    .smash-icon img {
        margin-bottom: 15px;
    }

    .login-form .img-logo {
        max-width: 100%;
    }

    .generous h1 {
        font-size: 30px !important;
        padding: 0 0 10px 0 !important;
    }

    .affiliate-navbar .topbar-logo img {
        display: block;
    }

    .page-title-box .page-title {
        font-size: 18px;
    }

    .section h5 {
        font-size: 15px;
    }

    .custom-card-body {
        padding: 15px !important;
    }

    .card {
        margin-bottom: 15px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    header {
        display: grid;
        justify-content: center;
    }

    .term-style p {
        padding: 0 30px;
    }

    .front-logo {
        margin: 0 auto;
    }

    .front-logo img {
        height: 70px;
    }

    .nav-links {
        gap: 50px;
        margin-top: 10px;
    }

    .nav-linked {
        font-size: 15px;
    }

    .auth-buttons {
        gap: 30px;
        margin: 10px auto 0 auto;
    }

    .btn {
        padding: 9px 30px;
        font-size: 15px;
    }

    .hero-title {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .section-title {
        font-size: 32px;
        margin: 30px 0 50px;
    }

    .games-container {
        width: calc(100% - 60px);
    }

    .game-details {
        padding: 15px;
    }

    .game-title {
        font-size: 20px;
    }

    .game-title i {
        font-size: 16px;
    }

    .game-features {
        margin: 10px 0;
    }

    .feature-label {
        font-size: 12PX;
    }

    .feature-value {
        font-size: 15px;
    }

    .payment-grid {
        gap: 20px;
        margin: 20px 0;
    }

    .payment-card {
        padding: 13px;
    }

    .payment-card .payment-image {
        width: 70px;
    }

    .payment-title {
        font-size: 15px;
        margin-top: 13px;
        margin-bottom: 0;
    }

    .jackpot-section h2 {
        font-size: 24px;
        margin-top: 0;
    }

    .jackpot-value {
        font-size: 26px;
        margin: 15px 0;
        line-height: 30px;
    }

    .jackpot-timer {
        font-size: 14px;
        margin-bottom: 30px;
        line-height: 24px;
    }

    .cashApp {
        display: flex;
        grid-template-columns: unset;
        gap: 20px;
    }

    .bitcoin {
        width: 100%;
    }

    .bitcoin-style {
        padding: 20px;
    }

    .cashapp-style {
        padding: 20px;
    }

    .features {
        gap: 20px;
        margin: 50px auto;
        padding: 0 3%;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-desc {
        margin-bottom: 0;
    }

    .feature-icon {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .feature-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .casino-footer {
        padding: 20px 0;
    }

    .copy-right a {
        font-size: 14px;
    }

    .copy-right {
        font-size: 13px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    header {
        display: flex;
        padding: 10px 2%;
    }

    .term-style p {
        padding: 0 50px;
    }

    .front-logo {
        margin: 0 auto;
    }

    .front-logo img {
        height: 65px;
    }

    .nav-links {
        gap: 20px;
        margin-top: 10px;
    }

    .nav-linked {
        font-size: 14px;
    }

    .auth-buttons {
        gap: 20px;
        margin: 10px auto 0 auto;
    }

    .btn {
        padding: 9px 30px;
        font-size: 15px;
    }

    .hero-title {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .section-title {
        font-size: 32px;
        margin: 30px 0 50px;
    }

    .games-container {
        width: calc(100% - 60px);
    }

    .game-details {
        padding: 15px;
    }

    .game-title {
        font-size: 20px;
    }

    .game-title i {
        font-size: 16px;
    }

    .game-features {
        margin: 10px 0;
    }

    .feature-label {
        font-size: 12PX;
    }

    .feature-value {
        font-size: 15px;
    }

    .payment-grid {
        gap: 20px;
        margin: 20px 0;
    }

    .payment-card {
        padding: 13px;
    }

    .payment-card .payment-image {
        width: 70px;
    }

    .payment-title {
        font-size: 15px;
        margin-top: 13px;
        margin-bottom: 0;
    }

    .jackpot-section h2 {
        font-size: 24px;
        margin-top: 0;
    }

    .jackpot-value {
        font-size: 26px;
        margin: 15px 0;
        line-height: 30px;
    }

    .jackpot-timer {
        font-size: 14px;
        margin-bottom: 30px;
        line-height: 24px;
    }

    .cashApp {
        display: flex;
        grid-template-columns: unset;
        gap: 20px;
    }

    .bitcoin {
        width: 100%;
    }

    .bitcoin-style {
        padding: 20px;
    }

    .cashapp-style {
        padding: 20px;
    }

    .features {
        gap: 20px;
        margin: 50px auto;
        padding: 0px 3%;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-desc {
        margin-bottom: 0;
    }

    .feature-icon {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .feature-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .casino-footer {
        padding: 20px 0;
    }

    .copy-right a {
        font-size: 14px;
    }

    .copy-right {
        font-size: 13px;
    }

}

@media (min-width: 1200px) and (max-width: 1440px) {
    header {
        display: flex;
        padding: 10px 3%;
        justify-content: space-between;
    }

    .front-logo img {
        height: 80px;
    }

    .nav-linked {
        font-size: 15px;
    }

    .nav-links {
        gap: 30px;
    }

    .hero-title {
        font-size: 50px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .section-title {
        font-size: 36px;
        margin: 35px 0 50px;
    }

    .games-container {
        width: calc(100% - 60px);
    }

    .game-details {
        padding: 15px;
    }

    .game-title {
        font-size: 22px;
    }

    .game-title i {
        font-size: 16px;
    }

    .game-features {
        margin: 10px 0;
    }

    .feature-label {
        font-size: 12PX;
    }

    .feature-value {
        font-size: 15px;
    }

    .payment-grid {
        gap: 20px;
        margin: 20px 0;
    }

    .payment-card {
        padding: 13px;
    }

    .payment-card .payment-image {
        width: 70px;
    }

    .payment-title {
        font-size: 15px;
        margin-top: 13px;
        margin-bottom: 0;
    }

    .jackpot-section h2 {
        font-size: 26px;
        margin-top: 0;
    }

    .jackpot-value {
        font-size: 30px;
        margin: 15px 0;
        line-height: 30px;
    }

    .jackpot-timer {
        font-size: 15px;
        margin-bottom: 30px;
        line-height: 24px;
    }

    .cashApp {
        display: flex;
        grid-template-columns: unset;
        gap: 20px;
    }

    .bitcoin {
        width: 100%;
    }

    .bitcoin-style {
        padding: 30px;
    }

    .cashapp-style {
        padding: 30px;
    }

    .features {
        gap: 20px;
        margin: 50px auto;
        padding: 0px 3%;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-desc {
        margin-bottom: 0;
    }

    .feature-icon {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .feature-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .casino-footer {
        padding: 20px 0;
    }

    .copy-right a {
        font-size: 14px;
    }

    .copy-right {
        font-size: 13px;
    }
}



/* Responsive */
@media (max-width: 767px) {

    .commission-dropdown .dropdown-header,
    .brands-dropdown .dropdown-header,
    .frequently-dropdown .dropdown-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .commission-dropdown .dropdown-left,
    .brands-dropdown .dropdown-left,
    .frequently-dropdown .dropdown-left {
        flex-direction: flex;
        align-items: center;
    }

    .commission-dropdown .icon-circle,
    .brands-dropdown .icon-circle,
    .frequently-dropdown .icon-circle {
        width: 90px;
        height: 90px;
    }

    .commission-dropdown .icon-circle img,
    .brands-dropdown .icon-circle img,
    .frequently-dropdown .icon-circle img {
        width: 90px;
        height: 90px;
    }

    .brands-dropdown .icon {
        width: 180px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .brands-dropdown .icon img {
        width: 100px;
    }

    .dropdown-text h3 {
        font-size: 18px;
    }

    .dropdown-text p {
        font-size: 14px;
    }
}

@media (max-width: 578px) {

    .commission-dropdown .dropdown-left,
    .brands-dropdown .dropdown-left {
        align-items: center;
    }

    .commission-dropdown .dropdown-item,
    .brands-dropdown .dropdown-item,
    .frequently-dropdown .dropdown-item {
        flex-direction: column;
        align-items: center;
    }

    .commission-dropdown .dropdown-header,
    .brands-dropdown .dropdown-header,
    .frequently-dropdown .dropdown-header {
        flex-wrap: nowrap;
        align-items: center;
    }

    .commission-dropdown .icon-circle {
        width: 100px;
        height: auto;
    }

    .commission-dropdown .icon-circle img {
        width: 100px;
        height: auto;
    }

    .commission-dropdown .dropdown-content,
    .brands-dropdown .dropdown-content,
    .frequently-dropdown .dropdown-content {
        padding: 0 0 24px;
        margin: 0 50px;
    }

    .frequently-dropdown .icon {
        display: none;
    }
}

/* Landing page video modal */
.landing-video-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(5, 4, 12, 0.88);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 9999;
}

.landing-video-modal.is-visible {
    opacity: 1;
    visibility: visible;
}

.landing-video-scrim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

.landing-video-dialog {
    position: relative;
    width: min(920px, 92vw);
    background: #0b0a14;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.landing-video-frame {
    width: 100%;
    height: min(70vh, 520px);
    background: #000;
}

.landing-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.landing-video-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #0b0a14;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    z-index: 2;
}

.landing-video-close:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

@media (max-width: 576px) {
    .landing-video-dialog {
        width: 100%;
        border-radius: 12px;
    }

    .landing-video-frame {
        height: 60vh;
    }

    .landing-video-close {
        top: 8px;
        right: 8px;
    }
}