* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #272727;
}


body {
    font-family: "Prompt", sans-serif;
    background: #0f212e;
}


.main {
    display: flex;
}

.main-body {
    width: calc(100% - 230px);
    margin-left: 230px;
}

.siderbar {
    width: 230px;
    background: linear-gradient(180deg, #0d1e2b 0%, #0a1720 100%);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 215, 0, 0.08);
    z-index: 900;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 215, 0, 0.15) transparent;
}

.siderbar::-webkit-scrollbar {
    width: 4px;
}

.siderbar::-webkit-scrollbar-track {
    background: transparent;
}

.siderbar::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.15);
    border-radius: 4px;
}

/* Sidebar Logo */
.sidebar-logo {
    padding: 20px 16px 14px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-logo-text {
    font-family: "Teko", serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFD700;
    text-decoration: none;
    line-height: 1;
}

.sidebar-logo-text span {
    color: #fff;
}

/* Live Dot Badge */
.live-dot {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 230, 118, 0.12);
    border: 1px solid rgba(0, 230, 118, 0.25);
    padding: 3px 8px;
    border-radius: 20px;
}

.live-dot::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #00E676;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

.live-dot span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #00E676;
}

@keyframes livePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.5);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(0, 230, 118, 0);
    }
}

/* Sidebar CTA Buttons */
.sidebar-cta {
    padding: 14px 14px 10px;
    display: flex;
    gap: 8px;
}

.sidebar-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-family: "Teko", serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.sidebar-cta a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.sidebar-cta a:hover::before {
    transform: translateX(0);
}

.sidebar-btn-casino {
    background: linear-gradient(135deg, #fe368a 0%, #c4005e 100%);
    box-shadow: 0 4px 15px rgba(254, 54, 138, 0.25);
    color: #fff !important;
}

.sidebar-btn-casino:hover {
    box-shadow: 0 6px 20px rgba(254, 54, 138, 0.4);
    transform: translateY(-1px);
}

.sidebar-btn-sports {
    background: linear-gradient(135deg, #19a731 0%, #0d7a22 100%);
    box-shadow: 0 4px 15px rgba(25, 167, 49, 0.25);
    color: #fff !important;
}

.sidebar-btn-sports:hover {
    box-shadow: 0 6px 20px rgba(25, 167, 49, 0.4);
    transform: translateY(-1px);
}

.sidebar-cta a i {
    font-size: 14px;
}

/* Sidebar Section Label */
.sidebar-section-label {
    padding: 12px 16px 6px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 215, 0, 0.45);
    font-family: "Prompt", sans-serif;
}

/* Nav Groups */
.sidebar-nav-group {
    padding: 4px 10px;
    margin-bottom: 4px;
}

.sidebar-nav-group ul {
    list-style: none;
}

.sidebar-nav-group ul li {
    position: relative;
}

.sidebar-nav-group ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    color: #8AABB8 !important;
    transition: all 0.2s ease;
    position: relative;
}

.sidebar-nav-group ul li a .nav-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    transition: all 0.2s ease;
    color: #feffff;
}
.sidebar-nav-group ul li a .nav-icon i{
    color: #feffff;
}

.sidebar-nav-group ul li a:hover {
    background: rgba(255, 215, 0, 0.06);
    color: #FFD700 !important;
}

.sidebar-nav-group ul li a:hover .nav-icon {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
}

.sidebar-nav-group ul li a.active-link {
    background: rgba(255, 215, 0, 0.08);
    color: #FFD700 !important;
}

.sidebar-nav-group ul li a.active-link .nav-icon {
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
}

/* Active left border indicator */
.sidebar-nav-group ul li a.active-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: #FFD700;
    border-radius: 0 2px 2px 0;
}

/* Badge */
.nav-badge {
    margin-left: auto;
    background: rgba(0, 230, 118, 0.15);
    border: 1px solid rgba(0, 230, 118, 0.3);
    color: #00E676 !important;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 1px 6px;
    border-radius: 10px;
    text-transform: uppercase;
}

.nav-badge-hot {
    background: rgba(254, 54, 138, 0.15) !important;
    border-color: rgba(254, 54, 138, 0.3) !important;
    color: #fe368a !important;
}

/* Divider */
.sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 8px 16px;
}

/* Sidebar Footer */
.sidebar-footer {
    margin-top: auto;
    padding: 14px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-footer-text {
    font-size: 10px;
    color: #3a5060 !important;
    line-height: 1.5;
    text-align: center;
}

.sidebar-responsible {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}

.sidebar-responsible span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #3a5060 !important;
}

.sidebar-responsible i {
    font-size: 12px;
    color: #3a5060;
}

/* Sidebar Toggle (mobile) */
.sidebar-toggle {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1100;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fe368a, #19a731);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.sidebar-toggle i {
    color: #fff;
    font-size: 18px;
}

.sidebar-toggle:hover {
    transform: scale(1.08);
}

/* Sidebar Overlay (mobile) */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 850;
    backdrop-filter: blur(3px);
}

.sidebar-overlay.active {
    display: block;
}

/* ===================== NAVBAR ===================== */
.nav-PaddingSection {
    padding: 0 5%;
    background: #1a2c38;
    border-bottom: 1px solid rgba(255, 215, 0, 0.06);
}

.navSection {
    display: flex;
    padding: 12px 0;
    justify-content: space-between;
    align-items: center;
}

.leftNav {
    display: flex;
    align-items: center;
}

.leftNav li {
    list-style: none;
}

.leftNav li a {
    text-decoration: none;
    color: #fff;
}

.leftNav img {
    width: 100px;
}

.rightNav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-buttons button {
    background: #fe368a;
    color: #fff !important;
    text-transform: uppercase;
    outline: none;
    font-size: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    padding: 9px 20px;
    border-radius: 5px;
    font-family: "Teko", serif;
    letter-spacing: 1.5px;
    transition: all 0.2s;
}

.nav-buttons button:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.nav-buttons .btn2 {
    background-color: #19a731 !important;
}

.Menu {
    display: none;
    cursor: pointer;
    padding: 6px;
}

.Menu i {
    color: #ffffff;
    font-size: 22px;
}

/* ===================== HERO BANNER ===================== */
.banner-hero {
    position: relative;
    width: 100%;
    height: 233px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../Images/banner-hero.webp") no-repeat center/cover;
    z-index: 1;
}

.banner-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.25) 20%, rgba(0, 0, 0, 0.35) 60%, transparent 100%);
    z-index: 2;
}
.banner-hero-second {
    position: relative;
    width: 100%;
    height: 233px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-hero-second::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../Images/banner-imag.webp") no-repeat center/cover;
    z-index: 1;
}

.banner-hero-second::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.25) 20%, rgba(0, 0, 0, 0.35) 60%, transparent 100%);
    z-index: 2;
}

.banner-hero-second .banner-link {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: start;
    text-decoration: none;
}
.banner-hero-second  .banner-content {
    padding-top: 2%;
    color: #fff;
    max-width: 720px;
    text-align: start;
    padding-left: 60px;
}
.banner-link {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    text-decoration: none;
}

.banner-content {
    padding-top: 2%;
    color: #fff;
    max-width: 920px;
    text-align: center;
    padding-left: 60px;
}

.banner-content h2 {
    font-family: "Teko", serif;
    font-size: 40px;
    line-height: 1;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.banner-content h2 span {
    color: #FFD700;
}

.banner-content p {
    font-family: "Prompt", sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 920px;
}

/* ===================== MAIN SECTION ===================== */
.main-section {
    background-color: #0f212e;
}

.mainPadding {
    padding: 2% 5%;
}

.hero-Section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-Section-Content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-Section-Content h1 {
    margin: 1% 0%;
    font-size: 38px;
    line-height: 44px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: "Teko", serif;
    color: #ffffff;
    text-align: center;
}

.hero-Section-Content h6 {
    font-size: 15px;
    color: #b0c4d4;
    text-align: center;
    font-weight: 350;
    line-height: 27px;
    font-family: "Prompt", sans-serif;
    max-width: 1000px;
}

.hero-Section-Content h6 strong {
    color: #FFD700;
    font-weight: 500;
}

/* ===================== PADDING SECTION ===================== */
.paddingSection {
    padding: 1.5% 5%;
    background-color: #0f212e;
}

/* ===================== GAMES HEADING ===================== */
.games-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.games-heading p {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    color: #FFD700;
    font-family: "Teko", serif;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.games-heading p i {
    font-size: 14px;
    color: #FFD700;
}

/* ===================== SLOTS GRID ===================== */
.slots {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.slot-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    cursor: pointer;
}

.slot-image:hover {
    transform: translateY(-5px);
}

.slot-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
    z-index: 1;
}

.slot-image:hover::before {
    opacity: 1;
}

.slot-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.cta-button {
    text-align: center;
    position: absolute;
    bottom: -42px;
    left: 0;
    width: 100%;
    transition: all 0.3s ease;
    z-index: 2;
}

.slot-image:hover .cta-button {
    bottom: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-button a {
    display: inline-block;
    background: linear-gradient(135deg, #fe368a, #c4005e);
    color: #ffffff !important;
    padding: 7px 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    font-family: "Teko", serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
}

.top-slots .slots {
    margin: 1% 0;
}

/* ===================== BANNER ===================== */
.banner {
    background-color: #0f212e;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner img {
    width: 100%;
}

/* ===================== CONTENT SECTIONS ===================== */
.what-is.intro {
    padding: 2% 5% !important;
    background-color: #0f212e;
}

.h2heading {
    padding: 2px 0;
    margin: 1% 0;
}

.h2heading h2 {
    font-size: 36px !important;
    margin: 1% 0;
    color: #ffffff;
    font-weight: 600;
    font-family: "Teko", serif;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.h2heading h2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, transparent);
    border-radius: 2px;
}

.content h4 {
    margin: 2% 0 1%;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    font-family: "Prompt", sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.content h4 i {
    color: #19a731;
}

.content p {
    font-size: 15px;
    line-height: 28px;
    color: #b0c4d4;
    font-family: "Prompt", sans-serif;
}

.content p a strong {
    color: #FFD700 !important;
    font-weight: 500;
}

.content ul {
    margin: 5px 0;
}

.content ul li,
.content ol li {
    margin: 10px 0;
    font-size: 15px;
    line-height: 28px;
    margin-left: 5%;
    color: #b0c4d4;
    font-family: "Prompt", sans-serif;
}

.content ul li strong,
.content ol li strong {
    color: #ffffff;
    font-weight: 450;
}

/* ===================== BUTTON SECTION ===================== */
.button-section {
    padding: 20px 5%;
    background-color: #0f212e;
}

.button-section a {
    text-decoration: none;
}

.button-section button {
    display: block;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(25, 167, 49, 0.3);
    border-radius: 6px;
    cursor: pointer;
    padding: 12px 28px;
    background: linear-gradient(135deg, #19a731, #0d7a22);
    font-size: 15px;
    font-family: "Teko", serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 600;
    border: none;
    min-width: 220px;
    transition: all 0.25s;
}

.button-section button:hover {
    background: linear-gradient(135deg, #fe368a, #c4005e);
    box-shadow: 0 6px 20px rgba(254, 54, 138, 0.3);
    transform: translateY(-2px);
}

/* ===================== FAQ SECTION ===================== */
.container.intro {
    padding: 2% 5% !important;
    background-color: #0f212e;
}

.Section11th {
    padding: 0 5% 30px;
    background-color: #0f212e;
}

.faqs {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.Section11th .box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 4px 28px;
    transition: border-color 0.2s;
}

.Section11th .box:hover {
    border-color: rgba(255, 215, 0, 0.12);
}

.Section11th .question {
    display: flex;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    gap: 16px;
}

.Section11th .question h3 {
    font-size: 20px;
    letter-spacing: 0.5px;
    color: #ffffff;
    font-family: "Teko", serif;
    font-weight: 400;
    line-height: 1.3;
}

.Section11th .question i {
    font-size: 14px;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFD700;
    flex-shrink: 0;
    transition: all 0.2s;
}

.Section11th .box.open .question i {
    background: rgba(255, 215, 0, 0.12);
    transform: rotate(180deg);
}

.Section11th .ans {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding-bottom: 0;
}

.Section11th .ans.active {
    max-height: 300px;
    padding-bottom: 16px;
}

.Section11th .ans p {
    font-size: 14px;
    color: #8AABB8;
    font-family: "Prompt", sans-serif;
    line-height: 1.7;
}



.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: #030a10;
}

.footer-section {
    padding: 40px 5%;
}

.footer-section p {
    font-size: 12px;
    text-align: center;
    color: #757f86;
    font-family: "Prompt", sans-serif;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.footer-conditions p {
    color: #757f86;
}

.footer-conditions p a {
    color: #757f86;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-conditions p a:hover {
    color: #FFD700;
}

/* ===================== RESPONSIVE ===================== */
@media only screen and (max-width: 1024px) {
    .siderbar {
        width: 200px;
    }

    .main-body {
        width: calc(100% - 200px);
        margin-left: 200px;
    }
}

@media only screen and (max-width: 768px) {
    .siderbar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        width: 240px;
        box-shadow: 8px 0 32px rgba(0, 0, 0, 0.5);
    }

    .siderbar.mobile-open {
        transform: translateX(0);
    }

    .main-body {
        width: 100%;
        margin-left: 0;
    }

    .sidebar-toggle {
        display: flex;
    }

    .Menu {
        display: block;
    }

    .rightNav {
        display: none;
    }

    .rightNav.active {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .banner-hero {
        height: 300px;
    }

    .banner-hero::before {
        background: url("../Images/mobile-views2.webp") no-repeat center/cover;
    }
    .banner-hero-second::before {
        background: url("../Images/mobile-views3.webp") no-repeat center/cover;
    }

    .banner-content {
        padding-left: 24px;
    }

    .banner-content h2 {
        font-size: 36px;
    }

    .slots {
        grid-template-columns: repeat(3, 1fr);
    }

    .navSection {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 576px) {

    .banner-hero-second .banner-content {
    padding-left: 15px;
}

    .main-body {
        width: 100%;
        margin-left: 0;
    }

    .banner-content {
        padding: 20px;
    }

    .banner-content h2 {
        font-size: 30px;
    }

    .slots {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .hero-Section-Content h1 {
        font-size: 32px;
        line-height: 38px;
    }

    .hero-Section-Content h6 {
        font-size: 14px;
        line-height: 22px;
    }

    .what-is.intro {
        padding: 3% 4% !important;
    }

    .Section11th {
        padding: 0 4% 20px;
    }

    .Section11th .box {
        padding: 4px 14px;
    }

    .Section11th .question h3 {
        font-size: 17px;
    }

    .cta-button a {
        font-size: 10px;
        padding: 5px 14px;
    }
}