/* 全局暗黑高级设置 */
body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: #0a0a0c; color: #fff; margin: 0; padding: 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 30px 20px; }

/* 响应式 PC端左右分栏 / H5端上下排列 */
.layout-wrapper { display: flex; flex-direction: column; gap: 40px; align-items: center; }
.left-col { width: 100%; max-width: 450px; text-align: center; }
.right-col { width: 100%; max-width: 500px; }

@media (min-width: 850px) {
    .layout-wrapper { flex-direction: row; align-items: flex-start; justify-content: center; gap: 80px; padding-top: 40px; }
    .left-col { text-align: left; }
    #modalButtonFirst { margin-left: 0; }
    .wheel-section { margin: 40px 0; }
}

/* 头部样式 */
.premium-header { padding: 0 0 20px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.logo { font-size: 24px; font-weight: 800; letter-spacing: 1px; color: #fff; }
h1 { background: linear-gradient(45deg, #fff, #aaa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.premium-header p { color: #888; font-size: 15px; margin: 0; letter-spacing: 1px; }

/* 纯CSS转盘保持完美 */
.wheel-section { position: relative; width: 300px; margin: 40px auto; }
.pointer { position: absolute; top: -20px; left: 50%; margin-left: -15px; width: 0; height: 0; border-left: 15px solid transparent; border-right: 15px solid transparent; border-top: 35px solid #d4af37; z-index: 99; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.6)); }
.wheel-box { width: 300px; height: 300px; border-radius: 50%; padding: 5px; background: linear-gradient(135deg, #444, #111); box-shadow: 0 0 30px rgba(212, 175, 55, 0.2), inset 0 0 10px #000; transition: transform 6s cubic-bezier(0.15, 0, 0.15, 1); }
.wheel-inner { width: 100%; height: 100%; border-radius: 50%; position: relative; background: conic-gradient( #1a1a1c 0deg 60deg, #2a2a2c 60deg 120deg, #d4af37 120deg 180deg, #2a2a2c 180deg 240deg, #8e0000 240deg 300deg, #2a2a2c 300deg 360deg ); overflow: hidden; }

/* 转盘文字 */
.wheel-text { position: absolute; width: 100%; text-align: center; top: 18px; left: 0; font-weight: bold; font-size: 16px; transform-origin: 50% 127px; text-shadow: 1px 1px 3px rgba(0,0,0,0.8); }
.t1 { transform: rotate(30deg); color: #fff; }
.t2 { transform: rotate(90deg); color: #999; font-size: 13px; }
.t3 { transform: rotate(150deg); color: #000; text-shadow: none; }
.t4 { transform: rotate(210deg); color: #999; font-size: 13px; }
.t5 { transform: rotate(270deg); color: #fff; }
.t6 { transform: rotate(330deg); color: #999; font-size: 13px; }

.wheel-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70px; height: 70px; background: #222; border-radius: 50%; box-shadow: 0 0 15px rgba(0,0,0,0.6); border: 3px solid #d4af37; display: flex; align-items: center; justify-content: center; font-weight: 900; color: #d4af37; font-size: 18px; z-index: 10; letter-spacing: 1px; }

/* 按钮与徽章 */
#modalButtonFirst, #claim-btn { background: linear-gradient(135deg, #d4af37, #aa8000); color: #000; border: none; padding: 18px 0; font-size: 18px; font-weight: 800; border-radius: 8px; cursor: pointer; width: 100%; margin-top: 30px; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3); }
.trust-badges { margin-top: 20px; display: flex; gap: 15px; font-size: 12px; color: #888; justify-content: center; }
@media (min-width: 850px) { .trust-badges { justify-content: flex-start; } }

/* 评价区升级 (加入头像) */
.reviews-section { background: rgba(255,255,255,0.03); border-radius: 12px; padding: 25px; border: 1px solid rgba(255,255,255,0.05); }
.review-card { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.user-info { display: flex; align-items: center; margin-bottom: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: bold; margin-right: 15px; box-shadow: 0 2px 5px rgba(0,0,0,0.5); }
.user-meta { display: flex; flex-direction: column; }
.reviewer-name { font-size: 15px; font-weight: bold; color: #fff; margin-bottom: 3px; }
.stars-wrap { display: flex; align-items: center; gap: 10px; }
.stars { color: #d4af37; font-size: 14px; letter-spacing: 2px; }
.verified { color: #4caf50; font-size: 11px; font-weight: bold; text-transform: uppercase; }
.review-text { font-size: 14px; color: #ccc; line-height: 1.6; margin: 0; font-style: italic; }

/* 弹窗样式 */
.modal { display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 90%; max-width: 400px; z-index: 1000; text-align: center; }
.modal.visible { display: block; }
.sweet-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); backdrop-filter: blur(5px); z-index: 999; }
.prize-card { background: #1a1a1c; border: 1px solid #333; border-radius: 16px; padding: 40px 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.8); }

.theme-silver { border-top: 4px solid #b0bec5; } .theme-silver .prize-amount { color: #b0bec5; }
.theme-gold { border-top: 4px solid #d4af37; } .theme-gold .prize-amount { color: #d4af37; }
.theme-ruby { border-top: 4px solid #ff5252; } .theme-ruby .prize-amount { color: #ff5252; }