/* 主要样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1f1240;
    --primary-dark: #111;
    --primary-light: #5d1daa;
    --accent-color: #a342ff;
    --accent-light: #cf9eff;
    --text-color: #ffffff;
    --text-dark: #e0e0e0;
    --text-light: #ffffff;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    background-color: var(--primary-color);
    background-image: url('../img/bg-pattern.png');
    background-size: cover;
    line-height: 1.6;
    overflow-x: hidden;
}
.mobile-logo {
    display: none;
}
.site-header {
  /* padding: 23px 0 24px; */
  position: fixed;
  left: 0;
  top: 0;
  width: calc(100% - var(--scrollbar-width));
  /* background-color: #110b27; */
  z-index: 49;
}

a {
    text-decoration: none;
    color: inherit;
}

.text-purple {
    color: var(--accent-color);
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login {
    background-color: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
}

.btn-signup {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.btn-play {
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 12px 30px;
    font-size: 18px;
    letter-spacing: 1px;
}

.btn-play-now {
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 12px 30px;
    font-size: 18px;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* 头部导航 */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo h1 {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-color);
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

/* 英雄区域 */
.hero {
    /* min-height: 130vh; */
    display: flex;
    position: relative;
    /* padding: 80px 5% 50px; */
    overflow: hidden;
}

.hero-content.modern-hero-content {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 10;
    /* margin-left: 5%; */
    padding: 200px 20px 400px 20px;
    text-align: left;
    gap: 32px;
    min-height: 0;
    position: relative;
}

.hero-section .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.hero-title {
    font-size: 3.1rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 0.6em;
    letter-spacing: -2px;
}

.hero-title-1 {
    font-size: 4rem
}

.hero-gradient {
    background: linear-gradient(90deg, #cf9eff 0%, #a342ff 50%, #ff5dc8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 4rem;
}

.hero-promo-box {
    border: 2px solid transparent;
    border-radius: 18px;
    background: rgba(70, 0, 120, 0.22);
    padding: 18px 32px;
    margin-bottom: 0;
    box-shadow: 0 2px 20px 0 rgba(163,66,255,0.15);
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
    max-width: 870px;
    background-clip: padding-box;
    position: relative;
}
.hero-promo-box::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(90deg, #cf9eff 0%, #a342ff 50%, #ff5dc8 100%);
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}


.hero-promo-label {
    font-size: 1.14em;
    color: #fff;
}

.hero-promo-highlight {
    font-size: 1.18em;
    font-weight: bold;
}

.hero-promo-gradient {
    background: linear-gradient(90deg, #cf9eff 0%, #a342ff 60%, #ff5dc8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-free-box {
    margin-top: 6px;
    margin-bottom: 0;
}

.hero-free-box.winners {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  min-height: 500px;
  background: radial-gradient(ellipse 100% 80% at 35% 60%, rgba(163,66,255,0.15) 0%, rgba(45,0,80,0.7) 80%, #2b0b4e 100%);
  margin-top: 60px;
  margin-bottom: 0;
}

.winners-left {
  flex: 1;
  padding: 40px 0 0 60px;
  z-index: 1;
  /* background: url(../img/2.png) no-repeat center center/cover; */
}

.winners-title-white {
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
}

.winners-title-purple {
  color: #b95cff;
  font-size: 4rem;
  font-weight: bold;
  margin-left: 10px;
}

.winners-desc-card {
    margin-top: 30px;
    background: rgba(34, 0, 60, 0.6);
    border: 2px solid #b95cff;
    border-radius: 24px;
    color: #fff;
    font-size: 1.9rem;
    padding: 28px 36px;
    max-width: 500px;
}
.winners-desc-card .highlight {
  color: #b95cff;
  font-weight: bold;
}

.winners-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* box-shadow: 0 18px 38px -12px rgba(60,30,120,0.28), 0 8px 24px -8px rgba(60,30,120,0.18); */
  border-radius: 0px;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.winners-list::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, rgb(31 18 64 / 95%) 20%, transparent 100%);
  z-index: 2;
}
.winners-list::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, rgb(31 18 64) 20%, transparent 100%);
  z-index: 2;
}

.winners-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 52px;
  justify-content: flex-start;
  align-items: center;
  /* padding: 0px 20px 0 0; */
}

.winner-card {
  display: flex;
  align-items: center;
  background: rgba(34, 0, 60, 0.6);
  border: 2px solid #8b58ec;
  border-radius: 55px;
  padding: 18px 32px;
  /* min-width: 320px; */
  /* max-width: 360px; */
  gap: 16px;
  box-shadow: 0 2px 16px 0 rgba(100,0,150,0.2);
}

.winner-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.winner-info {
  flex: 1;
}

.winner-game {
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
}

.winner-name {
  color: #b0b0b0;
  font-size: 1rem;
}

.winner-amount {
  color: #ffd700;
  font-size: 1.3rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
}

.coin-icon {
  width: 24px;
  height: 24px;
}

.hero-free-text {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 2px;
}

.hero-play-btn {
    margin-top: 16px;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
    background: linear-gradient(90deg, #cf9eff 0%, #a342ff 60%, #ff5dc8 100%);
    border: none;
    border-radius: 999px;
    padding: 18px 54px;
    box-shadow: 0 4px 32px 0 rgba(255, 93, 200, 0.27), 0 2px 10px 0 rgba(163,66,255,0.13);
    text-transform: uppercase;
    transition: all 0.22s cubic-bezier(.4,0,.2,1);
    cursor: pointer;
}

.hero-play-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(255, 93, 200, 0.37), 0 4px 20px 0 rgba(163,66,255,0.23);
    opacity: 0.96;
}

.hero-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
    margin-left: 5%;
    padding-right: 20px;
    text-align: left;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.promo-box {
    background-color: rgba(58, 14, 106, 0.8);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    max-width: 300px;
}

.promo-text {
    font-weight: bold;
    font-size: 18px;
}

.free-play-box {
    margin-bottom: 30px;
}

.free-play-text {
    font-size: 16px;
    opacity: 0.9;
}

.hero-image {
    width: 50%;
    position: relative;
}

.woman-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 100%;
    z-index: 2;
}

.coins, .chip-1, .chip-2 {
    position: absolute;
    animation: float 3s infinite alternate ease-in-out;
}

.coins {
    width: 80px;
    top: 30%;
    right: 20%;
    z-index: 1;
}

.chip-1 {
    width: 100px;
    bottom: 20%;
    right: 40%;
    animation-delay: 0.5s;
}

.chip-2 {
    width: 80px;
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* 游戏区域 */
.games {
    /* padding: 50px 5%; */
    position: relative;
    margin-top: -150px;
    display: grid;
    grid-template-columns: 2fr 2fr;
    margin-bottom: 220px;
}
.games-img {
    position: absolute;
    width: 50vw;
    right: 0;
    z-index: 0;
    top: 50px;
}

.game-carousel {
    /* display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    position: relative;
    min-height: 420px; */
}
.games .section-title {
    z-index: 2;
}

.game-card {
    transition: transform 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.3s, opacity 0.3s;
    position: relative;
    z-index: 1;
    background: rgba(30,0,80,0.18);
    border-radius: 32px;
    box-shadow: 0 8px 32px 0 rgba(163,66,255,0.13);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.6;
    transform: scale(0.82);
    border: 2px solid #a342ff;
    padding: 10px 18px 60px 18px;
}
.game-card.active {
    z-index: 2;
    opacity: 1;
    transform: scale(1.12);
    box-shadow: 0 12px 48px 0 rgba(163,66,255,0.22), 0 2px 12px 0 rgba(255,255,255,0.07);
    border: 2px solid #a342ff;
}
.game-card.prev,
.game-card.next {
    z-index: 1;
    opacity: 0.55;
    transform: scale(0.78);
    filter: blur(0.5px);
}

.game-carousel::-webkit-scrollbar {
    display: none;
}

.game-card {
    min-width: 100px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.game-card img {
    width: 100%;
    display: block;
}

.game-card.active {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.game-label {
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;

    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); */
    padding: 15px;
    display: flex;
    align-items: center;
    line-height: 1.1;
    gap: 10px;
}

.crown-icon {
    font-size: 20px;
}

.section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    padding: 20px 0;
}

.games .section-content {
    padding: 2vw;
}
    
.carousel-controls {
    display: flex;
    gap: 10px;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--text-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--accent-color);
}

/* 获奖者区域 */
.winners {
    /* padding: 50px 5%; */
    display: grid;
    grid-template-columns: 2fr 2fr;
}
.winners-img {
    position: absolute;
    width: 50vw;
    left: 0;
    z-index: 0;
    transform: scaleX(-1);
}
.winners-intro {
    margin-bottom: 30px;
}

.winners-intro p {
    font-size: 18px;
}

.highlight {
    color: var(--accent-color);
    font-weight: bold;
}

.winners-list {
    display: grid;
    gap: 0px;
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background-color: rgba(58, 14, 106, 0.5);
    border-radius: 10px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.winner-info {
    display: flex;
    flex-direction: column;
}

.name {
    font-weight: bold;
}

.amount {
    color: var(--accent-color);
    font-weight: bold;
}

/* 真实获胜区域 */
.real-wins {
    padding: 50px 5% 150px;
    display: flex;
    justify-content: space-between;
    margin-top: 10vw;
    position: relative;
}

.real-wins-content {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 30px;
    align-items: center;
    width: 100%;
}

.real-wins-images {
  position: relative;
  /* width: 40vw; */
  height: 430px;
  margin: 0 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.real-win-img {
  position: absolute;
  border-radius: 32px;
  box-shadow: 0 6px 48px 0 rgba(80,0,160,0.28);
  object-fit: cover;
  transition: filter 0.3s, opacity 0.3s;
}
.real-win-img-main {
    width: 50%;
    height: auto;
    left: 30%;
    top: 0%;
    z-index: 2;
    /* transform: translate(-50%, -50%);*/
}
.real-win-img-left {
    width: 50%;
    height: auto;
    left: -48px;
    top: 20%;
    z-index: 1;
    opacity: 0.7;
}
.real-win-img-right {
    width: 50%;
    height: auto;
    right: 0;
    top: 38%;
    z-index: 1;
    opacity: 0.7;
    /* filter: blur(2.5px) brightness(0.9); */
    /* transform: rotate(7deg); */
}

.screenshot {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.section-title {
    flex: 1;
}

.subtitle {
    margin-top: 10px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

/* 推荐区域 */
.testimonials {
    padding: 0px 5%;
    margin-top: 50px;
    position: relative;
}

.testimonials-content {
    display: flex;
    gap: 30px;
}

.testimonial-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.testimonial-cards::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, rgb(31 18 64 / 95%) 20%, transparent 100%);
    z-index: 2;
}
.testimonial-cards::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, rgb(31 18 64) 20%, transparent 100%);
    z-index: 2;
}

.testimonial-card {
    background-color: var(--primary-light);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-card h3 {
    margin-bottom: 10px;
    color: var(--accent-color);
}

/* Swiper轮播居中修复 */

.testimonials-content-grid {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 48px;
  align-items: center;
  min-height: 520px;
}

.testimonials-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding-left: 2vw;
}

.testimonials-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 50px;
  line-height: 1.1;
  width: 100%;
}
.testimonials-img {
    position: absolute;
    width: 50vw;
    left: 0;
    z-index: 0;
    /* height: 100%; */
    bottom: 0;
}

.testimonials-img img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100vw;
}

.testimonials-desc {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 44px;
  font-weight: 400;
}

.carousel-controls {
  display: flex;
  gap: 22px;
  margin-top: 18px;
}
.carousel-controls button {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0);
  border: 3px solid #fff;
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border 0.2s;
}
.carousel-controls button:hover {
  background: #a342ff;
  border-color: #a342ff;
}

.testimonial-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 20px;
}
.testimonial-card {
  background: rgba(31,18,64,0.8);
  border-radius: 22px;
  border: 2px solid #a342ff;
  box-shadow: 0 0 16px 0 rgba(163,66,255,0.12);
  padding: 28px 32px 22px 32px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 400;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.testimonial-card.highlight {
  border-color: #a342ff;
  /* box-shadow: 0 0 16px 0 rgba(163,66,255,0.22); */
  background: linear-gradient(120deg, rgba(31,18,64,0.92) 70%, rgba(163,66,255,0.14) 100%);
}
.testimonial-card.faded {
  opacity: 0.45;
  border-color: #fff;
  background: rgba(31,18,64,0.5);
}
.testimonial-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}


.real-wins-title {
  text-align: center;
  padding-right: 3vw;
  padding-top: 40px;
}
.real-wins-title h2 {
  font-size: 3.6rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
}
.real-wins-title .text-purple {
  color: #a342ff;
}
.real-wins-subtitle-btn {
  display: inline-block;
  padding: 18px 38px;
  border-radius: 32px;
  background: #a342ff;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  box-shadow: 0 4px 24px 0 rgba(163,66,255,0.18);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.real-wins-img {
    position: absolute;
    /* width: 50vw; */
    right: 0;
    z-index: 0;
    /* height: 100%; */
    bottom: 10px;
}

.real-wins-img img {
    /* width: auto; */
    /* height: auto; */
    display: block;
    max-width: 12vw;
}

.swiper.game-carousel {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}
.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  /* width: 250px !important; */
  box-sizing: border-box;
  opacity: 0.5;
  /* transition: opacity 0.3s; */
}
.swiper-slide-active {
  opacity: 1 !important;
}

/* 行动召唤区域 */
.cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    min-height: 600px;
    /* background: radial-gradient(ellipse 100% 80% at 35% 60%, rgba(163,66,255,0.15) 0%, rgba(45,0,80,0.7) 80%, #2b0b4e 100%),
        linear-gradient(90deg, #2b0b4e 0%, #5d1daa 100%); */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-img-half {
    flex: 0 0 50%;
    min-width: 380px;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}
.cta-full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-content-wrap {
    background: url('../img/11.png') right center/contain no-repeat;
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    height: 100%;
    flex: 1 1 0%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-content {
    flex: 1 1 0%;
    min-width: 0;
    padding: 0 56px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 2.2em;
    letter-spacing: -1px;
    text-align: left;
}
.text-purple, .cta-content h2 .text-purple {
    background: linear-gradient(90deg, #cf9eff 0%, #a342ff 60%, #ff5dc8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}
.btn.btn-play-now {
    display: inline-block;
    font-size: 1.35rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
    background: linear-gradient(90deg, #cf9eff 0%, #a342ff 60%, #ff5dc8 100%);
    border: none;
    border-radius: 999px;
    padding: 20px 64px;
    box-shadow: 0 4px 32px 0 rgba(255, 93, 200, 0.27), 0 2px 10px 0 rgba(163,66,255,0.13);
    text-transform: uppercase;
    transition: all 0.22s cubic-bezier(.4,0,.2,1);
    cursor: pointer;
    margin-top: 0.5em;
}
.btn.btn-play-now:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(255, 93, 200, 0.37), 0 4px 20px 0 rgba(163,66,255,0.23);
    opacity: 0.96;
}




.cta-coins {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.cta-coins img {
    max-width: 180px;
    width: 100%;
    height: auto;
    display: block;
}

.cta-content h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 24px;
}

@media (max-width: 900px) {
  .cta {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .cta-content {
    text-align: center;
  }
  .cta-coins {
    justify-content: center;
    margin-bottom: 12px;
  }
}

.cta .coin, .cta .chip {
    position: absolute;
    animation: float 3s infinite alternate ease-in-out;
}

.cta .coin-1 {
    width: 80px;
    top: 20%;
    right: 20%;
}

.cta .coin-2 {
    width: 60px;
    top: 60%;
    right: 40%;
    animation-delay: 0.7s;
}

.cta .chip-1 {
    width: 100px;
    top: 40%;
    right: 10%;
    animation-delay: 1.2s;
}

.cta .chip-2 {
    width: 80px;
    bottom: 20%;
    right: 30%;
    animation-delay: 0.5s;
}

/* 页脚 */
footer {
    background-color: var(--primary-dark);
    padding: 0 5% 20px 5%;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* margin-bottom: 20px; */
}

.footer-links a {
    font-size: 12px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-disclaimer {
    display: flex;
    /* gap: 20px; */
    align-items: center;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo img {
    width: 80px;
}

.footer-disclaimer-age {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-disclaimer-age img {
    padding: 20px;
}

.disclaimer-text {
    font-size: 1rem;
    opacity: 0.6;
    line-height: 1.4;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding-top: 100px;
    }
    
    .hero-content, .hero-image {
        width: 100%;
    }
    
    .hero-content {
        margin-bottom: 50px;
        margin-left: 0;
        padding: 0 5%;
    }
    
    .woman-image {
        position: relative;
        transform: none;
        max-width: 70%;
        margin: 0 auto;
        display: block;
    }
    
    .coins, .chip-1, .chip-2 {
        max-width: 60px;
    }
    
    .testimonials-content {
        flex-direction: column;
    }
    
    .real-wins-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .winner-item {
        padding: 5px;
        gap: 10px;
    }
    
    .avatar {
        width: 40px;
        height: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .footer-disclaimer {
        flex-direction: column;
        text-align: center;
    }
} 

.hero-section .image-wrapper {
    position: static;
}
.hero-section .image-wrapper .image-1 {
  z-index: 10;
  margin: 0 auto;
}

.hero-section .image-wrapper img {
  position: absolute;
  height: 100%;
  max-width: 75vw;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom center;
  object-position: bottom center;
  right: 0px;
  bottom: 0;
  transition: 2s transform cubic-bezier(.17,.67,.5,1.29);
}
.max-w-full {
  max-width: 100%;
}
img, video {
  max-width: 100%;
  height: auto;
}
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
}

@media (max-width: 900px) {
    .logo {
        display: none;
    }
    header {
        justify-content: center;
        bottom: 0;
        top:auto;
        backdrop-filter: blur(10px);
    }
    .hero {
        padding-top: 50px;
    }
    .site-header {
        top: auto;
    }
    .hero-title-1 {
        font-size: 2rem;
    }
    h2, .winners-title-white, .winners-title-purple, .hero-promo-label, .hero-promo-gradient{
        font-size: 2rem !important;
    }
    .mobile-logo {
        backdrop-filter: blur(10px);
        display: block;
        text-align: center;
        padding: 10px;
        position: fixed;
        width: 100%;
        /* background: #110925; */
        z-index: 233;
    }
    .mobile-logo h1 {
        font-size: 1.5rem;
    }
    .bg {
        display: none;
    }
    .hero-content h1 {
        margin-bottom: 0;
    }
    .hero-content.modern-hero-content {
        padding: 20px 20px 100px 20px;
        align-items: center;
    }
    .hero-gradient {
        font-size: 2rem !important;
    }
    .section-title {
        display: none;
    }
    .games-img {
        display: none;
    }
    .game-card {
        border-radius: 20px;
    }
    .games {
        margin-bottom: 50px;
        display: block;
        margin-top: -50px;
    }
    .testimonials-img {
        display: none;
    }
    .winners {
        display: block;
    }
    .winners-img {
        display: none;
    }
    .winner-avatar {
        width: 36px;
        height: 36px;
    }
    .real-wins {
        padding-bottom: 50px;
    }
    .cta-content h2 {
        font-size: 2rem;
    }
    .real-wins-content {
        display: block;
        width: 100%;
    }
    .testimonials-content-grid {
        display: block;
    }
    .winners-left {
        padding: 20px;
        text-align: center;
    }
    .winner-amount {
        display: none;
    }
    .testimonials-left {
        text-align: center;
    }
    .testimonial-card {
        font-size: 0.85rem;
        padding: 15px;
    }
    .testimonial-card h3 {
        font-size: 1rem;
    }
    .hero-promo-box {
        text-align: center;
    }
    .cta {
        display: block;
        flex-direction: column;
        min-height: 0;
    }
    .cta-img-half {
        min-width: 0;
        min-height: 240px;
        width: 100%;
        height: auto;
        justify-content: center;
    }
    .cta-full-img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }
    .cta-content-wrap {
        background: none;
    }
    .cta-content {
        padding: 24px 12px 40px 12px;
        align-items: center;
        text-align: center;
    }
    .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1.2em;
        text-align: center;
    }
    .btn.btn-play-now {
        padding: 14px 32px;
        font-size: 1rem;
    }
    footer {
        margin-bottom: 100px;
    }
}
