/* ===== å…¨å±€é‡ç½® ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(circle at 50% 20%, rgba(255, 225, 120, 0.4) 0%, transparent 26%),
        radial-gradient(circle at 20% 60%, rgba(255, 180, 85, 0.32) 0%, transparent 34%),
        radial-gradient(circle at 82% 60%, rgba(250, 100, 40, 0.26) 0%, transparent 34%),
        /* 竖向完整线性渐变：从上亮金黄 → 往下逐步加深至暗红棕 */
        linear-gradient(180deg, #ffe895 0%, #ffc560 25%, #ff9733 50%, #f56820 75%, #c43a0c 100%);
    color: #E8E8E8;
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== å…¨å±€èƒŒæ™¯æ•ˆæžœ ===== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background:
    radial-gradient(circle at 50% 20%, rgba(247, 110, 45, 0.65) 0%, transparent 26%),
    linear-gradient(180deg, #f76e2d 0%, #e85f20 25%, #d95018 50%, #c94211 75%, #b8360c 100%);
    pointer-events: none;
    z-index: 0;
}

/* ===== å¯¼èˆªæ  ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.75);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 23, 68, 0.18);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.95);
    box-shadow: 0 4px 30px rgba(255, 23, 68, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom-color: rgba(255, 23, 68, 0.25);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-box {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF1744 0%, #D50000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    font-weight: 900;
    box-shadow: 0 4px 20px rgba(255, 23, 68, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 23, 68, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.logo-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: inherit;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.brand-en {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    color: #FF1744;
    font-weight: 600;
    letter-spacing: 2px;
    margin-left: 6px;
}

.nav-menu {
    display: flex;
    gap: 6px;
    align-items: center;
}

.nav-item a {
    padding: 10px 20px;
    font-size: 15px;
    color: #C8C8C8;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    font-weight: 500;
}

.nav-item a:hover {
    color: #fff;
    background: rgba(255, 23, 68, 0.15);
}

.nav-item.active a {
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.25), rgba(213, 0, 0, 0.15));
    box-shadow: 0 2px 15px rgba(255, 23, 68, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(255, 23, 68, 0.1);
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ===== Banner è½®æ’­åŒº ===== */
.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: 0;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide-bg-1 {
    background:
        radial-gradient(circle at 25% 50%, rgba(255, 23, 68, 0.35) 0%, transparent 50%),
        radial-gradient(circle at 75% 80%, rgba(100, 181, 246, 0.25) 0%, transparent 40%),
        linear-gradient(135deg, #0A0E1A 0%, #200A15 40%, #0A0E1A 100%);
}

.slide-bg-2 {
    background:
        radial-gradient(circle at 75% 35%, rgba(255, 23, 68, 0.30) 0%, transparent 55%),
        radial-gradient(circle at 25% 75%, rgba(100, 181, 246, 0.20) 0%, transparent 45%),
        linear-gradient(225deg, #0A0E1A 0%, #200A15 40%, #0A0E1A 100%);
}

.slide-bg-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 48%, rgba(255, 213, 79, 0.1), transparent 18%),
        linear-gradient(90deg, rgba(255, 23, 68, 0.08), transparent 42%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 64px);
}

.slide-bg-3 {
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 23, 68, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(100, 181, 246, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #0A0E1A 0%, #200A15 40%, #0A0E1A 100%);
}

.slide-bg-fun {
    background:
        radial-gradient(circle at 72% 28%, rgba(255, 213, 79, 0.2) 0%, transparent 27%),
        radial-gradient(circle at 20% 58%, rgba(255, 23, 68, 0.25) 0%, transparent 34%),
        linear-gradient(135deg, #070911 0%, #1C0D25 45%, #22070D 100%);
}

.slide-bg-fun::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 74% 36%, rgba(255, 213, 79, 0.12), transparent 19%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 12px);
}

.slide-bg-season {
    background:
        radial-gradient(circle at 72% 30%, rgba(255, 213, 79, 0.24) 0%, transparent 26%),
        radial-gradient(circle at 24% 58%, rgba(255, 23, 68, 0.26) 0%, transparent 36%),
        linear-gradient(135deg, #070911 0%, #22070D 42%, #0A0E1A 100%);
}

.slide-bg-season::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 213, 79, 0.08), transparent 32%, rgba(255, 23, 68, 0.08) 68%, transparent),
        repeating-linear-gradient(-18deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 14px);
}

.season-slide {
    cursor: pointer;
}

.season-slide-content {
    max-width: min(920px, 90vw);
    padding: 34px;
}

.season-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px auto 0;
    width: min(820px, 100%);
}

.season-highlights span {
    padding: 10px 16px;
    color: #FFD54F;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 900;
    text-shadow: 0 0 14px rgba(255, 213, 79, 0.28);
}

.slide-bg-new {
    background:
        radial-gradient(circle at 70% 28%, rgba(103, 232, 249, 0.24) 0%, transparent 27%),
        radial-gradient(circle at 24% 60%, rgba(167, 139, 250, 0.24) 0%, transparent 34%),
        linear-gradient(135deg, #05070F 0%, #0C1830 45%, #170A28 100%);
}

.slide-bg-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 34%, rgba(103, 232, 249, 0.12), transparent 20%),
        repeating-linear-gradient(30deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 13px);
}

.new-arrival-slide {
    cursor: pointer;
}

.new-slide-content {
    max-width: min(900px, 90vw);
    padding: 34px;
}

.new-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px auto 0;
    width: min(820px, 100%);
}

.new-highlights span {
    padding: 10px 16px;
    color: #67E8F9;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 900;
    text-shadow: 0 0 14px rgba(103, 232, 249, 0.28);
}

.fun-order-slide {
    cursor: pointer;
}

.fun-slide-content {
    max-width: min(760px, 88vw);
}

.fun-slide-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    padding: 8px 18px;
    color: #0B0D13;
    background: linear-gradient(135deg, #FFD54F, #FFAB00);
    border-radius: 14px;
    font-family: 'Orbitron', 'Noto Sans SC', sans-serif;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 12px 28px rgba(255, 213, 79, 0.22);
}

.service-slide-content,
.fun-slide-content {
    padding: 34px;
}

.service-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: min(620px, 100%);
    margin: 24px auto 0;
}

.service-point {
    padding: 15px 12px;
    color: #D8DFEF;
    text-align: center;
}

.service-point strong {
    display: block;
    color: #FFD54F;
    font-family: 'Orbitron', 'Noto Sans SC', sans-serif;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 900;
    line-height: 1;
}

.service-point span {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 900;
}

.fun-slide-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.fun-slide-tags span {
    padding: 8px 13px;
    color: #FFD54F;
    font-size: 14px;
    font-weight: 900;
}

.streamer-slide {
    cursor: pointer;
}

.slide-bg-streamer {
  
}

.slide-bg-streamer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.44)),
        radial-gradient(circle at 50% 12%, rgba(167, 139, 250, 0.1), transparent 22%),
        repeating-linear-gradient(24deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 12px);
    opacity: 0.95;
}

.streamer-content {
    width: min(760px, calc(100% - 80px));
    z-index: 2;
    padding-top: 40px;
    text-align: center;
}

.streamer-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 28px;
    color: #0B0D13;
    background: linear-gradient(135deg, #E9D5FF, #A78BFA 50%, #67E8F9);
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    font-size: clamp(22px, 3.6vw, 42px);
    font-weight: 900;
    letter-spacing: 4px;
    box-shadow: 0 16px 36px rgba(103, 232, 249, 0.28), 0 0 24px rgba(167, 139, 250, 0.32);
}

.streamer-kicker::before {
    content: ;
    font-size: 0.8em;
}

.streamer-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 3vw, 36px);
    margin-top: 26px;
}

.streamer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.streamer-frame {
    width: clamp(130px, 18vw, 200px);
    flex-shrink: 0;
    background: conic-gradient(from 120deg, #E9D5FF, #A78BFA, #67E8F9, #FF5E7C, #E9D5FF);
    box-shadow:
        0 0 0 8px rgba(0, 0, 0, 0.28),
        0 0 0 13px rgba(167, 139, 250, 0.18),
        0 24px 48px rgba(0, 0, 0, 0.34),
        0 0 42px rgba(103, 232, 249, 0.3);
}

.streamer-name {
    color: #fff;
    font-size: clamp(34px, 5.6vw, 62px);
    font-weight: 900;
    letter-spacing: 1px;
    white-space: nowrap;
    text-shadow: 0 4px 18px rgba(103, 232, 249, 0.4);
}

.streamer-title {
    margin-top: 10px;
    color: #C4B5FD;
    font-size: clamp(15px, 1.8vw, 22px);
    font-weight: 900;
    letter-spacing: 1px;
}

.streamer-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px auto 0;
    width: min(680px, 100%);
}

.streamer-highlights span {
    padding: 9px 16px;
    color: #67E8F9;
    background: rgba(103, 232, 249, 0.08);
    border: 1px solid rgba(103, 232, 249, 0.22);
    border-radius: 999px;
    font-size: clamp(13px, 1.4vw, 17px);
    font-weight: 900;
    text-shadow: 0 0 14px rgba(103, 232, 249, 0.28);
}

.slide-bg-recommend {
    background:
        radial-gradient(circle at 50% 22%, rgba(255, 213, 79, 0.14) 0%, transparent 24%),
        radial-gradient(circle at 18% 52%, rgba(255, 23, 68, 0.24) 0%, transparent 34%),
        radial-gradient(circle at 82% 58%, rgba(255, 23, 68, 0.2) 0%, transparent 34%),
        linear-gradient(135deg, #070911 0%, #22070D 42%, #0A0E1A 100%);
}

.slide-bg-recommend::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42)),
        radial-gradient(circle at 50% 12%, rgba(255, 213, 79, 0.08), transparent 20%),
        repeating-linear-gradient(-12deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 10px);
    opacity: 0.95;
}

.recommend-content {
    width: min(1500px, calc(100% - 120px));
    z-index: 2;
    padding-top: 44px;
    text-align: center;
}

.recommend-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    color: #7A000B;
    background: linear-gradient(135deg, #FFEFB0, #FFD54F 50%, #F49A1A);
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    font-size: clamp(24px, 4vw, 46px);
    font-weight: 900;
    letter-spacing: 4px;
    box-shadow: 0 16px 36px rgba(120, 0, 0, 0.34), 0 0 24px rgba(255, 213, 79, 0.32);
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.36);
}

.recommend-subtitle {
    width: fit-content;
    margin: 14px auto 0;
    padding: 8px 18px;
    color: #FFD54F;
    background: rgba(255, 213, 79, 0.08);
    border: 1px solid rgba(255, 213, 79, 0.2);
    border-radius: 999px;
    font-size: clamp(13px, 1.4vw, 18px);
    font-weight: 900;
    letter-spacing: 1px;
    backdrop-filter: blur(8px);
}

.recommend-board {
    display: grid;
    grid-template-columns: 1fr 1.45fr 1fr;
    align-items: start;
    gap: clamp(18px, 4vw, 62px);
    margin-top: 34px;
}

.recommend-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

.recommend-card.rank-1 {
    transform: translateY(-12px);
}

.recommend-card.rank-2,
.recommend-card.rank-3 {
    transform: translateY(42px);
}

.rank-label {
    position: absolute;
    top: clamp(148px, 17vw, 236px);
    left: 50%;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    color: #6E000A;
    background: linear-gradient(135deg, #FFF2B0, #FFD54F, #D98700);
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3), 0 0 22px rgba(255, 213, 79, 0.55);
    transform: translate(-50%, -50%);
}

.rank-1 .rank-label {
    top: clamp(138px, 16vw, 218px);
    width: 70px;
    height: 70px;
    font-size: 25px;
}

.avatar-frame {
    position: relative;
    width: clamp(160px, 19vw, 260px);
    aspect-ratio: 1;
    padding: 9px;
    border-radius: 50%;
    background:
        conic-gradient(from 120deg, #FFEFB0, #F4B93A, #B00020, #FFD54F, #FFEFB0);
    box-shadow:
        0 0 0 8px rgba(0, 0, 0, 0.28),
        0 0 0 13px rgba(255, 213, 79, 0.18),
        0 24px 48px rgba(0, 0, 0, 0.34),
        0 0 42px rgba(255, 213, 79, 0.3);
}

.avatar-frame::before,
.avatar-frame::after {
    content: '';
    position: absolute;
    inset: -18px;
    z-index: -1;
    border-radius: 50%;
    background: conic-gradient(from 90deg, transparent 0 15%, rgba(255, 213, 79, 0.62) 16% 22%, transparent 23% 50%, rgba(255, 23, 68, 0.5) 51% 58%, transparent 59% 100%);
    filter: blur(0.2px);
}

.avatar-frame::after {
    inset: -28px;
    opacity: 0.5;
    transform: rotate(24deg);
}

.avatar-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border: 4px solid rgba(10, 0, 0, 0.78);
    border-radius: 50%;
    background: #111;
}

.avatar-pair {
    display: flex;
    justify-content: center;
    gap: clamp(8px, 1vw, 16px);
}

.avatar-pair .avatar-frame {
    width: clamp(150px, 17vw, 238px);
}

.crown-frame {
    box-shadow:
        0 0 0 9px rgba(0, 0, 0, 0.34),
        0 0 0 15px rgba(255, 23, 68, 0.22),
        0 26px 54px rgba(0, 0, 0, 0.38),
        0 0 54px rgba(255, 213, 79, 0.38);
}

.rank-one-frame {
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.5), transparent 34%),
        conic-gradient(from 120deg, #FFF6B8, #FFD54F, #FF1744, #8A000A, #FFB300, #FFF6B8);
}

.rank-one-frame::before {
    inset: -30px;
    background:
        conic-gradient(from 0deg, transparent 0 6%, rgba(255, 213, 79, 0.95) 7% 11%, transparent 12% 22%, rgba(255, 23, 68, 0.7) 23% 28%, transparent 29% 40%, rgba(255, 213, 79, 0.95) 41% 45%, transparent 46% 61%, rgba(255, 23, 68, 0.6) 62% 67%, transparent 68% 82%, rgba(255, 213, 79, 0.9) 83% 88%, transparent 89% 100%);
    filter: drop-shadow(0 0 18px rgba(255, 213, 79, 0.36));
}

.rank-one-frame::after {
    inset: -40px;
    background: radial-gradient(circle, transparent 58%, rgba(255, 213, 79, 0.28) 60%, transparent 64%), conic-gradient(from 30deg, rgba(255, 213, 79, 0.35), transparent 18%, rgba(255, 23, 68, 0.28), transparent 45%, rgba(255, 213, 79, 0.3), transparent 78%, rgba(255, 23, 68, 0.25));
    opacity: 0.9;
}

.rank-two-frame {
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.44), transparent 34%),
        conic-gradient(from 120deg, #F8FAFC, #A7B0C0, #FFD54F, #6B7280, #FFFFFF, #F8FAFC);
    box-shadow:
        0 0 0 8px rgba(0, 0, 0, 0.28),
        0 0 0 13px rgba(226, 232, 240, 0.2),
        0 24px 48px rgba(0, 0, 0, 0.34),
        0 0 38px rgba(226, 232, 240, 0.28);
}

.rank-two-frame::before {
    inset: -24px;
    background:
        conic-gradient(from 45deg, transparent 0 10%, rgba(226, 232, 240, 0.7) 11% 16%, transparent 17% 35%, rgba(255, 213, 79, 0.62) 36% 42%, transparent 43% 58%, rgba(226, 232, 240, 0.65) 59% 65%, transparent 66% 82%, rgba(255, 213, 79, 0.56) 83% 88%, transparent 89% 100%);
    transform: rotate(12deg);
}

.rank-two-frame::after {
    inset: -34px;
    background: radial-gradient(circle, transparent 56%, rgba(226, 232, 240, 0.22) 58%, transparent 64%), conic-gradient(from 80deg, rgba(226, 232, 240, 0.28), transparent 25%, rgba(255, 213, 79, 0.2), transparent 54%, rgba(226, 232, 240, 0.2), transparent 100%);
    opacity: 0.88;
}

.rank-three-frame {
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.42), transparent 34%),
        conic-gradient(from 120deg, #BFFFEF, #22D3EE, #FFD54F, #0F766E, #86EFAC, #BFFFEF);
    box-shadow:
        0 0 0 8px rgba(0, 0, 0, 0.28),
        0 0 0 13px rgba(34, 211, 238, 0.16),
        0 24px 48px rgba(0, 0, 0, 0.34),
        0 0 40px rgba(34, 211, 238, 0.3);
}

.rank-three-frame::before {
    inset: -22px;
    background:
        conic-gradient(from 10deg, transparent 0 12%, rgba(34, 211, 238, 0.7) 13% 18%, transparent 19% 37%, rgba(255, 213, 79, 0.58) 38% 44%, transparent 45% 64%, rgba(134, 239, 172, 0.62) 65% 71%, transparent 72% 88%, rgba(34, 211, 238, 0.62) 89% 94%, transparent 95% 100%);
    transform: rotate(-10deg);
}

.rank-three-frame::after {
    inset: -32px;
    background: radial-gradient(circle, transparent 56%, rgba(34, 211, 238, 0.22) 58%, transparent 64%), conic-gradient(from 140deg, rgba(34, 211, 238, 0.26), transparent 22%, rgba(134, 239, 172, 0.18), transparent 54%, rgba(255, 213, 79, 0.2), transparent 100%);
    opacity: 0.82;
}

.recommend-card-info {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
    min-width: 0;
}

.recommend-title {
    margin-top: 42px;
    color: #FFE6A6;
    font-size: clamp(24px, 3.2vw, 46px);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: 1px;
    text-shadow: 0 4px 0 rgba(80, 0, 0, 0.45), 0 0 22px rgba(255, 213, 79, 0.28);
}

.recommend-name {
    margin-top: 8px;
    color: #FFFFFF;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
}

.recommend-meta {
    margin-top: 10px;
    padding: 8px 14px;
    color: #D8DFEF;
    background: rgba(7, 9, 17, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: clamp(12px, 1vw, 15px);
    font-weight: 800;
    line-height: 1.5;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 23, 68, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 23, 68, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.slide-content {
    text-align: center;
    z-index: 2;
    padding: 0 30px;
    animation: fadeInUp 1s ease;
}

.service-slide-content,
.fun-slide-content {
    padding: 34px;
}

.slide.active .slide-content {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-tag {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 23, 68, 0.18);
    border: 1px solid rgba(255, 23, 68, 0.45);
    border-radius: 30px;
    color: #FF1744;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 28px;
    text-shadow: 0 0 12px rgba(255, 23, 68, 0.6);
    animation: glow-pulse 2s ease-in-out infinite;
    box-shadow: 0 2px 15px rgba(255, 23, 68, 0.2);
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 2px 15px rgba(255, 23, 68, 0.2);
        border-color: rgba(255, 23, 68, 0.45);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 23, 68, 0.4);
        border-color: rgba(255, 23, 68, 0.65);
    }
}

.slide-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 100px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 28px;
    letter-spacing: 6px;
    text-shadow:
        0 0 30px rgba(255, 23, 68, 0.6),
        0 0 60px rgba(255, 23, 68, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(180deg, #ffffff 0%, #FF1744 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-desc {
    font-size: 24px;
    color: #FFD54F;
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(255, 213, 79, 0.3);
}

.slide-sub {
    font-size: 18px;
    color: #B8B8B8;
    margin-bottom: 48px;
    letter-spacing: 3px;
}

.slide-btn {
    padding: 16px 48px;
    background: linear-gradient(135deg, #FF1744 0%, #D50000 100%);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    border-radius: 35px;
    letter-spacing: 2px;
    box-shadow: 0 4px 35px rgba(255, 23, 68, 0.5), 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.slide-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 45px rgba(255, 23, 68, 0.7), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slide-btn:hover::before {
    left: 100%;
}

/* è½®æ’­æŽ§åˆ¶ */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 23, 68, 0.15);
    border: 1px solid rgba(255, 23, 68, 0.35);
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 20px;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(255, 23, 68, 0.2);
}

.slider-btn:hover {
    background: rgba(255, 23, 68, 0.35);
    box-shadow: 0 4px 25px rgba(255, 23, 68, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 50px;
}

.slider-btn.next {
    right: 50px;
}

.slider-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.dot.active {
    background: #FF1744;
    box-shadow: 0 0 20px rgba(255, 23, 68, 0.9), 0 2px 8px rgba(0, 0, 0, 0.2);
    width: 42px;
    border-radius: 7px;
}

/* ===== é€šç”¨ section ===== */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 50px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-en {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    color: #FF1744;
    letter-spacing: 5px;
    margin-bottom: 16px;
    text-shadow: 0 0 15px rgba(255, 23, 68, 0.6);
    font-weight: 500;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: 3px;
    text-shadow: 0 2px 15px rgba(255, 23, 68, 0.2);
}

.title-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FF1744, #FFD54F, #FF1744, transparent);
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(255, 23, 68, 0.7);
    border-radius: 2px;
}

/* ===== å¿«æ·å…¥å£ ===== */
.quick-access {
    position: relative;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.quick-card {
    position: relative;
    background: linear-gradient(135deg, rgba(32, 10, 21, 0.85) 0%, rgba(10, 14, 26, 0.95) 100%);
    border: 1px solid rgba(255, 23, 68, 0.25);
    border-radius: 18px;
    padding: 45px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 23, 68, 0.1);
}

.quick-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 23, 68, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quick-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 23, 68, 0.65);
    box-shadow: 0 12px 45px rgba(255, 23, 68, 0.35), 0 4px 15px rgba(0, 0, 0, 0.2);
}

.quick-card:hover::before {
    opacity: 1;
}

.quick-card:hover .card-glow {
    opacity: 1;
}

.quick-icon {
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 0 12px rgba(255, 23, 68, 0.6));
    color: #FF1744;
    line-height: 1;
}

.quick-icon svg {
    width: 62px;
    height: 62px;
    display: block;
    stroke: currentColor;
    transition: transform 0.4s ease;
}

.quick-card:hover .quick-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 18px rgba(255, 23, 68, 0.9));
}

.quick-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.quick-desc {
    font-size: 14px;
    color: #9A9A9A;
    line-height: 1.6;
}

.card-glow {
    position: absolute;
    bottom: -60%;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255, 23, 68, 0.35) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* ===== å…³äºŽæˆ‘ä»¬ ===== */
.about-us {
    position: relative;
}

.about-desc {
    text-align: center;
    font-size: 20px;
    color: #fff;
    line-height: 1.9;
    max-width: 1000px;
    margin: 0 auto 70px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 70px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(32, 10, 21, 0.7) 0%, rgba(10, 14, 26, 0.9) 100%);
    border: 1px solid rgba(255, 23, 68, 0.25);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 23, 68, 0.1);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 23, 68, 0.55);
    box-shadow: 0 10px 35px rgba(255, 23, 68, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 45px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 23, 68, 0.6));
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 14px;
    color: #9A9A9A;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 50px 45px;
    background: linear-gradient(135deg, rgba(32, 10, 21, 0.7) 0%, rgba(10, 14, 26, 0.9) 100%);
    border: 1px solid rgba(255, 23, 68, 0.25);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(255, 23, 68, 0.15);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', 'Noto Sans SC', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: #FFD54F;
    margin-bottom: 12px;
    text-shadow: 0 0 25px rgba(255, 213, 79, 0.5), 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 3px;
}

.stat-number:empty,
.stat-number[data-static] {
    font-family: 'Orbitron', sans-serif;
}

/* æ•°æ®åŽç¼€é†’ç›®æ ·å¼ */
.stat-number::after {
    content: attr(data-suffix);
    color: #FF1744;
    font-size: 32px;
    font-weight: 900;
    margin-left: 6px;
    text-shadow: 0 0 15px rgba(255, 23, 68, 0.9), 0 0 25px rgba(255, 23, 68, 0.5);
    vertical-align: super;
    animation: suffix-pulse 1.5s ease-in-out infinite;
}

@keyframes suffix-pulse {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 15px rgba(255, 23, 68, 0.9), 0 0 25px rgba(255, 23, 68, 0.5);
    }
    50% {
        opacity: 0.8;
        text-shadow: 0 0 20px rgba(255, 23, 68, 1), 0 0 35px rgba(255, 23, 68, 0.7);
    }
}

.stat-label {
    font-size: 16px;
    color: #C8C8C8;
    letter-spacing: 2px;
}

/* ===== å“ç‰Œæ•…äº‹ ===== */
.brand-story {
    margin-top: 90px;
    padding: 60px 50px;
    background:
        linear-gradient(135deg, rgba(32, 10, 21, 0.8) 0%, rgba(10, 14, 26, 0.95) 100%);
    border: 1px solid rgba(255, 23, 68, 0.25);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 35px rgba(255, 23, 68, 0.15);
}

.brand-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, #FF1744, #FFD54F, #FF1744, transparent);
    box-shadow: 0 0 25px rgba(255, 23, 68, 0.6);
}

.brand-story::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 23, 68, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.story-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 5px;
    position: relative;
    padding-bottom: 25px;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF1744, #FFD54F);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 23, 68, 0.7);
}

.story-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.story-paragraph {
    color: #C8C8C8;
    font-size: 16px;
    line-height: 2.1;
    margin-bottom: 24px;
    text-align: justify;
    text-indent: 2em;
}

.story-paragraph:last-child {
    margin-bottom: 0;
}

.story-highlight {
    color: #FF1744;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 23, 68, 0.4);
    padding: 0 3px;
}

.story-date {
    color: #FFD54F;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 213, 79, 0.4);
}

.story-joke {
    color: #8A8A8A;
    font-style: italic;
    text-align: center;
    text-indent: 0;
    padding: 20px 30px;
    margin: 28px auto;
    background: rgba(255, 23, 68, 0.08);
    border-left: 4px solid #FF1744;
    border-radius: 6px;
    font-size: 15px;
    position: relative;
    max-width: 800px;
}

.story-joke::before {
    content: "😂";
    margin-right: 10px;
    font-size: 18px;
}

/* ===== åŠ å…¥æˆ‘ä»¬ ===== */
.join-us {
    position: relative;
}

.join-card {
    background: linear-gradient(135deg, rgba(32, 10, 21, 0.8) 0%, rgba(10, 14, 26, 0.95) 100%);
    border: 1px solid rgba(255, 23, 68, 0.35);
    border-radius: 24px;
    padding: 60px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 4px 50px rgba(255, 23, 68, 0.2);
    position: relative;
    overflow: hidden;
}

.join-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, #FF1744, #FFD54F, #FF1744, transparent);
    box-shadow: 0 0 25px rgba(255, 23, 68, 0.6);
}

.join-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.join-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF1744 0%, #D50000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 25px rgba(255, 23, 68, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.join-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
}

.join-desc {
    color: #C8C8C8;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 36px;
    letter-spacing: 1px;
}

.join-requirements {
    background: linear-gradient(135deg, rgba(32, 10, 21, 0.7) 0%, rgba(10, 14, 26, 0.9) 100%);
    border: 1px solid rgba(255, 23, 68, 0.25);
    border-radius: 16px;
    padding: 28px 32px;
    flex: 1;
    min-width: 0;
}

.join-content {
    display: flex;
    align-items: stretch;
    gap: 28px;
    margin-bottom: 28px;
}

.requirements-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 2px;
    padding-bottom: 14px;
    border-bottom: 2px dashed rgba(255, 23, 68, 0.35);
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.requirements-list li {
    color: #C8C8C8;
    font-size: 15px;
    line-height: 1.7;
    display: flex;
    align-items: center;
    gap: 14px;
    letter-spacing: 0.5px;
}

.req-dot {
    width: 10px;
    height: 10px;
    background: #FF1744;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.7);
}

.req-dot.highlight {
    background: #FFD54F;
    box-shadow: 0 0 12px rgba(255, 213, 79, 0.9);
    animation: dot-pulse 1.5s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.4); }
}

.req-highlight {
    color: #FFD54F !important;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 213, 79, 0.4);
}

.join-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    flex-wrap: wrap;
}

.join-note {
    color: #9A9A9A;
    font-size: 15px;
    letter-spacing: 1px;
    flex: 1;
    min-width: 220px;
    text-align: center;
    margin-top: 10px;
    padding-top: 25px;
    border-top: 2px dashed rgba(255, 23, 68, 0.25);
}

.join-qr {
    width: 200px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, rgba(32, 10, 21, 0.7) 0%, rgba(10, 14, 26, 0.9) 100%);
    border: 1px solid rgba(255, 23, 68, 0.25);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.join-qr:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 23, 68, 0.55);
    box-shadow: 0 10px 25px rgba(255, 23, 68, 0.3);
}

.join-qr-img {
    width: 160px;
    height: 160px;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 0 25px rgba(255, 23, 68, 0.4);
    display: block;
    margin-bottom: 12px;
}

.join-qr-label {
    font-size: 14px;
    color: #FF1744;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 23, 68, 0.4);
    font-weight: 700;
}

/* ===== è”ç³»æ–¹å¼ ===== */
.contact {
    position: relative;
}

.contact-desc {
    text-align: center;
    font-size: 18px;
    color: #fff;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.qr-grid {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    justify-content: center;
    gap: 48px;
    margin-bottom: 35px;
}

.qr-card {
    position: relative;
    background: linear-gradient(135deg, rgba(32, 10, 21, 0.8) 0%, rgba(10, 14, 26, 0.95) 100%);
    border: 1px solid rgba(255, 23, 68, 0.25);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(255, 23, 68, 0.12);
}

.qr-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 23, 68, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.qr-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 23, 68, 0.55);
    box-shadow: 0 14px 35px rgba(255, 23, 68, 0.3);
}

.qr-card:hover::before {
    opacity: 1;
}

.qr-wrapper {
    width: 100%;
    aspect-ratio: 1;
    background: #fff;
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(255, 23, 68, 0.2);
}

.qr-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.qr-info {
    position: relative;
    z-index: 1;
}

.qr-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.qr-tag {
    font-size: 13px;
    color: #9A9A9A;
    line-height: 1.6;
}

.qr-hint {
    text-align: center;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    margin-top: 25px;
}

/* ===== äºŒç»´ç æ”¾å¤§æ¨¡æ€æ¡† ===== */
.qr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.qr-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.qr-modal-content {
    background: linear-gradient(135deg, #200A15 0%, #0A0E1A 100%);
    border: 2px solid #FF1744;
    border-radius: 28px;
    padding: 60px 50px 50px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow:
        0 0 70px rgba(255, 23, 68, 0.6),
        0 0 140px rgba(255, 23, 68, 0.3),
        0 25px 70px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.qr-modal.show .qr-modal-content {
    transform: scale(1);
}

.qr-modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: transparent;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.qr-modal-close:hover {
    background: rgba(255, 23, 68, 0.25);
    color: #FF1744;
    transform: rotate(90deg);
}

.qr-modal-image-wrapper {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    margin-bottom: 28px;
    box-shadow: 0 0 50px rgba(255, 23, 68, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-modal-img {
    width: 100%;
    max-width: 360px;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    display: block;
}

.qr-modal-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-shadow: 0 0 18px rgba(255, 23, 68, 0.5);
}

.qr-modal-tag {
    font-size: 15px;
    color: #9A9A9A;
    margin-bottom: 25px;
}

.qr-modal-hint {
    font-size: 14px;
    color: #FF1744;
    letter-spacing: 1px;
    padding: 12px 18px;
    background: rgba(255, 23, 68, 0.12);
    border: 1px solid rgba(255, 23, 68, 0.35);
    border-radius: 22px;
    display: inline-block;
}

/* ===== é¡µè„š ===== */
.footer {
    border-top: 1px solid rgba(255, 23, 68, 0.18);
    padding: 70px 0 35px;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 70px;
    margin-bottom: 45px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.footer-desc {
    font-size: 15px;
    color: #9A9A9A;
    line-height: 1.8;
    margin-bottom: 28px;
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 23, 68, 0.12);
    border: 1px solid rgba(255, 23, 68, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 23, 68, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(255, 23, 68, 0.5);
}

.footer-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: #FF1744;
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.7);
    border-radius: 2px;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #9A9A9A;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: #FF1744;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 23, 68, 0.12);
}

.footer-bottom p {
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
}

/* ===== ç‚¹å•é¡»çŸ¥ ===== */
.order-guide {
    position: relative;
}

.guide-desc,
.fun-desc,
.store-desc,
.recharge-desc {
    text-align: center;
    font-size: 18px;
    color: #fff;
    margin-bottom: 70px;
    letter-spacing: 1px;
}

.guide-steps {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 70px;
    flex-wrap: wrap;
}

.guide-step {
    flex: 1;
    min-width: 220px;
    background: linear-gradient(135deg, rgba(32, 10, 21, 0.8) 0%, rgba(10, 14, 26, 0.95) 100%);
    border: 1px solid rgba(255, 23, 68, 0.25);
    border-radius: 20px;
    padding: 38px 28px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(255, 23, 68, 0.1);
}

.guide-step:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 23, 68, 0.55);
    box-shadow: 0 12px 35px rgba(255, 23, 68, 0.25);
}

.step-number {
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: rgba(255, 23, 68, 0.25);
}

.step-icon {
    font-size: 52px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 12px rgba(255, 23, 68, 0.6));
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 14px;
    color: #9A9A9A;
    line-height: 1.7;
}

.step-arrow {
    align-self: center;
    color: #FF1744;
    font-size: 28px;
    text-shadow: 0 0 12px rgba(255, 23, 68, 0.7);
    flex-shrink: 0;
}

.guide-notes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 35px 35px;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.08) 0%, rgba(10, 14, 26, 0.6) 100%);
    border: 1px solid rgba(255, 23, 68, 0.18);
    border-radius: 20px;
}

.note-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #C8C8C8;
    font-size: 15px;
    line-height: 1.7;
}

.note-icon {
    font-size: 24px;
    flex-shrink: 0;
}

/* ===== å¼€å¡è§„åˆ™ ===== */
.card-rules {
    margin-top: 60px;
    padding: 35px 42px;
    background: linear-gradient(135deg, rgba(32, 10, 21, 0.8) 0%, rgba(10, 14, 26, 0.95) 100%);
    border: 1px solid rgba(255, 23, 68, 0.35);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 35px rgba(255, 23, 68, 0.18);
}

.card-rules::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FF1744, #FFD54F, #FF1744, transparent);
    box-shadow: 0 0 20px rgba(255, 23, 68, 0.6);
}

.rules-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 2px dashed rgba(255, 23, 68, 0.35);
}

.rules-block {
    margin-bottom: 28px;
}

.rules-block:last-of-type {
    margin-bottom: 24px;
}

.rules-block-title {
    font-size: 17px;
    font-weight: 700;
    color: #FF1744;
    margin-bottom: 16px;
    letter-spacing: 3px;
    padding-left: 14px;
    border-left: 4px solid #FF1744;
    text-shadow: 0 0 10px rgba(255, 23, 68, 0.4);
}

.rules-text {
    color: #C8C8C8;
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: 0.5px;
    text-align: justify;
}

.rules-text strong {
    color: #FFD54F;
    font-weight: 700;
}

.rules-warning {
    background: linear-gradient(135deg, rgba(255, 213, 79, 0.1) 0%, rgba(255, 23, 68, 0.08) 100%);
    border: 1px solid rgba(255, 213, 79, 0.35);
    border-radius: 12px;
    padding: 18px 24px;
    margin-top: 14px;
}

.rules-warning .rules-block-title {
    color: #FFD54F;
    border-left-color: #FFD54F;
    text-shadow: 0 0 10px rgba(255, 213, 79, 0.4);
}

.rules-icon {
    font-size: 26px;
    filter: drop-shadow(0 0 10px rgba(255, 23, 68, 0.6));
}

.rules-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    text-shadow: 0 0 12px rgba(255, 23, 68, 0.4);
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rules-list li {
    color: #C8C8C8;
    font-size: 16px;
    line-height: 1.7;
    display: flex;
    align-items: center;
    gap: 14px;
    letter-spacing: 0.5px;
}

.rule-dot {
    width: 10px;
    height: 10px;
    background: #FF1744;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.7);
}

.rule-label {
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
    min-width: 80px;
    text-shadow: 0 0 8px rgba(255, 23, 68, 0.25);
}

.rules-extra {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(255, 213, 79, 0.1) 0%, rgba(255, 23, 68, 0.08) 100%);
    border: 1px solid rgba(255, 213, 79, 0.35);
    border-radius: 12px;
    margin-top: 6px;
}

.extra-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.extra-text {
    color: #FFD54F;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(255, 213, 79, 0.25);
    font-weight: 600;
}

.rules-toggle-all {
    margin-left: auto;
    padding: 9px 18px;
    background: rgba(255, 23, 68, 0.14);
    border: 1px solid rgba(255, 23, 68, 0.42);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 999px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.rules-toggle-all:hover {
    background: rgba(255, 23, 68, 0.28);
    box-shadow: 0 0 24px rgba(255, 23, 68, 0.35);
    transform: translateY(-2px);
}

.rules-tip {
    color: #8F96A8;
    font-size: 14px;
    margin: -10px 0 24px;
    letter-spacing: 1px;
}

.rules-accordion {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.accordion-item {
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.78), rgba(32, 10, 21, 0.78));
    border: 1px solid rgba(255, 23, 68, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover,
.accordion-item.open {
    border-color: rgba(255, 23, 68, 0.48);
    box-shadow: 0 10px 30px rgba(255, 23, 68, 0.16);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
}

.accordion-title {
    flex: 1;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.accordion-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 23, 68, 0.12);
    border-radius: 10px;
    font-size: 17px;
}

.accordion-arrow {
    color: #FF1744;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid transparent;
    transition: max-height 0.36s ease, padding 0.36s ease;
}

.accordion-content p {
    color: #BFC5D6;
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.4px;
    text-align: justify;
}

.accordion-item.open .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-item.open .accordion-content {
    max-height: 900px;
    padding: 0 20px 20px;
    border-top-color: rgba(255, 23, 68, 0.12);
}

.rights-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 20px;
    color: #D8DFEF;
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.4px;
}

.rights-list li::marker {
    color: #FFD54F;
}

.rule-highlight {
    color: #FFD54F;
    font-weight: 900;
    text-shadow: 0 0 14px rgba(255, 213, 79, 0.28);
}

.rule-danger {
    color: #FF6B7D;
    font-weight: 900;
    text-shadow: 0 0 14px rgba(255, 23, 68, 0.22);
}

.rule-safe {
    color: #86EFAC;
    font-weight: 900;
    text-shadow: 0 0 14px rgba(134, 239, 172, 0.22);
}

.accordion-item-warning {
    margin-top: 16px;
    background: linear-gradient(135deg, rgba(255, 213, 79, 0.1), rgba(255, 23, 68, 0.1));
    border-color: rgba(255, 213, 79, 0.45);
}

.accordion-item-warning .accordion-title,
.accordion-item-warning .accordion-arrow {
    color: #FFD54F;
}

.store,
.recharge {
    position: relative;
}

.store-search {
    max-width: 720px;
    margin: 0 auto 26px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px 12px 20px;
    background: rgba(10, 14, 26, 0.72);
    border: 1px solid rgba(255, 23, 68, 0.28);
    border-radius: 999px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
}

.search-input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: 0;
    outline: 0;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
}

.search-input::placeholder {
    color: #70788C;
}

.search-btn,
.store-btn {
    color: #fff;
    background: linear-gradient(135deg, #FF1744 0%, #D50000 100%);
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 10px 28px rgba(255, 23, 68, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-btn {
    padding: 10px 26px;
    border-radius: 999px;
}

.search-btn:hover,
.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(255, 23, 68, 0.42);
}

.store-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 44px;
}

.filter-btn {
    padding: 10px 20px;
    color: #BFC5D6;
    background: rgba(255, 23, 68, 0.08);
    border: 1px solid rgba(255, 23, 68, 0.2);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    color: #fff;
    background: rgba(255, 23, 68, 0.24);
    border-color: rgba(255, 23, 68, 0.55);
    box-shadow: 0 8px 26px rgba(255, 23, 68, 0.2);
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.store-card {
    position: relative;
    min-height: 360px;
    padding: 34px 26px 28px;
    background: linear-gradient(155deg, rgba(32, 10, 21, 0.86), rgba(10, 14, 26, 0.96));
    border: 1px solid rgba(255, 23, 68, 0.24);
    border-radius: 22px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22), 0 4px 22px rgba(255, 23, 68, 0.1);
    transition: all 0.35s ease;
}

.store-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 23, 68, 0.58);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25), 0 12px 34px rgba(255, 23, 68, 0.24);
}

.store-card.hide {
    display: none;
}

.store-avatar {
    width: 86px;
    height: 86px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.22), rgba(255, 213, 79, 0.09));
    border: 1px solid rgba(255, 23, 68, 0.28);
    border-radius: 24px;
    font-size: 42px;
    box-shadow: 0 0 28px rgba(255, 23, 68, 0.18);
}

.store-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 12px;
    color: #201300;
    background: linear-gradient(135deg, #FFD54F, #FFAB00);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
}

.store-badge.silver {
    color: #111827;
    background: linear-gradient(135deg, #E5E7EB, #9CA3AF);
}

.store-badge.top {
    color: #fff;
    background: linear-gradient(135deg, #FF1744, #8B0000);
}

.store-name {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.store-game,
.rating-count,
.store-price span {
    color: #8F96A8;
}

.store-game {
    font-size: 14px;
    margin-bottom: 12px;
}

.store-rating {
    color: #FFD54F;
    font-size: 14px;
    margin-bottom: 16px;
}

.store-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.tag {
    padding: 5px 10px;
    color: #FFB4C0;
    background: rgba(255, 23, 68, 0.12);
    border: 1px solid rgba(255, 23, 68, 0.2);
    border-radius: 999px;
    font-size: 12px;
}

.store-price {
    color: #FFD54F;
    font-family: 'Orbitron', 'Noto Sans SC', sans-serif;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
}

.store-price span {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 13px;
    font-weight: 500;
    margin-left: 3px;
}

.store-btn {
    width: 100%;
    padding: 13px 18px;
    border-radius: 14px;
}

.store-empty {
    grid-column: 1 / -1;
    padding: 38px 24px;
    color: #9EA7BC;
    text-align: center;
    background: rgba(10, 14, 26, 0.62);
    border: 1px dashed rgba(255, 23, 68, 0.28);
    border-radius: 18px;
}

.vip-table-wrapper,
.recharge-activity,
.recharge-notice {
    background: linear-gradient(145deg, rgba(32, 10, 21, 0.84), rgba(10, 14, 26, 0.96));
    border: 1px solid rgba(255, 23, 68, 0.28);
    border-radius: 22px;
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24), 0 4px 26px rgba(255, 23, 68, 0.12);
    overflow: hidden;
}

.vip-header {
    padding: 34px 28px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 23, 68, 0.14);
}

.vip-tag {
    display: inline-flex;
    padding: 7px 18px;
    color: #FFD54F;
    background: rgba(255, 213, 79, 0.1);
    border: 1px solid rgba(255, 213, 79, 0.28);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.vip-title {
    color: #fff;
    font-size: 27px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.vip-subtitle {
    color: #FFB4C0;
    font-size: 14px;
    letter-spacing: 1px;
}

.vip-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.vip-table,
.recharge-table {
    width: 100%;
    border-collapse: collapse;
}

.vip-table {
    min-width: 980px;
}

.vip-table th,
.vip-table td,
.recharge-table th,
.recharge-table td {
    padding: 16px 14px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 23, 68, 0.1);
}

.vip-table th,
.recharge-table th {
    color: #fff;
    background: rgba(255, 23, 68, 0.16);
    font-weight: 800;
    letter-spacing: 1px;
}

.vip-table td,
.recharge-table td {
    color: #C8D0E2;
    font-size: 14px;
}

.vip-row-head {
    position: sticky;
    left: 0;
    z-index: 2;
    color: #FFD54F !important;
    background: rgba(22, 13, 25, 0.98) !important;
    min-width: 150px;
    box-shadow: 8px 0 20px rgba(0, 0, 0, 0.22);
}

.vip-th-sub,
.recharge-arrival {
    color: #FFD54F !important;
    font-weight: 900;
}

.recharge-bottom {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 28px;
    margin-top: 34px;
}

.recharge-benefits {
    display: grid;
    gap: 30px;
}

.prepay-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 26px;
}

.prepay-card {
    position: relative;
    min-height: 205px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 24px 24px;
    background: radial-gradient(circle at 50% 0%, rgba(255, 23, 68, 0.16), transparent 42%), rgba(18, 4, 10, 0.76);
    border: 1px solid rgba(255, 23, 68, 0.48);
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025), 0 18px 42px rgba(0, 0, 0, 0.18);
    overflow: visible;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.prepay-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 23, 68, 0.82);
    box-shadow: 0 24px 54px rgba(255, 23, 68, 0.14), 0 18px 42px rgba(0, 0, 0, 0.24);
}

.prepay-card.recommended {
    border-color: rgba(255, 23, 68, 0.72);
}

.prepay-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 18px;
    color: #fff;
    background: linear-gradient(135deg, #FF1744, #EC0038);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(255, 23, 68, 0.3);
}

.prepay-amount {
    color: #fff;
    font-family: 'Orbitron', 'Noto Sans SC', sans-serif;
    font-size: clamp(30px, 3vw, 38px);
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
}

.prepay-gift {
    margin-top: 10px;
    color: #FF5A72;
    font-size: 16px;
    font-weight: 800;
}

.prepay-arrival {
    margin-top: 18px;
    color: #7D8496;
    font-size: 14px;
    font-weight: 700;
}


.recharge-notice.compact {
    margin: 22px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 213, 79, 0.18);
    box-shadow: none;
}

.consume-benefit {
    margin-top: 0;
}

.consume-table {
    min-width: 820px;
}

.consume-table th:nth-child(1),
.consume-table td:nth-child(1) {
    width: 130px;
}

.consume-table th:nth-child(2),
.consume-table td:nth-child(2) {
    width: 95px;
}

.consume-table td:nth-child(3) {
    text-align: left;
    line-height: 1.8;
}

.vip-level {
    color: #FFD54F !important;
    font-family: 'Orbitron', 'Noto Sans SC', sans-serif;
    font-weight: 900;
}

.vip-matrix-table {
    min-width: 940px;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid rgba(255, 23, 68, 0.42);
    background: rgba(10, 14, 26, 0.9);
    box-shadow: inset 0 0 30px rgba(255, 23, 68, 0.06), 0 0 26px rgba(255, 23, 68, 0.08);
}

.vip-matrix-table th,
.vip-matrix-table td {
    padding: 12px 10px;
    border-right: 1px solid rgba(255, 23, 68, 0.24);
    border-bottom: 1px solid rgba(255, 23, 68, 0.24);
    color: #E2E8F0;
    background: rgba(16, 20, 34, 0.76);
    font-size: 13px;
    line-height: 1.45;
}

.vip-matrix-table th {
    color: #FFFFFF;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.22), rgba(255, 213, 79, 0.08));
    font-weight: 900;
}

.vip-matrix-table th:last-child,
.vip-matrix-table td:last-child {
    border-right: none;
}

.vip-matrix-table tbody tr:last-child td {
    border-bottom: none;
}

.vip-matrix-table .vip-row-head {
    min-width: 128px;
    color: #FFD54F !important;
    background: rgba(22, 13, 25, 0.98) !important;
    box-shadow: 8px 0 20px rgba(0, 0, 0, 0.24);
    font-weight: 900;
}

.vip-matrix-table tbody td:not(.vip-row-head) {
    font-family: 'Orbitron', 'Noto Sans SC', sans-serif;
    font-weight: 800;
}

.vip-matrix-table tbody td:not(.vip-row-head):not(:empty) {
    color: #FFFFFF;
}

.vip-matrix-table .vip-th-sub {
    display: inline-block;
    margin-top: 3px;
    color: #FFD54F !important;
    font-size: 11px;
}

.vip-note {
    margin: 0;
    padding: 18px 24px 22px;
    color: #FFB4C0;
    border-top: 1px solid rgba(255, 23, 68, 0.14);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.8;
}

.recharge-activity-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 26px;
    border-bottom: 1px solid rgba(255, 23, 68, 0.14);
}

.recharge-activity-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 23, 68, 0.14);
    border-radius: 13px;
    font-size: 22px;
}

.recharge-activity-title,
.recharge-notice-title {
    color: #fff;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 2px;
}

.recharge-notice {
    padding: 28px 30px;
}

.recharge-notice-title {
    margin-bottom: 18px;
}

.recharge-notice-list {
    padding-left: 20px;
}

.recharge-notice-list li {
    color: #C8D0E2;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 10px;
    letter-spacing: 0.4px;
}

@media (max-width: 1200px) {
    .nav-container { padding: 16px 26px; }
    .nav-menu { gap: 2px; }
    .nav-item a { padding: 9px 12px; font-size: 14px; }
    .section-container { padding: 96px 32px; }
    .quick-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .store-grid,
    .qr-grid,
    .stats-grid,
    .features-grid,
    .prepay-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    .brand-en { display: none; }
    .nav-toggle { display: flex; z-index: 1002; }
    .nav-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
    .nav-menu {
        position: fixed;
        top: 78px;
        left: 16px;
        right: 16px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 18px;
        background: rgba(10, 14, 26, 0.96);
        border: 1px solid rgba(255, 23, 68, 0.26);
        border-radius: 20px;
        box-shadow: 0 20px 54px rgba(0, 0, 0, 0.42), 0 0 30px rgba(255, 23, 68, 0.16);
        backdrop-filter: blur(22px);
        transform: translateY(-16px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.28s ease, transform 0.28s ease;
    }
    .nav-menu.active { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .nav-item a { text-align: center; padding: 12px 10px; background: rgba(255, 255, 255, 0.03); }
    .banner { min-height: 620px; height: 88vh; }
    .service-slide-content,
    .fun-slide-content,
    .season-slide-content { padding: 26px; }
    .season-highlights { gap: 8px; margin-top: 18px; }
    .service-points { width: min(540px, 100%); }
    .recommend-content { width: calc(100% - 52px); padding-top: 34px; }
    .recommend-board { grid-template-columns: 1fr 1.25fr 1fr; gap: 20px; }
    .avatar-frame { width: clamp(116px, 20vw, 180px); padding: 7px; }
    .avatar-pair .avatar-frame { width: clamp(112px, 18vw, 170px); }
    .recommend-card.rank-1 { transform: translateY(-8px); }
    .recommend-card.rank-2,
    .recommend-card.rank-3 { transform: translateY(28px); }
    .recommend-title { margin-top: 34px; font-size: clamp(19px, 3vw, 30px); }
    .recommend-name { font-size: clamp(15px, 2vw, 22px); }
    .rank-label { width: 48px; height: 48px; font-size: 17px; }
    .rank-1 .rank-label { width: 56px; height: 56px; font-size: 19px; }
    .slide-title { font-size: clamp(48px, 11vw, 78px); letter-spacing: 3px; }
    .slide-desc { font-size: 20px; }
    .slider-btn { display: none; }
    .guide-steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .step-arrow { display: none; }
    .guide-notes,
    .rules-accordion,
    .recharge-bottom { grid-template-columns: 1fr; }
    .join-card,
    .brand-story { padding: 42px 30px; }
    .join-content { flex-direction: column; }
    .join-qr { width: 100%; }
    .join-qr-img { width: 180px; height: 180px; }
}

@media (max-width: 640px) {
    .nav-container { padding: 12px 16px; }
    .logo-box { width: 40px; height: 40px; font-size: 22px; border-radius: 10px; }
    .brand-name { font-size: 17px; }
    .nav-menu { top: 66px; left: 12px; right: 12px; grid-template-columns: 1fr; }
    .banner { min-height: 560px; height: 86vh; }
    .service-slide-content,
    .fun-slide-content,
    .season-slide-content { padding: 20px 16px; }
    .season-highlights { gap: 4px; margin-top: 12px; }
    .season-highlights span { padding: 4px 7px; font-size: 12px; }
    .service-points { grid-template-columns: 1fr; gap: 8px; margin-top: 16px; }
    .service-point { padding: 10px; }
    .service-point strong { font-size: 20px; }
    .service-point span { margin-top: 5px; font-size: 12px; }
    .fun-slide-tags { gap: 6px; margin-top: 12px; }
    .fun-slide-tags span { padding: 6px 9px; font-size: 12px; }
    .fun-slide-price { padding: 6px 12px; font-size: 24px; }
    .recommend-content { width: calc(100% - 32px); padding-top: 72px; }
    .recommend-kicker { padding: 8px 18px; font-size: 24px; letter-spacing: 2px; }
    .recommend-board { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 24px; }
    .recommend-card.rank-1 { transform: translateY(-6px); }
    .recommend-card.rank-2,
    .recommend-card.rank-3 { transform: translateY(16px); }
    .avatar-frame { width: 92px; padding: 5px; box-shadow: 0 0 0 4px rgba(0,0,0,0.28), 0 12px 24px rgba(0,0,0,0.3), 0 0 24px rgba(255,213,79,0.22); }
    .avatar-pair { gap: 0; }
    .avatar-pair .avatar-frame { width: 78px; }
    .avatar-frame::before,
    .avatar-frame::after { display: none; }
    .avatar-frame img { border-width: 3px; }
    .rank-label { top: 80px; width: 34px; height: 34px; font-size: 12px; border-width: 2px; }
    .rank-1 .rank-label { top: 68px; width: 40px; height: 40px; font-size: 13px; }
    .recommend-title { margin-top: 24px; font-size: 15px; line-height: 1.25; }
    .recommend-name { margin-top: 5px; font-size: 13px; letter-spacing: 0; }
    .recommend-subtitle { margin-top: 8px; padding: 6px 10px; font-size: 11px; letter-spacing: 0; }
    .recommend-meta { display: none; }
    .slide-content { padding: 0 18px; }
    .service-slide-content,
    .fun-slide-content { padding: 20px 16px; }
    .slide-tag { padding: 8px 18px; font-size: 13px; margin-bottom: 22px; }
    .slide-title { font-size: clamp(42px, 15vw, 62px); margin-bottom: 18px; letter-spacing: 2px; }
    .slide-desc { font-size: 17px; line-height: 1.6; }
    .slide-sub { font-size: 14px; margin-bottom: 34px; letter-spacing: 2px; }
    .slide-btn { width: 100%; max-width: 280px; padding: 14px 28px; font-size: 15px; }
    .slider-dots { bottom: 34px; }
    .section-container { padding: 72px 16px; }
    .section-header { margin-bottom: 44px; }
    .section-en { font-size: 12px; letter-spacing: 3px; }
    .section-title { font-size: 32px; letter-spacing: 1px; }
    .quick-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
    .store-grid,
    .qr-grid,
    .stats-grid,
    .features-grid,
    .guide-steps,
    .guide-notes,
    .prepay-grid { grid-template-columns: 1fr; gap: 16px; }
    .prepay-grid { padding: 18px; }
    .prepay-card { min-height: 188px; }
    .quick-card { padding: 30px 20px; }
    .guide-desc,
    .fun-desc,
    .store-desc,
    .recharge-desc,
    .about-desc,
    .contact-desc { font-size: 15px; line-height: 1.8; margin-bottom: 42px; }
    .guide-notes,
    .card-rules,
    .stats-grid,
    .brand-story,
    .join-card,
    .recharge-notice { padding: 26px 18px; border-radius: 18px; }
    .rules-header { flex-wrap: wrap; gap: 10px; }
    .rules-toggle-all { width: 100%; margin-left: 0; }
    .accordion-header { padding: 16px 14px; }
    .accordion-item.open .accordion-content { padding: 0 14px 16px; max-height: 900px; }
    .store-search { border-radius: 18px; padding: 12px; align-items: stretch; flex-wrap: wrap; }
    .search-input { flex-basis: calc(100% - 34px); }
    .search-btn { width: 100%; }
    .store-filters { justify-content: flex-start; gap: 10px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
    .filter-btn { flex: 0 0 auto; }
    .store-card { min-height: auto; padding: 32px 22px 24px; }
    .vip-header { padding: 26px 18px 20px; }
    .vip-title { font-size: 22px; line-height: 1.5; }
    .vip-table th,
    .vip-table td,
    .recharge-table th,
    .recharge-table td { padding: 13px 11px; font-size: 13px; }
    .recharge-activity-header { padding: 20px 18px; }
    .story-title,
    .join-title { font-size: 26px; }
    .story-paragraph { text-align: left; text-indent: 0; font-size: 15px; line-height: 1.9; }
    .story-joke { padding: 16px; }
    .join-header { align-items: flex-start; flex-direction: column; }
    .join-requirements { padding: 22px 18px; }
    .requirements-list li { align-items: flex-start; }
    .qr-modal { padding: 14px; }
    .qr-modal-content { padding: 52px 18px 28px; border-radius: 22px; }
    .qr-modal-image-wrapper { padding: 16px; }
    .qr-modal-title { font-size: 22px; }
    .footer { padding: 42px 0 28px; }
    .footer-container { padding: 0 16px; }
}

