/* --- 全局重置 --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(to top, #30cfd0 0%, #330867 100%);
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 导航 --- */
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(43, 86, 246, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 70px;
    display: flex;
    align-items: center;
    width: 100%;
}

.nav-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    height: 40px;
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #fff;
    font-size: 15px;
    opacity: 0.9;
    transition: 0.3s;
}

.nav-links a:hover {
    opacity: 1;
    font-weight: bold;
}

/* --- Hero --- */
.hero-section {
    position: relative;
    width: 100%;
    padding-top: 70px;
    padding-bottom: 120px;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
}

.hero-content-left {
    flex: 1;
    max-width: 680px;
    margin-top: 0;
}

.hero-main-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 22px;
    background: rgba(0,0,0,0.18);
    padding: 18px 20px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 10px 28px rgba(0,0,0,0.16);
}

/* --- 首页奖励亮点 --- */
.reward-highlight {
    margin: 0 auto 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
}

.reward-card {
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 226, 103, 0.38);
    border-radius: 14px;
    padding: 14px 12px;
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    transition: all 0.25s ease;
}

.reward-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 226, 103, 0.7);
}

.reward-card strong {
    display: block;
    font-size: 17px;
    color: #ffe267;
    margin-bottom: 6px;
    font-weight: 800;
}

.reward-card span {
    display: block;
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255,255,255,0.9);
}

.safe-line {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 4px;
    padding: 12px 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255,0,0,0.25), rgba(255,226,103,0.18), rgba(255,0,0,0.25));
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.45);
}

/* --- 联系按钮 --- */
.hero-tg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
}

.unified-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    color: #fff;
    border-radius: 50px;
    font-weight: bold;
    font-size: 15px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    width: 100%;
}

.unified-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.15);
}

.unified-btn i {
    margin-right: 10px;
    font-size: 20px;
}

.btn-blue {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.btn-red {
    background: linear-gradient(135deg, #FF512F, #DD2476);
}

.btn-purple {
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
}

.btn-green {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.btn-black {
    background: linear-gradient(135deg, #232526, #414345);
}

.btn-orange {
    background: linear-gradient(135deg, #ff8800, #ff3d00);
}

@keyframes float-anim {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.phone-mockup {
    position: relative;
    width: 220px;
    max-width: 34%;
    height: auto;
    margin-top: 10px;
    animation: float-anim 4s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
}

.phone-screen-img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- 佣金案例板块 --- */
.case-section {
    position: relative;
    z-index: 3;
    margin-top: -80px;
    padding-bottom: 40px;
    scroll-margin-top: 80px;
}

.section-title-center {
    text-align: center;
    margin-bottom: 30px;
}

.section-title-center h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.section-title-center p {
    font-size: 16px;
    opacity: 0.9;
    color: #fff;
}

/* --- 截图墙 --- */
.screenshot-wall-wrapper {
    margin-bottom: 40px;
    text-align: center;
}

.scroll-hint {
    font-size: 12px;
    color: #aeeeff;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

.screenshot-wall {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.screenshot-wall::-webkit-scrollbar {
    display: none;
}

.shot-item {
    flex: 0 0 auto;
    width: 120px;
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.2);
    cursor: zoom-in;
    transition: transform 0.3s;
    background: #000;
}

.shot-item:hover {
    transform: scale(1.05);
    border-color: #F9E267;
}

.shot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- 轮播图 --- */
.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    margin: 0;
    padding: 0;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.case-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.case-story-content {
    text-align: left;
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 15px;
    width: 100%;
}

.story-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.story-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    background: #fff;
    padding: 2px;
}

.story-header h3 {
    font-size: 18px;
    color: #F9E267;
    margin-bottom: 5px;
}

.story-date {
    font-size: 12px;
    color: #aaa;
}

.story-text p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #eee;
}

.story-text strong {
    color: #00d2ff;
    font-size: 18px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(0,78,255,0.6);
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

/* --- 图片弹窗 --- */
.modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: rgba(0,0,0,0.86);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.modal-content {
    max-width: 88vw;
    max-height: 82vh;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.65);
    cursor: zoom-in;
    transition: all 0.25s ease;
    object-fit: contain;
}

.modal-content.zoomed {
    max-width: 98vw;
    max-height: 96vh;
    transform: scale(1.03);
    cursor: zoom-out;
}

.close-btn {
    position: fixed;
    top: 18px;
    right: 22px;
    width: 42px;
    height: 42px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.65);
    border: 2px solid rgba(255,255,255,0.85);
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000000;
}

.close-btn:hover {
    background: #d90000;
}

#caption {
    position: fixed;
    bottom: 18px;
    left: 0;
    width: 100%;
    text-align: center;
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    pointer-events: none;
}

/* --- Support Section --- */
.support-section {
    position: relative;
    z-index: 4;
    margin-top: 30px;
    padding: 60px 20px 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.3);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    scroll-margin-top: 80px;
}

.support-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.support-header h2 {
    font-size: 20px;
    line-height: 1.6;
    color: #fff;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.support-card {
    background: rgba(255,255,255,0.08);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    transition: transform 0.3s ease, background 0.3s ease, border 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    border: 1px solid rgba(255,255,255,0.14);
    cursor: pointer;
}

.support-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,226,103,0.45);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.ic-blue {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.ic-cyan {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.ic-purple {
    background: linear-gradient(135deg, #a18cd1, #fbc2eb);
}

.ic-green {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.support-card h3 {
    font-size: 17px;
    font-weight: bold;
    color: #fff;
}

.click-guide {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.58);
    margin-top: 10px;
    transition: color 0.3s;
}

.support-card:hover .click-guide {
    color: #F9E267;
}

/* --- 游戏区域 --- */
.game-section {
    padding: 40px 0 100px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: 20px;
    border-radius: 30px;
    position: relative;
    z-index: 5;
}

.game-grid-special {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.span-full {
    grid-column: span 6;
}

.span-half {
    grid-column: span 3;
}

.span-third {
    grid-column: span 2;
}

.game-card {
    border-radius: 15px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    z-index: 2;
}

.card-bg-img {
    position: absolute;
    right: -20px;
    bottom: -20px;
    height: 110%;
    width: auto;
    opacity: 0.9;
    z-index: 1;
    pointer-events: none;
}

.card-content {
    position: relative;
    z-index: 2;
    max-width: 70%;
}

.span-third .card-content {
    max-width: 100%;
    text-align: center;
}

.card-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.span-third .card-title {
    justify-content: center;
}

.card-title img {
    height: 30px;
    margin-right: 10px;
    background: #fff;
    border-radius: 50%;
    padding: 2px;
}

.desc {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 2px;
}

.card-sub {
    font-size: 12px;
    margin-top: 8px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.78);
    background: rgba(0,0,0,0.2);
    display: inline-block;
    padding: 3px 9px;
    border-radius: 6px;
}

.btn-gold {
    background: linear-gradient(180deg, #F9E267 0%, #E8B62C 100%);
    border: none;
    color: #583602;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: inline-block;
    transition: all 0.25s ease;
}

.btn-gold:hover {
    transform: scale(1.05);
    background: linear-gradient(180deg, #fff0a5 0%, #ffc83d 100%);
}

.btn-full {
    width: 100%;
    text-align: center;
}

.bg-jy {
    background: linear-gradient(135deg, #3B2667 0%, #BC78EC 100%);
}

.bg-ky {
    background: linear-gradient(135deg, #0072ff 0%, #00c6ff 100%);
}

.bg-hth {
    background: linear-gradient(135deg, #4c11ac 0%, #8c52ff 100%);
}

.bg-card-purple {
    background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 100%);
}

.bg-card-blue {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
}

.bg-card-dark {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
}

.bg-card-od {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
}

.bg-card-milan {
    background: linear-gradient(135deg, #134E5E 0%, #71B280 100%);
}

.bg-card-star {
    background: linear-gradient(135deg, #8E2DE2 0%, #4A00E0 100%);
}

footer {
    background: #111;
    color: #555;
    text-align: center;
    padding: 30px;
    font-size: 12px;
}

/* --- 手机适配 --- */
@media (max-width: 900px) {
    .hero-section {
        padding-top: 45px;
        padding-bottom: 90px;
    }

    .hero-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }

    .hero-content-left {
        max-width: 100%;
    }

    .reward-highlight {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .safe-line {
        border-radius: 14px;
        line-height: 1.8;
    }

    .hero-tg-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    .phone-mockup {
        width: 70%;
        max-width: 300px;
        margin-top: 0;
    }

    .nav-links {
        display: none;
    }

    .support-grid {
        grid-template-columns: 1fr !important;
    }

    .game-grid-special {
        grid-template-columns: 1fr !important;
    }

    .span-full,
    .span-half,
    .span-third {
        grid-column: auto !important;
    }

    .card-content,
    .span-third .card-content {
        max-width: 100%;
        text-align: center;
    }

    .card-title {
        justify-content: center;
    }

    .card-bg-img {
        opacity: 0.35;
        right: -40px;
    }

    .carousel-btn {
        display: none;
    }

    .screenshot-wall {
        padding: 10px;
    }

    .modal-content {
        max-width: 94vw;
        max-height: 78vh;
    }

    .modal-content.zoomed {
        max-width: 98vw;
        max-height: 92vh;
        transform: scale(1.02);
    }
}