* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    background-color: #2e0034;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.landingPage {
    max-width: 12rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    position: relative;
    z-index: 10000;
    background-color: #2e0034;
}

.header {
    width: 100%;
    height: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.2rem 0.6rem;
    box-sizing: border-box;
    background: #280c2a;
    position: fixed;
    top: 0;
    z-index: 20;
    border-bottom: 2px solid rgba(74, 20, 140, 0.4);
}

.logo {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    max-width: 2rem;
    flex-shrink: 0;
    cursor: pointer;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburgerLine {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s linear;
}

.mobileMenu {
    position: fixed;
    top: 51px;
    left: 0;
    height: calc(100vh - 50px);
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 5;
    flex-direction: column;
    padding: 20px;
}

.mobileMenuButton {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.mobileMenuButton span {
    margin-left: 15px;
}

.ImageWrapper {
    width: 100%;
    height: auto;
}

.btn {
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    outline: none;
    transition: background 0.2s;
    box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.08);
}

.loginBtn {
    padding: 0.18rem 0.4rem;
    font-size: 0.36rem;
    border: 2px solid #e304a6;
    border-radius: 0.4rem;
}

.signUpBtn {
    padding: 0.18rem 0.4rem;
    font-size: 0.36rem;
    background: #fdd835;
    border-radius: 0.1rem;
    margin-left: 0.5rem;
}

.signUpBtn:hover {
    background: #f9a825;
}

.buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    margin-top: 1.7rem;
    padding: 0 0.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 12rem;
}

.bannerBox {
    position: relative;
    width: 100%;
    height: 5rem;
    border-radius: 0.2rem;
    overflow: hidden;
    background: url("./img/google-landing/banner.webp") center center/contain no-repeat;
    display: flex;
    align-items: center;
    box-shadow: 0 0.04rem 0.2rem 0 rgba(0, 0, 0, 0.15);
}

.bannerContent {
    position: relative;
    z-index: 2;
    width: 70%;
    color: #fff;
    text-shadow: 0 0.02rem 0.08rem rgba(0, 0, 0, 0.2);
    padding: 0.2rem 0.4rem;
    margin-top: 0.3rem;
}

.bannerTitle {
    font-size: 0.5rem;
    font-weight: 700;
    margin-bottom: 0.24rem;
    line-height: 1.1;
    text-wrap: nowrap;
}

.bannerDesc {
    font-size: 0.24rem;
    margin-bottom: 0.24rem;
    line-height: 1.5;
    color: #e6d1ff;
}

.bannerSub {
    font-size: 0.24rem;
    font-weight: 700;
}

.bannerBtn {
    font-size: 0.28rem;
    font-weight: 700;
    background: #fdd835;
    border: none;
    border-radius: 0.1rem;
    padding: 0.16rem 0.7rem;
    box-shadow: 0 0.02rem 0.1rem 0 rgba(255, 47, 166, 0.2);
    position: relative;
    top: -0.2rem;
}

.bannerBtn:hover {
    background: #f9a825;
}

.gamesWrapper {
    margin-top: 0.8rem;
    width: 100%;
    max-width: 12rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.2rem;
}

.slotSection {
    margin-bottom: 0.6rem;
}

.slotTitle {
    font-size: 0.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.24rem;
    padding-left: 0.1rem;
    text-align: center;
    margin-top: 0.8rem;
}

.slotTitle.emptyContent {
    text-align: left;
}

.slotContent {
    font-size: 0.4rem;
    margin-bottom: 0.24rem;
    color: #e6d1ff;
    text-align: center;
}

.slotListWrapper {
    -webkit-overflow-scrolling: touch;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.jackpotList {
    display: flex;
    flex-wrap: wrap;
}

.jackpotList .jackpotItem {
    width: 33.333333%;
    text-align: center;
    padding: 0.2rem;
}

.jackpotPic {
    position: relative;
    width: 100%;
}

.jackpotPic .bannerBtn {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: none;
}

.jackpotList .jackpotItem:hover .jackpotImg {
    opacity: 0.3;
}

.jackpotList .jackpotItem .jackpotImg {
    width: 100%;
}

.jackpotList .jackpotItem:hover .bannerBtn {
    display: inline-block;
}

.jackpotList .jackpotItem .jackpotAmount {
    background: #fdd835;
    font-size: 0.5rem;
    position: sticky;
    padding: 0.2rem 0;
    margin-top: -1rem;
    border-radius: 0 0 0.2rem 0.2rem;
}

.jackpotList .jackpotItem .jackpotTitle {
    color: #fff;
    font-size: 0.5rem;
    margin-top: 0.2rem;
}

.featureBanner,
.contactUs {
    width: 100%;
    padding: 0 0.2rem 0.5rem;
}

.featureBanner p,
.contactUs p {
    font-weight: 900;
    font-size: 0.5rem;
    margin: 0.7rem 0 0.5rem;
    color: #ffffff;
    line-height: 0.42rem;
    text-align: center;
}

.featureItem {
    display: flex;
    margin-bottom: 0.5rem;
    align-items: center;
}

.featureItem .featureContent {
    margin-left: 0.4rem;
}

.iconImg {
    width: 0.9rem;
    height: 0.9rem;
    flex-shrink: 0;
    object-fit: contain;
}

.featureTitle {
    font-size: 0.4rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.featureText {
    color: #fff;
    font-size: 0.3rem;
}

.featureBanner {
    background: #6e0c97;
}

.contactUs .content {
    color: #e6d1ff;
    font-size: 0.4rem;
}

.contactUsList {
    gap: 20px;
    margin-top: 30px;
}

.contactUsList .contactUsItem {
    display: flex;
    flex: 1;
    background: #491451;
    border-radius: 8px;
    padding: 12px 15px;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contactUsList .contactUsContent {
    color: #fff;
    font-size: 0.4rem;
    text-align: left;
    margin-left: 0.4rem;
}

.contactUsList .contactUsItem:last-child .contactUsContent {
    word-break: break-all;
}

.footer {
    width: 100%;
    max-width: 12rem;
    margin: 0 auto;
    padding: 0.6rem 0.2rem 0.2rem 0.2rem;
    background: none;
    color: #fff;
    font-size: 0.25rem;
    box-sizing: border-box;
}

.partnerTitle {
    font-size: 0.48rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.22rem;
    letter-spacing: 0.01rem;
}

.partnerList {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.22rem;
    max-width: 12rem;
}

.partnerItem img {
    height: 0.8rem;
    max-width: 100%;
    object-fit: contain;
}

.partnerMore {
    text-align: center;
    color: #c1e1ff;
    font-size: 0.36rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 0.1rem;
    letter-spacing: 0.01rem;
}

.footerLinks {
    display: flex;
    justify-content: center;
    gap: 0.28rem;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
    max-width: 12rem;
}

.footerLinks a {
    color: #f285ff;
    font-size: 0.26rem;
    text-decoration: underline;
    transition: color 0.2s;
}

.footerLinks a:hover {
    color: #ff2fa6;
}

.footerNotice {
    display: flex;
    align-items: center;
    gap: 0.18rem;
    background: none;
    margin-bottom: 0.5rem;
    font-size: 0.25rem;
    line-height: 1.3;
    max-width: 12rem;
    color: #c1e1ff;
}

.noticeIcon {
    margin-top: 0.04rem;
}

.footerCopyright {
    color: #bdb9e3;
    font-size: 0.25rem;
    text-align: left;
    line-height: 1.5;
    word-break: break-all;
    max-width: 12rem;
    background-color: #2e0034;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 0.4rem;
}

.menuBtn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
}

.menuContent {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menuText {
    margin-left: 8px;
    white-space: nowrap;
    font-size: 18px;
}

.slotListContainer {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slotList {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    scrollbar-width: none;
}

.slotList::-webkit-scrollbar {
    display: none;
}

.slotItem {
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 0.18rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.18s;
    background: #18182c;
}

.slotItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.18rem;
    pointer-events: none;
    user-select: none;
    transition: transform 0.2s ease;
}

.slotItem:hover {
    transform: translateY(-0.08rem) scale(1.04);
}

.slotItemSmall {
    width: 120px;
    min-width: 120px;
}

.slotItemLarge {
    width: 200px;
    min-width: 200px;
}

.navButton {
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
    position: absolute;
    opacity: 0.9;
    background: transparent;
    border: none;
}

.navButton img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.navButton:active {
    transform: scale(0.95);
}

.navButtonLeft {
    left: -1.5rem;
}

.navButtonRight {
    right: -1.5rem;
}

@media (max-width: 900px) {
    .hamburger { display: flex; }
    .desktopMenu { display: none; }
    .jackpotList .jackpotItem .jackpotAmount { font-size: 0.3rem; padding: 0.1rem 0; margin-top: -0.8rem; }
    .jackpotList .jackpotItem .jackpotTitle { font-size: 0.3rem; }
    .jackpotPic .bannerBtn { width: 2.8rem; }
    .navButtonLeft { left: 0.5rem; }
    .navButtonRight { right: 0.5rem; }
    
    .slotItemSmall { width: 100px; min-width: 100px; }
    .slotItemLarge { width: 164px; min-width: 164px; }
}

@media (max-width: 576px) {
    .navButton { width: 40px; height: 40px; font-size: 1.2rem; }
    .navButtonLeft { left: 0.2rem; }
    .navButtonRight { right: 0.2rem; }
    
    .slotItemSmall { width: 60px; min-width: 60px; }
    .slotItemLarge { width: 92px; min-width: 92px; }
}

@media (min-width: 577px) and (max-width: 768px) {
    .navButton { width: 45px; height: 45px; }
}

@media (min-width: 769px) and (max-width: 992px) {
    .navButton { width: 48px; height: 48px; }
}

@media (min-width: 993px) {
    .navButton { width: 50px; height: 50px; }
}

@media (min-width: 900px) {
    .hamburger { display: none; }
    .desktopMenu { display: flex; }
    .mobileMenu { display: none !important; }
    .landingPage { max-width: 100%; width: 100%; height: 100%; }
    .headerContainer { padding: 0 3rem; }
    .container {
        margin-top: 1.4rem;
        padding: 0 0.2rem;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        max-width: 100%;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .slotTitle { font-size: 1rem; margin-top: 1.1rem; }
    .slotContent { font-size: 0.6rem; margin-bottom: 0.5rem; }
    .bannerBox {
        flex-direction: row;
        height: 7.5rem;
        min-height: 5.7rem;
        padding: 0 1.2rem;
    background: url("./img/google-landing/banner_2.webp") center center/cover no-repeat;
        display: flex;
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        box-shadow: none;
    }
    .banner_bg { width: 100%; }
    .slotSection { margin-bottom: 0; }
    .bannerContent {
        width: 55%;
        padding: 0 0.6rem 0.4rem 0.2rem;
        margin-top: 0;
        align-items: flex-start;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .bannerTitle {
        font-size: 0.8rem;
        font-weight: 700;
        margin-bottom: 0.24rem;
        line-height: 1.1;
        white-space: nowrap;
    }
    .bannerDesc {
        font-size: clamp(16px, 0.45rem, 20px);
        line-height: 1.5;
        margin-bottom: clamp(12px, 0.24rem, 18px);
        color: #e6d1ff;
    }
    .bannerSub { font-size: 0.6rem; font-weight: 400; white-space: nowrap; }
    .bannerBtn {
        font-size: 0.56rem;
        top: 0.4rem;
        width: 6.07rem;
        height: 1.2rem;
        border-radius: 0.2rem;
    }
    .gamesWrapper { max-width: 1200px; padding: 0 1rem; margin-top: 1rem; }
    .partnerItem img { height: 2rem; }
    .slotListWrapper {
        height: 100%;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }
    .featureItem { height: 100%; padding: 0.2rem; }
    .featureBanner {
        max-width: 100%;
        font-size: 0.7rem;
        width: 100%;
        background: #6e0c97;
    }
    .featureList { display: flex; flex-wrap: wrap; }
    .featureItem { width: 50%; }
    .contactUs p { font-size: 1.1rem; margin: 1rem 0 1.3rem; }
    .contactUs .content { font-size: 0.7rem; }
    .contactUs {
        max-width: 1200px;
        font-size: 0.7rem;
        width: 100%;
        text-align: center;
    }
    .partnerTitle { margin: 1.56rem 0 0.8rem; font-size: 1.1rem; }
    .partnerList {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .partnerMore {
        color: #a3afd7;
        font-size: 0.5rem;
        margin-bottom: 2rem;
        font-weight: 400;
        margin-top: 0.8rem;
    }
    .footerLinks, .footerNotice {
        max-width: 1100px;
        margin-bottom: 0.4rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footerLinks a { margin: 0 0.5rem; font-size: 0.3rem; font-weight: 600; }
    .contactUsList { display: flex; }
    .footer { width: 100%; max-width: 100%; padding: 0; }
    .footerCopyright_1 {
        background: #2e0034;
        display: grid;
        align-items: center;
        justify-content: center;
    }
    .footerCopyright {
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 1rem;
        background: #491451;
    }
    .footerCopyright p {
        font-size: 0.32rem;
        text-align: center;
        line-height: 1.5;
        max-width: 1100px;
        color: #c1e1ff;
    }
}