﻿/* {$keywords} - Betting Platform Main Stylesheet */

/* ========== 基础样式 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "DM Sans", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(160deg, #0c100e 0%, #12160f 35%, #0f1410 70%, #0c100e 100%);
    background-attachment: fixed;
    color: #f3efe6;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(232, 196, 120, 0.1) 0%, transparent 42%),
        radial-gradient(circle at 82% 68%, rgba(40, 52, 42, 0.45) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(232, 196, 120, 0.04) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
    animation: pageGlow 10s ease-in-out infinite alternate;
}

@keyframes pageGlow {
    0% {
        opacity: 0.65;
        filter: blur(50px);
    }
    50% {
        opacity: 0.85;
        filter: blur(70px);
    }
    100% {
        opacity: 1;
        filter: blur(90px);
    }
}

/* ========== 容器 ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ========== 统一宽度控制 ========== */
/* 所有主要内容区块统一宽度 */
.hero,
.section,
.stats,
.features,
.welcome-box,
.cta-section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* 所有内联样式的容器统一宽度 */
.hero div[style*="display: grid"],
.hero div[style*="display: flex"],
.section div[style*="display: grid"],
.section div[style*="display: flex"],
.cta-section div[style*="display: grid"],
.cta-section div[style*="display: flex"] {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* 所有图片容器统一宽度 */
.hero div[style*="text-align: center"],
.section div[style*="text-align: center"],
.cta-section div[style*="text-align: center"] {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Section内的段落也统一宽度 */
.section > p,
.hero > p {
    max-width: 100%;
}

/* 所有内容描述段落样式 */
.section > p[style*="text-align: center"],
.hero > p[style*="text-align"] {
    max-width: 100% !important;
    color: #b8c3cf !important;
}

/* ========== 头部导航 ========== */
.header {
    background: rgba(12, 16, 14, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(232, 196, 120, 0.22);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f0c159, #ff6900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    color: #f0c159;
    font-size: 1.5em;
    font-weight: bold;
}

.nav-links-extended {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links-extended a {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.85em;
    white-space: nowrap;
}

.nav-links-extended a:hover {
    color: #3498db;
    background: rgba(52, 152, 219, 0.15);
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.3);
}

.nav-links-extended a.current {
    color: #3498db;
    background: rgba(52, 152, 219, 0.2);
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.4);
    }
    
    .mobile-menu-toggle {
    display: none;
        background: none;
        border: none;
    color: #fff;
        font-size: 1.5em;
        cursor: pointer;
        padding: 8px;
}

/* ========== 按钮样式 ========== */
.btn {
    background: linear-gradient(135deg, #f0c159 0%, #ff6900 100%);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(240, 193, 89, 0.3);
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 193, 89, 0.4);
}

.btn-green {
    background: linear-gradient(135deg, #00d084 0%, #00a86b 100%);
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.3);
}

.btn-green:hover {
    box-shadow: 0 6px 20px rgba(0, 208, 132, 0.4);
}

/* ========== 主内容区 ========== */
.main {
    margin-top: 85px;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* ========== Hero区域 - 简化设计 ========== */
.hero {
    text-align: center;
    padding: 40px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

/* Hero H1 */
.hero h1 {
    font-size: 3.2em;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #f0c159 0%, #ff6900 50%, #f0c159 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    animation: titleShine 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(240, 193, 89, 0.6));
}

@keyframes titleShine {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Hero Description */
.hero-description {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 30px 35px;
    background: linear-gradient(135deg, rgba(13, 20, 40, 0.8) 0%, rgba(16, 25, 53, 0.8) 100%);
    border: 2px solid rgba(240, 193, 89, 0.3);
    border-left: 5px solid #f0c159;
    border-radius: 16px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(240, 193, 89, 0.15);
}

.hero-description p {
    color: #e0e6ed;
    font-size: 1.08em;
    line-height: 1.9;
    margin: 0;
    text-align: left;
}

.hero-description strong {
    color: #f0c159;
    font-weight: 700;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 45px 0;
}

.btn-hero {
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #f0c159 0%, #ff6900 100%);
    color: #000;
    box-shadow: 0 8px 25px rgba(240, 193, 89, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(240, 193, 89, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.6);
}

.btn-warning {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 126, 34, 0.6);
}

/* Hero Banner */
.hero-banner {
    margin: 50px 0;
    position: relative;
}

.banner-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 2px solid rgba(240, 193, 89, 0.3);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 80px rgba(240, 193, 89, 0.2);
    transition: all 0.4s ease;
}

.banner-image:hover {
    transform: scale(1.02);
    border-color: rgba(240, 193, 89, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 100px rgba(240, 193, 89, 0.3);
}

/* Top Badge with Pulse */
.hero-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(240, 193, 89, 0.15) 0%, rgba(255, 105, 0, 0.1) 100%);
    border: 2px solid rgba(240, 193, 89, 0.5);
    border-radius: 50px;
    padding: 12px 28px;
    margin-bottom: 35px;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(240, 193, 89, 0.3);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 6px 20px rgba(240, 193, 89, 0.3);
    }
    50% {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(240, 193, 89, 0.5);
    }
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #00d084;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 15px rgba(0, 208, 132, 0.8);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.hero-top-badge .badge-text {
    color: #f0c159;
    font-weight: 700;
    font-size: 1em;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(240, 193, 89, 0.4);
}

.badge-status {
    background: #00d084;
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Title Wrapper */
.hero-title-wrapper {
    margin-bottom: 50px;
}

.hero-main-title {
    font-size: 3.5em;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #f0c159 0%, #ff6900 50%, #f0c159 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: titleShine 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(240, 193, 89, 0.6));
}

@keyframes titleShine {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-title-underline {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, transparent, #f0c159, transparent);
    margin: 0 auto;
    border-radius: 3px;
    animation: underlinePulse 2s ease-in-out infinite;
}

@keyframes underlinePulse {
    0%, 100% {
        width: 120px;
        opacity: 0.8;
    }
    50% {
        width: 160px;
        opacity: 1;
    }
}

/* Highlights Grid */
.hero-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(13, 20, 40, 0.9) 0%, rgba(16, 25, 53, 0.9) 100%);
    border: 2px solid;
    border-radius: 20px;
    padding: 35px 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0.6;
}

.highlight-primary {
    border-color: rgba(240, 193, 89, 0.5);
    color: #f0c159;
    box-shadow: 0 8px 30px rgba(240, 193, 89, 0.2);
}

.highlight-success {
    border-color: rgba(0, 208, 132, 0.5);
    color: #00d084;
    box-shadow: 0 8px 30px rgba(0, 208, 132, 0.2);
}

.highlight-info {
    border-color: rgba(52, 152, 219, 0.5);
    color: #3498db;
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.2);
}

.highlight-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(240, 193, 89, 0.4);
}

.highlight-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 2px solid currentColor;
    position: relative;
}

.highlight-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.1;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

.highlight-icon {
    font-size: 2.5em;
    filter: drop-shadow(0 4px 15px currentColor);
}

.highlight-card h3 {
    color: #fff;
    font-size: 1.4em;
    font-weight: 700;
    margin: 15px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.highlight-card p {
    color: #b8c3cf;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0;
}

/* Stats Counter */
.hero-stats-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(16, 25, 53, 0.8) 0%, rgba(13, 20, 40, 0.8) 100%);
    border: 1px solid rgba(240, 193, 89, 0.3);
    border-radius: 20px;
    padding: 35px 40px;
    margin: 50px 0;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 2.8em;
    font-weight: 900;
    background: linear-gradient(135deg, #f0c159, #ff6900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(240, 193, 89, 0.5);
}

.stat-label {
    color: #b8c3cf;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(240, 193, 89, 0.5), transparent);
}

/* Premium Features */
.premium-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin: 40px 0;
}

.feature-tag {
    background: rgba(16, 25, 53, 0.6);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-left: 4px solid #3498db;
    padding: 15px 20px;
    border-radius: 10px;
    color: #b8c3cf;
    font-size: 0.95em;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-tag:hover {
    background: rgba(26, 84, 144, 0.15);
    border-left-color: #00d084;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

/* Trust Badges Row */
.trust-badges-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 40px 0;
    padding: 25px;
    background: rgba(16, 25, 53, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(240, 193, 89, 0.2);
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.trust-badge-item:hover {
    background: rgba(240, 193, 89, 0.1);
    border-color: rgba(240, 193, 89, 0.4);
    transform: scale(1.05);
}

.trust-icon {
    font-size: 1.5em;
    filter: drop-shadow(0 2px 8px rgba(240, 193, 89, 0.4));
}

.trust-text {
    color: #b8c3cf;
    font-weight: 600;
    font-size: 0.9em;
}

/* 所有图片统一宽度和样式 */
.hero img,
.section img,
.welcome-box img,
.cta-section img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 16px !important;
    border: 1px solid rgba(240, 193, 89, 0.2) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
    object-fit: cover;
}

.hero img:hover,
.section img:hover,
.welcome-box img:hover,
.cta-section img:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(240, 193, 89, 0.4) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4) !important;
}

/* 图片容器统一宽度 */
.hero > div[style*="text-align"],
.section > div[style*="text-align: center"],
.welcome-box > div[style*="text-align"] {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
}

/* ========== Welcome Box - 166bet风格 ========== */
.welcome-box {
    background: linear-gradient(135deg, rgba(13, 20, 40, 0.7) 0%, rgba(16, 25, 53, 0.7) 100%);
    border: 1px solid rgba(52, 152, 219, 0.25);
    border-radius: 16px;
    padding: 0;
    margin: 40px auto;
    max-width: 100%;
    width: 100%;
    box-shadow: 0 4px 20px rgba(26, 84, 144, 0.3), 0 0 40px rgba(52, 152, 219, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.welcome-box:hover {
    border-color: rgba(52, 152, 219, 0.5);
    box-shadow: 0 8px 30px rgba(26, 84, 144, 0.5), 0 0 60px rgba(52, 152, 219, 0.2);
}

.welcome-box h3 {
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 25px 30px;
    font-size: 1.5em;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.3) 0%, rgba(41, 128, 185, 0.2) 100%);
    border-bottom: 1px solid rgba(240, 193, 89, 0.15);
}

.welcome-box h3::before {
    content: '🎁';
    margin-right: 10px;
    font-size: 1.2em;
}

.welcome-box > div,
.welcome-box > ul {
    padding: 30px;
}

.welcome-box ul {
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.welcome-box li {
    margin: 0;
    padding: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.welcome-box li:hover {
    background: rgba(240, 193, 89, 0.05);
    border-color: rgba(240, 193, 89, 0.2);
}

.welcome-box li strong {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
    position: relative;
}

.welcome-box li strong::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    background: linear-gradient(135deg, #f0c159, #ff6900);
    border-radius: 50%;
    font-size: 14px;
    color: #000;
    font-weight: bold;
    flex-shrink: 0;
}

.welcome-box li strong::after {
    content: '▼';
    position: absolute;
    right: 20px;
    font-size: 12px;
    color: #f0c159;
    transition: transform 0.3s ease;
}

.welcome-box li.expanded strong::after {
    transform: rotate(180deg);
}

.welcome-box li::after {
    content: attr(data-detail);
    display: block;
    padding: 0 20px;
    margin: 0 20px;
    color: #b8c3cf;
    font-size: 0.92em;
    line-height: 1.7;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    border-top: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.welcome-box li.expanded::after {
    max-height: 300px;
    opacity: 1;
    padding-top: 15px;
    padding-bottom: 18px;
    border-top-color: rgba(255, 255, 255, 0.05);
}

.welcome-box li.expanded {
    background: rgba(240, 193, 89, 0.08);
    border-color: rgba(240, 193, 89, 0.25);
}

.welcome-box > div[style*="text-align: center"] {
    margin: 0 0 25px 0 !important;
    padding: 0 30px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.welcome-box > div[style*="background: rgba(255, 0, 0"] {
    background: rgba(255, 68, 68, 0.08) !important;
    border: 1px solid rgba(255, 68, 68, 0.3) !important;
    border-radius: 8px !important;
    padding: 18px 24px !important;
    margin: 0 30px 30px !important;
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.2) !important;
}

.welcome-box > div[style*="background: rgba(255, 0, 0"] p {
    color: #ff8888 !important;
    font-weight: 700 !important;
    font-size: 0.95em !important;
    margin: 0 !important;
}

/* ========== 统计区域 ========== */
.section {
    margin: 80px auto;
    padding: 0 20px;
    max-width: 1200px;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 2.2em;
    color: #e8c478;
    margin-bottom: 40px;
    font-weight: 800;
    text-shadow: 0 0 24px rgba(232, 196, 120, 0.25);
}

/* Section内的所有图片容器统一宽度 */
.section > div[style*="text-align"],
.section > div[style*="margin"] {
    max-width: 100% !important;
    width: 100% !important;
}

/* 所有内联样式的grid容器统一宽度 */
.section div[style*="display: grid"] {
    max-width: 100% !important;
    width: 100% !important;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px auto;
    max-width: 100%;
    width: 100%;
}

.stat-card {
    background: rgba(26, 26, 28, 0.6);
    border: 1px solid rgba(240, 193, 89, 0.15);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(240, 193, 89, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 2.5em;
    font-weight: 900;
    color: #f0c159;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    color: #b8c3cf;
    text-transform: uppercase;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ========== 功能卡片 ========== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px auto;
    max-width: 100%;
    width: 100%;
}

.feature-card {
    background: rgba(26, 26, 28, 0.6);
    border: 1px solid rgba(240, 193, 89, 0.15);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(240, 193, 89, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 15px rgba(240, 193, 89, 0.3));
}

.feature-card h3 {
    color: #f0c159;
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: 700;
}

.feature-card p {
    color: #b8c3cf;
    line-height: 1.7;
    font-size: 0.95em;
}

/* ========== CTA区域 ========== */
.cta-section {
    background: linear-gradient(135deg, rgba(13, 20, 40, 0.8) 0%, rgba(16, 25, 53, 0.8) 50%, rgba(13, 20, 40, 0.8) 100%);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin: 80px auto;
    max-width: 1200px;
    width: 100%;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 30px rgba(26, 84, 144, 0.3), 0 0 60px rgba(52, 152, 219, 0.15);
}

/* CTA区域内的所有容器统一宽度 */
.cta-section > div[style*="display"],
.cta-section > div[style*="margin"] {
    max-width: 100% !important;
    width: 100% !important;
}

.cta-section h2 {
    font-size: 2.2em;
    color: #3498db;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(52, 152, 219, 0.6);
}

.cta-section p {
    font-size: 1.1em;
    color: #b8c3cf;
    margin-bottom: 30px;
    line-height: 1.7;
}

.urgent-box {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
}

.urgent-box p {
    color: #ff8888;
    font-weight: 700;
    margin: 0;
}

.cta-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.cta-highlight {
    background: rgba(16, 25, 53, 0.4);
    border: 1px solid rgba(52, 152, 219, 0.3);
    padding: 15px 20px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(26, 84, 144, 0.15);
}

.cta-highlight:hover {
    background: rgba(26, 84, 144, 0.2);
    border-color: rgba(52, 152, 219, 0.5);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-badge {
    text-align: center;
    padding: 15px 20px;
    background: rgba(16, 25, 53, 0.4);
    border: 1px solid rgba(52, 152, 219, 0.25);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(26, 84, 144, 0.15);
}

.trust-badge:hover {
    background: rgba(26, 84, 144, 0.2);
    border-color: rgba(52, 152, 219, 0.5);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.badge-icon {
    font-size: 2.5em;
    margin-bottom: 8px;
}

.badge-text {
    color: #b8c3cf;
    font-size: 0.9em;
    font-weight: 600;
}

/* ========== VIP卡片样式 ========== */
.section div[style*="background: linear-gradient"][style*="border: 2px solid"] {
    background: rgba(26, 26, 28, 0.6) !important;
    border-width: 1px !important;
    border-radius: 16px !important;
    padding: 35px 30px !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.section div[style*="background: linear-gradient"][style*="border: 2px solid"]:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* 安全信任区域样式 */
.section > div[style*="background: rgba(240, 193, 89, 0.05)"] {
    background: rgba(26, 26, 28, 0.6) !important;
    border: 1px solid rgba(240, 193, 89, 0.15) !important;
    border-radius: 16px !important;
    padding: 40px 30px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    max-width: 100% !important;
}

.section > div[style*="background: rgba(240, 193, 89, 0.05)"] h3 {
    color: #f0c159 !important;
    font-size: 2em !important;
    font-weight: 800 !important;
    margin-bottom: 40px !important;
}

.section > div[style*="background: rgba(240, 193, 89, 0.05)"] > div[style*="display: grid"] {
    max-width: 100% !important;
}

.section > div[style*="background: rgba(240, 193, 89, 0.05)"] > div[style*="display: grid"] > div {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    padding: 30px 20px !important;
    transition: all 0.3s ease;
}

.section > div[style*="background: rgba(240, 193, 89, 0.05)"] > div[style*="display: grid"] > div:hover {
    background: rgba(240, 193, 89, 0.05) !important;
    border-color: rgba(240, 193, 89, 0.2) !important;
    transform: translateY(-5px);
}

/* 社交证明区域样式 */
.cta-section > div[style*="background: rgba(0, 0, 0, 0.2)"] {
    background: rgba(26, 26, 28, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;
    padding: 35px !important;
    max-width: 100% !important;
}

.cta-section > div[style*="background: rgba(0, 0, 0, 0.2)"] h3 {
    color: #f0c159 !important;
    font-size: 1.8em !important;
    font-weight: 700 !important;
}

.cta-section > div[style*="background: rgba(0, 0, 0, 0.2)"] > div[style*="display: grid"] {
    max-width: 100% !important;
}

.cta-section > div[style*="background: rgba(0, 0, 0, 0.2)"] > div[style*="display: grid"] > div {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 25px !important;
    border-radius: 12px !important;
    transition: all 0.3s ease;
}

.cta-section > div[style*="background: rgba(0, 0, 0, 0.2)"] > div[style*="display: grid"] > div:hover {
    background: rgba(240, 193, 89, 0.05) !important;
    border-color: rgba(240, 193, 89, 0.2) !important;
}

/* 流行游戏展示区域 */
.section > div[style*="margin-top: 60px"] {
    max-width: 100% !important;
    margin-top: 60px !important;
    padding: 40px 30px !important;
    background: rgba(26, 26, 28, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;
}

.section > div[style*="margin-top: 60px"] h3 {
    color: #f0c159 !important;
    font-size: 2em !important;
    font-weight: 800 !important;
    margin-bottom: 40px !important;
}

.section > div[style*="margin-top: 60px"] > div[style*="display: grid"] {
    max-width: 100% !important;
}

.section > div[style*="margin-top: 60px"] > div[style*="display: grid"] > div {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    padding: 25px 20px !important;
    transition: all 0.3s ease;
}

.section > div[style*="margin-top: 60px"] > div[style*="display: grid"] > div:hover {
    background: rgba(240, 193, 89, 0.05) !important;
    border-color: rgba(240, 193, 89, 0.2) !important;
    transform: translateY(-5px);
}

.section > div[style*="margin-top: 60px"] > div[style*="display: grid"] > div h4 {
    color: #f0c159 !important;
    font-weight: 700 !important;
}

.section > div[style*="margin-top: 60px"] > div[style*="display: grid"] > div p {
    color: #b8c3cf !important;
}

/* Trust badges 统一样式 */
.cta-section > div[style*="display: flex"][style*="margin-top: 40px"] {
    max-width: 100% !important;
}

.cta-section > div[style*="display: flex"][style*="margin-top: 40px"] > div {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-section > div[style*="display: flex"][style*="margin-top: 40px"] > div:hover {
    background: rgba(240, 193, 89, 0.05);
    border-color: rgba(240, 193, 89, 0.2);
}

/* ========== 页脚 ========== */
.footer {
    background: rgba(12, 16, 14, 0.96);
    border-top: 1px solid rgba(232, 196, 120, 0.22);
    padding: 40px 0;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3);
}

.footer p {
    color: #b7b0a3;
    margin-bottom: 10px;
    font-size: 0.9em;
}

/* ========== 优势卡片区域 ========== */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.advantage-card {
    background: linear-gradient(135deg, rgba(13, 20, 40, 0.7) 0%, rgba(16, 25, 53, 0.7) 100%);
    border: 1px solid rgba(52, 152, 219, 0.25);
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(26, 84, 144, 0.2);
}

.advantage-card:hover {
    border-color: rgba(52, 152, 219, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 84, 144, 0.4), 0 0 40px rgba(52, 152, 219, 0.2);
}

.advantage-icon {
    font-size: 3.5em;
    text-align: center;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 15px rgba(240, 193, 89, 0.3));
}

.advantage-card h3 {
    color: #3498db;
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 0 15px rgba(52, 152, 219, 0.4);
}

.advantage-card > p {
    color: #b8c3cf;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95em;
}

.advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-list li {
    color: #b8c3cf;
    padding: 8px 0;
    font-size: 0.95em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.advantage-list li:last-child {
    border-bottom: none;
}

/* ========== RTP表格区域 ========== */
.rtp-table {
    background: linear-gradient(135deg, rgba(13, 20, 40, 0.7) 0%, rgba(16, 25, 53, 0.7) 100%);
    border: 1px solid rgba(52, 152, 219, 0.25);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(26, 84, 144, 0.2);
}

.rtp-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr 1.5fr;
    gap: 15px;
    padding: 18px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.rtp-row:last-child {
    border-bottom: none;
}

.rtp-row:hover {
    background: rgba(52, 152, 219, 0.08);
}

.rtp-header {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.25) 0%, rgba(41, 128, 185, 0.2) 100%);
    font-weight: 700;
    color: #3498db;
}

.rtp-header:hover {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.25) 0%, rgba(41, 128, 185, 0.2) 100%);
}

.rtp-col {
    color: #b8c3cf;
    font-size: 0.95em;
    display: flex;
    align-items: center;
}

.rtp-high {
    color: #00d084;
    font-weight: 700;
    font-size: 1.1em;
}

.rtp-medium {
    color: #f0c159;
    font-weight: 700;
}

/* ========== PIX区域 ========== */
.pix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.pix-card {
    background: linear-gradient(135deg, rgba(13, 20, 40, 0.7) 0%, rgba(16, 25, 53, 0.7) 100%);
    border: 1px solid rgba(52, 152, 219, 0.25);
    border-radius: 16px;
    padding: 35px 30px;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 84, 144, 0.2);
}

.pix-card:hover {
    border-color: rgba(52, 152, 219, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 84, 144, 0.4), 0 0 40px rgba(52, 152, 219, 0.2);
}

.pix-icon {
    font-size: 4em;
    text-align: center;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 15px rgba(240, 193, 89, 0.3));
}

.pix-card h3 {
    color: #3498db;
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 0 20px rgba(52, 152, 219, 0.4);
}

.pix-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pix-label {
    color: #b8c3cf;
    font-size: 0.9em;
}

.pix-value {
    color: #fff;
    font-weight: 600;
}

.pix-value.highlight {
    color: #00d084;
    font-weight: 700;
}

.pix-steps {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pix-steps h4 {
    color: #3498db;
    font-size: 1.1em;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(52, 152, 219, 0.4);
}

.pix-steps ol {
    padding-left: 20px;
    color: #b8c3cf;
}

.pix-steps li {
    margin-bottom: 8px;
    font-size: 0.9em;
    line-height: 1.6;
}

.pix-info-box {
    background: linear-gradient(135deg, rgba(16, 25, 53, 0.6) 0%, rgba(13, 20, 40, 0.6) 100%);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(26, 84, 144, 0.2), 0 0 30px rgba(52, 152, 219, 0.1);
}

.pix-info-box h4 {
    color: #3498db;
    font-size: 1.3em;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(52, 152, 219, 0.5);
}

.pix-info-box p {
    color: #b8c3cf;
    line-height: 1.7;
    margin: 0;
}

/* ========== APP区域 ========== */
.app-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.app-info h3 {
    color: #3498db;
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(52, 152, 219, 0.4);
}

.app-info > p {
    color: #b8c3cf;
    line-height: 1.8;
    margin-bottom: 30px;
}

.app-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(16, 25, 53, 0.3);
    border: 1px solid rgba(52, 152, 219, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.app-feature-item:hover {
    background: rgba(26, 84, 144, 0.15);
    border-color: rgba(52, 152, 219, 0.4);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(26, 84, 144, 0.2);
}

.app-feature-icon {
    font-size: 2.5em;
    flex-shrink: 0;
}

.app-feature-text h4 {
    color: #fff;
    font-size: 1.1em;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
}

.app-feature-text p {
    color: #b8c3cf;
    font-size: 0.9em;
    line-height: 1.6;
}

.app-specs-table {
    background: linear-gradient(135deg, rgba(13, 20, 40, 0.7) 0%, rgba(16, 25, 53, 0.7) 100%);
    border: 1px solid rgba(52, 152, 219, 0.25);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(26, 84, 144, 0.2);
}

.app-specs-table h3 {
    color: #3498db;
    font-size: 1.5em;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 0 20px rgba(52, 152, 219, 0.4);
}

.specs-table {
    width: 100%;
    margin-bottom: 25px;
}

.specs-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.spec-label {
    color: #b8c3cf;
    padding: 12px 0;
    font-size: 0.9em;
}

.spec-value {
    color: #fff;
    padding: 12px 0;
    font-weight: 600;
    text-align: right;
}

.app-download-buttons {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========== FAQ区域 ========== */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(13, 20, 40, 0.7) 0%, rgba(16, 25, 53, 0.7) 100%);
    border: 1px solid rgba(52, 152, 219, 0.25);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(26, 84, 144, 0.15);
}

.faq-item:hover {
    border-color: rgba(52, 152, 219, 0.5);
    box-shadow: 0 4px 20px rgba(26, 84, 144, 0.3);
}

.faq-question {
    padding: 20px 25px;
    position: relative;
}

.faq-question strong {
    color: #fff;
    font-size: 1.05em;
    font-weight: 600;
    display: block;
    padding-right: 40px;
}

.faq-question::before {
    content: '';
    margin-right: 0;
}

.faq-question::after {
    content: '▼';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #f0c159;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.expanded .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-item::after {
    content: attr(data-answer);
    display: block;
    padding: 0 25px;
    margin: 0 25px;
    padding-top: 0;
    padding-bottom: 0;
    color: #b8c3cf;
    line-height: 1.8;
    font-size: 0.95em;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    border-top: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.expanded::after {
    max-height: 400px;
    opacity: 1;
    padding-top: 15px;
    padding-bottom: 20px;
    border-top-color: rgba(255, 255, 255, 0.05);
}

.faq-item.expanded {
    background: rgba(240, 193, 89, 0.08);
    border-color: rgba(240, 193, 89, 0.3);
}

/* ========== 评论区域 ========== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.review-card {
    background: linear-gradient(135deg, rgba(13, 20, 40, 0.7) 0%, rgba(16, 25, 53, 0.7) 100%);
    border: 1px solid rgba(52, 152, 219, 0.25);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 84, 144, 0.2);
}

.review-card:hover {
    border-color: rgba(52, 152, 219, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 84, 144, 0.4), 0 0 40px rgba(52, 152, 219, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    gap: 15px;
    align-items: center;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f0c159, #ff6900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 800;
    font-size: 1.2em;
    flex-shrink: 0;
}

.review-name {
    color: #fff;
    font-weight: 700;
    margin-bottom: 3px;
}

.review-location {
    color: #b8c3cf;
    font-size: 0.85em;
}

.review-rating {
    color: #f0c159;
    font-size: 1.2em;
    white-space: nowrap;
}

.review-text {
    color: #b8c3cf;
    line-height: 1.8;
    font-size: 0.95em;
    font-style: italic;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid rgba(240, 193, 89, 0.3);
    border-radius: 5px;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85em;
}

.review-date {
    color: #b8c3cf;
}

.review-helpful {
    color: #00d084;
    font-weight: 600;
}

.review-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
    padding: 35px;
    background: linear-gradient(135deg, rgba(16, 25, 53, 0.6) 0%, rgba(13, 20, 40, 0.6) 100%);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(26, 84, 144, 0.25), 0 0 40px rgba(52, 152, 219, 0.1);
}

.review-stat {
    text-align: center;
}

.review-stat-number {
    font-size: 2.5em;
    font-weight: 900;
    color: #f0c159;
    margin-bottom: 8px;
}

.review-stat-label {
    color: #b8c3cf;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== KPI区域 ========== */
.kpi-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.kpi-item {
    background: linear-gradient(135deg, rgba(13, 20, 40, 0.7) 0%, rgba(16, 25, 53, 0.7) 100%);
    border: 1px solid rgba(52, 152, 219, 0.25);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 84, 144, 0.2);
}

.kpi-item:hover {
    border-color: rgba(52, 152, 219, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 84, 144, 0.4), 0 0 40px rgba(52, 152, 219, 0.2);
}

.kpi-icon {
    font-size: 3em;
    flex-shrink: 0;
    filter: drop-shadow(0 3px 10px rgba(240, 193, 89, 0.3));
}

.kpi-data {
    flex-grow: 1;
}

.kpi-number {
    font-size: 1.8em;
    font-weight: 900;
    color: #f0c159;
    margin-bottom: 5px;
}

.kpi-label {
    color: #b8c3cf;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.kpi-trend {
    font-size: 0.85em;
    color: #b8c3cf;
}

.kpi-trend.positive {
    color: #00d084;
    font-weight: 600;
}

/* ========== 学术导航按钮 ========== */
.academic-nav-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
    padding: 20px 0;
}

.btn-academic {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    font-size: 1em;
    letter-spacing: 0.3px;
}

.btn-academic:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.5);
    background: linear-gradient(135deg, #2980b9 0%, #21618c 100%);
}

.btn-academic.btn-secondary {
    background: linear-gradient(135deg, #16a085 0%, #138d75 100%);
    box-shadow: 0 4px 15px rgba(22, 160, 133, 0.3);
}

.btn-academic.btn-secondary:hover {
    box-shadow: 0 6px 20px rgba(22, 160, 133, 0.5);
    background: linear-gradient(135deg, #138d75 0%, #117a65 100%);
}

.btn-academic.btn-warning {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-academic.btn-warning:hover {
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.5);
    background: linear-gradient(135deg, #d35400 0%, #ba4a00 100%);
}

.btn-academic.btn-info {
    background: linear-gradient(135deg, #8e44ad 0%, #7d3c98 100%);
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
}

.btn-academic.btn-info:hover {
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.5);
    background: linear-gradient(135deg, #7d3c98 0%, #6c3483 100%);
}

/* ========== 新增E-E-A-T样式 ========== */

/* 作者认证信息 - 重新设计 */
.author-credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    background: linear-gradient(135deg, rgba(16, 25, 53, 0.7) 0%, rgba(13, 20, 40, 0.7) 100%);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
    backdrop-filter: blur(15px);
    box-shadow: 0 6px 25px rgba(26, 84, 144, 0.25);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(16, 25, 53, 0.4);
    border: 1px solid rgba(52, 152, 219, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.author-info:hover {
    background: rgba(26, 84, 144, 0.15);
    border-color: rgba(52, 152, 219, 0.5);
    transform: translateX(5px);
}

.author-icon {
    font-size: 3em;
    flex-shrink: 0;
    filter: drop-shadow(0 3px 10px rgba(52, 152, 219, 0.4));
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.author-details strong {
    color: #5dade2;
    font-size: 1.1em;
    font-weight: 700;
}

.author-details span {
    color: #b8c3cf;
    font-size: 0.9em;
    line-height: 1.5;
}

.meta-info {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(52, 152, 219, 0.2);
}

.meta-info span {
    color: #888;
    font-size: 0.9em;
    font-weight: 600;
}

/* Executive Summary */
.executive-summary {
    background: linear-gradient(135deg, rgba(13, 20, 40, 0.7) 0%, rgba(16, 25, 53, 0.7) 100%);
    border: 1px solid rgba(52, 152, 219, 0.25);
    border-left: 4px solid #3498db;
    border-radius: 12px;
    padding: 30px 35px;
    margin: 40px 0;
    backdrop-filter: blur(15px);
}

.executive-summary h2 {
    color: #3498db;
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(52, 152, 219, 0.4);
}

.executive-summary p {
    color: #b8c3cf;
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 1em;
}

/* Section Intro */
.section-intro {
    background: rgba(16, 25, 53, 0.4);
    border: 1px solid rgba(52, 152, 219, 0.2);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 40px;
}

.section-intro p {
    color: #b8c3cf;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.98em;
}

.section-intro strong {
    color: #fff;
    font-weight: 600;
}

/* Figure Container */
.figure-container {
    text-align: center;
    margin: 40px 0;
}

.figure-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(52, 152, 219, 0.3);
    box-shadow: 0 10px 30px rgba(26, 84, 144, 0.3);
}

.figure-caption {
    font-size: 0.9em;
    color: #888;
    margin-top: 12px;
    font-style: italic;
    line-height: 1.6;
}

/* Research Note */
.research-note {
    background: linear-gradient(135deg, rgba(16, 25, 53, 0.6) 0%, rgba(13, 20, 40, 0.6) 100%);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-left: 4px solid #f0c159;
    border-radius: 12px;
    padding: 25px 30px;
    margin-top: 30px;
}

.research-note p {
    color: #b8c3cf;
    font-weight: 600;
    margin-bottom: 15px;
}

.research-note ul {
    list-style: none;
    padding-left: 0;
}

.research-note li {
    color: #b8c3cf;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
    font-size: 0.95em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.research-note li:last-child {
    border-bottom: none;
}

.research-note li::before {
    content: '📌';
    position: absolute;
    left: 0;
    font-size: 0.9em;
}

.research-note strong {
    color: #fff;
    font-weight: 700;
}

/* Citations Section */
.citations-section {
    background: linear-gradient(135deg, rgba(13, 20, 40, 0.7) 0%, rgba(16, 25, 53, 0.7) 100%);
    border: 1px solid rgba(52, 152, 219, 0.25);
    border-radius: 16px;
    padding: 40px 35px;
    margin: 60px 0;
}

.citations-section h2 {
    color: #3498db;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 20px rgba(52, 152, 219, 0.4);
}

.citation-item {
    background: rgba(16, 25, 53, 0.4);
    border: 1px solid rgba(52, 152, 219, 0.15);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.citation-item:hover {
    background: rgba(26, 84, 144, 0.15);
    border-color: rgba(52, 152, 219, 0.4);
}

.citation-item p {
    color: #b8c3cf;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95em;
    font-family: 'Courier New', monospace;
}

.citation-item strong {
    color: #fff;
    font-weight: 700;
}

.citation-item em {
    color: #3498db;
    font-style: italic;
}

/* Responsible Gambling Section */
.responsible-gambling {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 69, 0, 0.08) 100%);
    border: 2px solid rgba(255, 140, 0, 0.4);
    border-radius: 16px;
    padding: 40px 35px;
    margin: 60px 0;
}

.responsible-gambling h2 {
    color: #ff8c00;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.responsible-gambling h3 {
    color: #ffb366;
    font-size: 1.4em;
    font-weight: 700;
    margin: 30px 0 15px 0;
}

.responsible-gambling p,
.responsible-gambling li {
    color: #b8c3cf;
    line-height: 1.8;
    font-size: 1em;
}

.responsible-gambling ul {
    padding-left: 25px;
    margin: 15px 0;
}

.responsible-gambling li {
    margin-bottom: 10px;
}

.responsible-gambling strong {
    color: #fff;
    font-weight: 700;
}

.help-resources {
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
}

.help-resources h4 {
    color: #ff8c00;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.help-resources ul {
    list-style: none;
    padding-left: 0;
}

.help-resources li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.help-resources li:last-child {
    border-bottom: none;
}

/* ========== Sports Categories Section ========== */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.sport-card {
    background: linear-gradient(135deg, rgba(13, 20, 40, 0.9) 0%, rgba(16, 25, 53, 0.9) 100%);
    border: 2px solid rgba(52, 152, 219, 0.3);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.sport-card:hover {
    transform: translateY(-8px);
    border-color: rgba(240, 193, 89, 0.6);
    box-shadow: 0 15px 50px rgba(240, 193, 89, 0.3);
}

.sport-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(240, 193, 89, 0.15) 0%, rgba(255, 105, 0, 0.1) 100%);
    border-bottom: 2px solid rgba(240, 193, 89, 0.3);
}

.sport-icon {
    font-size: 3em;
    filter: drop-shadow(0 4px 15px rgba(240, 193, 89, 0.5));
}

.sport-header h3 {
    color: #f0c159;
    font-size: 1.6em;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(240, 193, 89, 0.4);
}

.sport-stats {
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px;
    background: rgba(16, 25, 53, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.stat-label {
    color: #888;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    color: #fff;
    font-size: 1.1em;
    font-weight: 700;
}

.stat-active {
    color: #00d084;
    font-weight: 800;
}

.sport-leagues {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 20px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.league-tag {
    padding: 8px 16px;
    background: rgba(52, 152, 219, 0.15);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 20px;
    color: #3498db;
    font-size: 0.85em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.league-tag:hover {
    background: rgba(52, 152, 219, 0.3);
    border-color: rgba(52, 152, 219, 0.6);
    transform: scale(1.05);
}

/* Sports Summary */
.sports-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
    padding: 35px;
    background: linear-gradient(135deg, rgba(16, 25, 53, 0.8) 0%, rgba(13, 20, 40, 0.8) 100%);
    border: 2px solid rgba(240, 193, 89, 0.4);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(16, 25, 53, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.summary-item:hover {
    background: rgba(26, 84, 144, 0.2);
    border-color: rgba(240, 193, 89, 0.5);
    transform: scale(1.03);
}

.summary-icon {
    font-size: 3em;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 15px rgba(240, 193, 89, 0.5));
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.summary-number {
    font-size: 2.2em;
    font-weight: 900;
    background: linear-gradient(135deg, #f0c159, #ff6900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.summary-label {
    color: #b8c3cf;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== 响应式设计 ========== */
@media (max-width: 768px) {
    /* Full-bleed containers on mobile */
    .container,
    .hero,
    .section,
    .welcome-box,
    .cta-section,
    .stats,
    .features,
    .rtp-table {
        max-width: 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Reduce spacing on tablets */
    .main {
        margin-top: 75px;
    }

    .hero {
        padding: 30px 20px 50px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Academic buttons responsive */
    .academic-nav-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .btn-academic {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95em;
    }
    
    .nav-links-extended {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(20, 20, 22, 0.98);
        padding: 20px;
        border-radius: 0 0 12px 12px;
    }
    
    .nav-links-extended.active {
        display: flex;
    }
    
    .nav-links-extended a {
        padding: 12px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .main {
        margin-top: 80px;
    }

    .hero {
        padding: 35px 20px 45px;
    }

    .hero h1 {
        font-size: 2.3em;
    }

    .hero-description {
        padding: 25px 28px;
    }

    .hero-description p {
        font-size: 1em;
    }

    .hero-buttons {
        gap: 18px;
        margin: 35px 0;
    }

    .btn-hero {
        padding: 17px 35px;
        font-size: 1.05em;
    }

    .hero-banner {
        margin: 40px 0;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .welcome-box h3 {
        font-size: 1.3em;
        padding: 20px;
    }
    
    .welcome-box > div,
    .welcome-box > ul {
        padding: 20px;
    }
    
    .welcome-box li strong {
        padding: 15px 16px;
        font-size: 0.95em;
    }
    
    .welcome-box li strong::before {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
    
    .cta-section {
        padding: 40px 25px;
    }
    
    .cta-section h2 {
        font-size: 1.8em;
    }

    /* 新区块响应式 */
    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rtp-table {
        overflow-x: auto;
    }

    .rtp-row {
        grid-template-columns: 1.5fr 1fr 0.8fr 0.8fr 1fr;
        gap: 10px;
        padding: 15px;
    }

    .rtp-col {
        font-size: 0.85em;
    }

    .pix-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .app-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .kpi-banner {
        grid-template-columns: 1fr;
    }

    .review-summary {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .trust-badges {
        gap: 20px;
    }

    /* Sports grid responsive */
    .sports-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sport-header {
        padding: 20px;
    }

    .sport-icon {
        font-size: 2.5em;
    }

    .sport-header h3 {
        font-size: 1.4em;
    }

    .sport-stats {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sport-leagues {
        padding: 18px 20px;
    }

    .sports-summary {
        grid-template-columns: repeat(2, 1fr);
        padding: 25px;
        gap: 15px;
    }

    .summary-item {
        flex-direction: column;
        text-align: center;
        padding: 18px;
    }

    .summary-icon {
        font-size: 2.5em;
    }

    .summary-number {
        font-size: 2em;
    }
}


@media (max-width: 480px) {
    /* Ensure absolute full width on small phones */
    .container,
    .hero,
    .section,
    .welcome-box,
    .cta-section,
    .stats,
    .features,
    .rtp-table {
        max-width: 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Minimal spacing on mobile */
    .main {
        margin-top: 70px;
    }

    .hero {
        padding: 25px 15px 40px;
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .hero-description {
        padding: 20px 22px;
        margin-bottom: 30px;
    }

    .hero-description p {
        font-size: 0.95em;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin: 30px 0;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 1em;
    }

    .hero-banner {
        margin: 35px 0;
    }

    .banner-image {
        border-radius: 15px;
    }

    /* Academic buttons on small screens */
    .academic-nav-buttons {
        padding: 15px;
        gap: 12px;
    }

    .btn-academic {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 1.6em;
    }
    
    .welcome-box h3 {
        font-size: 1.2em;
        padding: 18px 16px;
    }
    
    .welcome-box > div,
    .welcome-box > ul {
        padding: 16px;
    }
    
    .welcome-box li strong {
        padding: 14px 12px;
        font-size: 0.9em;
    }
    
    .welcome-box li strong::before {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }
    
    .cta-section h2 {
        font-size: 1.5em;
    }

    /* 新区块小屏幕响应式 */
    .rtp-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .rtp-col {
        padding: 5px 0;
        font-size: 0.8em;
    }

    .rtp-header {
        display: none;
    }

    .pix-card {
        padding: 25px 20px;
    }

    .pix-steps ol {
        padding-left: 15px;
    }

    .app-feature-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .review-header {
        flex-direction: column;
        gap: 15px;
    }

    .review-summary {
        grid-template-columns: 1fr;
    }

    .review-stat-number {
        font-size: 2em;
    }

    .kpi-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .kpi-number {
        font-size: 1.5em;
    }

    .faq-question strong {
        font-size: 0.95em;
    }

    .cta-highlights {
        grid-template-columns: 1fr;
    }

    .cta-highlight {
        font-size: 0.9em;
        padding: 12px 15px;
    }

    .trust-badges {
        gap: 15px;
    }

    .trust-badge {
        padding: 12px 15px;
    }

    .badge-icon {
        font-size: 2em;
    }

    /* Sports grid small screens */
    .sports-grid {
        gap: 18px;
    }

    .sport-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stat-item {
        padding: 10px;
    }

    .league-tag {
        font-size: 0.8em;
        padding: 6px 12px;
    }

    .sports-summary {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 12px;
    }

    .summary-item {
        padding: 15px;
    }

    .summary-icon {
        font-size: 2.2em;
    }

    .summary-number {
        font-size: 1.8em;
    }

    .summary-label {
        font-size: 0.8em;
    }
}


/* ========== 888f Slot Floor — simple high-quality cards ========== */
.sf-floor {
    --sf-ink: #f3efe6;
    --sf-muted: #b7b0a3;
    --sf-line: rgba(232, 196, 120, 0.28);
    --sf-card: rgba(22, 28, 24, 0.92);
    --sf-accent: #e8c478;
    --sf-accent-2: #3dba8c;
    --sf-band: rgba(14, 18, 16, 0.55);
    --sf-band-alt: rgba(28, 36, 30, 0.72);
    font-family: "DM Sans", "Segoe UI", sans-serif;
    color: var(--sf-ink);
    margin: 24px 0 80px;
}

.sf-band {
    margin: 28px 0;
    padding: 36px 28px;
    border: 1px solid var(--sf-line);
    border-radius: 8px;
    background: var(--sf-band);
}

.sf-band-alt {
    background: var(--sf-band-alt);
}

.sf-band-cta {
    background: linear-gradient(145deg, rgba(40, 52, 42, 0.9), rgba(18, 24, 20, 0.95));
    border-color: rgba(232, 196, 120, 0.45);
}

.sf-head {
    max-width: 720px;
    margin: 0 auto 28px;
    text-align: left;
}

.sf-kicker {
    font-size: 0.78em;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sf-accent);
    margin-bottom: 10px;
    font-weight: 700;
}

.sf-head h2 {
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.6em, 3vw, 2.25em);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
    text-shadow: none;
}

.sf-lead {
    color: var(--sf-muted);
    font-size: 1.05em;
    line-height: 1.7;
    margin: 0;
}

.sf-prose {
    max-width: 820px;
    margin: 0 auto 28px;
}

.sf-prose p {
    color: #cfc8bb;
    font-size: 1.02em;
    line-height: 1.8;
    margin: 0 0 14px;
}

.sf-prose p:last-child {
    margin-bottom: 0;
}

.sf-media {
    margin: 0 0 24px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sf-media img {
    display: block;
    width: 100%;
    height: auto;
}

.sf-cards {
    display: grid;
    gap: 14px;
}

.sf-cards-2 { grid-template-columns: repeat(2, 1fr); }
.sf-cards-3 { grid-template-columns: repeat(3, 1fr); }
.sf-cards-4 { grid-template-columns: repeat(4, 1fr); }
.sf-cards-5 { grid-template-columns: 1.4fr repeat(4, 1fr); }

.sf-card {
    background: var(--sf-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 20px 18px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.sf-card:hover {
    border-color: rgba(232, 196, 120, 0.45);
    transform: translateY(-2px);
}

.sf-card-focus {
    border-color: rgba(232, 196, 120, 0.5);
    background: linear-gradient(160deg, rgba(55, 48, 28, 0.85), rgba(22, 28, 24, 0.95));
}

.sf-card h3 {
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.12em;
    color: #fff;
    margin: 0 0 8px;
    font-weight: 600;
}

.sf-card p {
    color: var(--sf-muted);
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0;
}

.sf-label {
    display: block;
    font-size: 0.75em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sf-accent);
    margin-bottom: 8px;
}

.sf-num {
    display: block;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.9em;
    color: var(--sf-accent-2);
    line-height: 1.1;
    margin-bottom: 8px;
}

.sf-num.sm {
    font-size: 1.35em;
    color: var(--sf-accent);
}

.sf-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.sf-list li {
    color: var(--sf-muted);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.95em;
}

.sf-list li:last-child {
    border-bottom: none;
}

.sf-card .btn,
.sf-card .btn-green {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 4px;
}

.sf-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.sf-note {
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid var(--sf-line);
    background: rgba(232, 196, 120, 0.08);
    color: var(--sf-muted);
    line-height: 1.6;
    font-size: 0.95em;
}

.sf-note-warn {
    border-color: rgba(220, 90, 80, 0.4);
    background: rgba(220, 90, 80, 0.1);
    color: #e8c8c4;
}

.sf-faq .faq-item {
    background: var(--sf-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 10px;
}

.sf-card .review-date {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.8em;
    color: var(--sf-accent);
}

@media (max-width: 980px) {
    .sf-cards-4,
    .sf-cards-3,
    .sf-cards-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .sf-band {
        padding: 24px 16px;
    }

    .sf-cards-2,
    .sf-cards-3,
    .sf-cards-4,
    .sf-cards-5 {
        grid-template-columns: 1fr;
    }

    .sf-actions {
        flex-direction: column;
    }

    .sf-actions .btn,
    .sf-actions .btn-green,
    .sf-actions .btn-hero {
        width: 100%;
        text-align: center;
    }
}


/* ========== SF Header + Hero redesign ========== */
.sf-header.header {
    background: rgba(12, 16, 14, 0.92);
    border-bottom: 1px solid rgba(232, 196, 120, 0.22);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
}

.sf-nav-wrap {
    max-width: 1200px;
    padding-right: 20px;
}

.sf-nav.nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    position: relative;
}

.sf-nav-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sf-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: 0;
}

.sf-brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(232, 196, 120, 0.4);
}

.sf-brand-name,
.sf-brand-tag {
    display: none !important;
}

.sf-nav-links.nav-links-extended {
    justify-content: center;
    gap: 2px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

.sf-nav-links.nav-links-extended::-webkit-scrollbar {
    display: none;
}

.sf-nav-links.nav-links-extended a {
    color: #cfc8bb;
    padding: 7px 10px;
    border-radius: 6px;
    font-size: 0.78em;
    font-weight: 500;
    letter-spacing: 0.01em;
    background: transparent;
    box-shadow: none;
}

.sf-nav-links.nav-links-extended a:hover {
    color: #e8c478;
    background: rgba(232, 196, 120, 0.1);
    box-shadow: none;
}

.sf-nav-links.nav-links-extended a.current {
    color: #12140f;
    background: #e8c478;
    box-shadow: none;
    font-weight: 700;
}

.sf-nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-right: 4px;
}

.sf-btn-ghost,
.sf-btn-solid {
    text-decoration: none;
    font-size: 0.82em;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 6px;
    white-space: nowrap;
    transition: 0.2s ease;
}

.sf-btn-ghost {
    color: #e8c478;
    border: 1px solid rgba(232, 196, 120, 0.45);
    background: transparent;
}

.sf-btn-ghost:hover {
    background: rgba(232, 196, 120, 0.12);
}

.sf-btn-solid {
    color: #12140f;
    background: linear-gradient(135deg, #f0d78a 0%, #e8c478 55%, #d4a84a 100%);
    border: 1px solid #e8c478;
}

.sf-btn-solid:hover {
    filter: brightness(1.06);
}

.sf-menu-btn.mobile-menu-toggle {
    display: none;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(232, 196, 120, 0.55);
    border-radius: 8px;
    background: rgba(232, 196, 120, 0.08);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.sf-menu-btn.mobile-menu-toggle:hover {
    background: rgba(232, 196, 120, 0.16);
    border-color: #e8c478;
}

.sf-menu-btn span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0;
    background: #e8c478;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}

.sf-menu-btn.is-open {
    background: rgba(232, 196, 120, 0.2);
    border-color: #e8c478;
}

.sf-menu-btn.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.sf-menu-btn.is-open span:nth-child(2) {
    opacity: 0;
}

.sf-menu-btn.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.sf-hero.hero {
    text-align: left;
    padding: 28px 0 40px;
}

.sf-hero-stage {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
    margin-bottom: 28px;
}

.sf-hero-kicker {
    display: inline-block;
    font-size: 0.75em;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #e8c478;
    font-weight: 700;
    margin-bottom: 14px;
}

.sf-hero h1 {
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2.2em, 4.5vw, 3.4em);
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.15;
    background: none;
    -webkit-text-fill-color: initial;
    color: #f3efe6;
    filter: none;
    animation: none;
    text-align: left;
}

.sf-hero-sub {
    color: #b7b0a3;
    font-size: 1.08em;
    line-height: 1.65;
    margin-bottom: 18px;
    max-width: 36em;
}

.sf-hero-desc.hero-description {
    max-width: none;
    margin: 0 0 22px;
    padding: 18px 20px;
    background: rgba(22, 28, 24, 0.92);
    border: 1px solid rgba(232, 196, 120, 0.35);
    border-left: 1px solid rgba(232, 196, 120, 0.35);
    border-radius: 8px;
    box-shadow: none;
    backdrop-filter: none;
}

.sf-hero-desc.hero-description p {
    color: #d8d2c6;
    font-size: 0.98em;
    line-height: 1.7;
}

.sf-hero-desc.hero-description strong {
    color: #e8c478;
}

.sf-hero-actions.hero-buttons {
    justify-content: flex-start;
    gap: 10px;
    margin: 0 0 18px;
}

.sf-hero .btn-hero {
    border-radius: 6px;
    padding: 14px 22px;
    font-size: 0.95em;
    box-shadow: none;
}

.sf-hero .btn-hero.btn-primary {
    background: linear-gradient(135deg, #f0d78a 0%, #e8c478 55%, #d4a84a 100%);
    color: #12140f;
    border: 1px solid #e8c478;
}

.sf-hero .btn-hero.btn-secondary {
    background: transparent;
    color: #e8c478;
    border: 1px solid rgba(232, 196, 120, 0.5);
}

.sf-hero .btn-hero.btn-warning {
    background: transparent;
    color: #e8a090;
    border: 1px solid rgba(220, 120, 100, 0.45);
}

.sf-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sf-hero-chips span {
    font-size: 0.8em;
    color: #cfc8bb;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.2);
}

.sf-hero-visual.hero-banner {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(232, 196, 120, 0.25);
    background: rgba(0, 0, 0, 0.25);
}

.sf-hero-visual .banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.35s ease;
}

.sf-hero-visual:hover .banner-image {
    transform: scale(1.02);
}

.sf-welcome.welcome-box {
    background: rgba(22, 28, 24, 0.92);
    border: 1px solid rgba(232, 196, 120, 0.28);
    border-radius: 8px;
    box-shadow: none;
    overflow: hidden;
}

.sf-welcome.welcome-box:hover {
    transform: none;
    box-shadow: none;
}

.sf-welcome-top {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 20px;
    align-items: center;
    padding: 24px 24px 8px;
}

.sf-welcome.welcome-box h3 {
    font-family: "Fraunces", Georgia, serif;
    color: #f3efe6;
    font-size: 1.45em;
    padding: 0;
    margin: 0 0 8px;
    background: none;
    text-align: left;
}

.sf-welcome.welcome-box h3::before {
    display: none;
}

.sf-welcome-lead {
    color: #b7b0a3;
    line-height: 1.6;
    margin: 0;
    font-size: 0.98em;
}

.sf-welcome-thumb {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sf-welcome.welcome-box > ul {
    padding: 8px 24px 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.sf-welcome.welcome-box li {
    background: rgba(12, 16, 14, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 14px 16px;
    margin: 0;
    list-style: none;
}

.sf-welcome.welcome-box li:hover {
    border-color: rgba(232, 196, 120, 0.4);
    background: rgba(12, 16, 14, 0.9);
}

.sf-welcome.welcome-box li strong {
    color: #e8c478;
    font-size: 0.95em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0;
    position: relative;
}

.sf-welcome.welcome-box li strong::before {
    display: none;
}

.sf-welcome.welcome-box li strong::after {
    content: "+";
    position: static;
    color: #e8c478;
    font-size: 1.1em;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.sf-welcome.welcome-box li.expanded strong::after {
    content: "–";
    transform: none;
}

.sf-welcome.welcome-box li::after {
    content: attr(data-detail);
    display: block;
    margin: 10px 0 0;
    padding: 0;
    color: #cfc8bb;
    font-size: 0.9em;
    line-height: 1.55;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    border-top: 1px solid transparent;
    transition: all 0.35s ease;
}

.sf-welcome.welcome-box li.expanded::after {
    max-height: 280px;
    opacity: 1;
    padding-top: 12px;
    border-top-color: rgba(255, 255, 255, 0.08);
}

.sf-welcome.welcome-box li.expanded {
    background: rgba(232, 196, 120, 0.08);
    border-color: rgba(232, 196, 120, 0.35);
}

.sf-welcome.welcome-box .help-resources {
    margin: 0 24px 24px;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid rgba(220, 90, 80, 0.35);
    background: rgba(220, 90, 80, 0.1);
}

.sf-welcome.welcome-box .help-resources p {
    color: #e8c8c4;
    margin: 0;
    font-size: 0.92em;
    line-height: 1.6;
}

@media (max-width: 980px) {
    .sf-nav.nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        grid-template-columns: none;
        padding-right: 8px;
        padding-left: 4px;
    }

    .sf-nav-left {
        order: 1;
        gap: 14px;
    }

    .sf-nav-cta {
        order: 2;
        margin-left: auto;
        margin-right: 12px;
        gap: 12px;
        padding-right: 6px;
    }

    .sf-nav-links.nav-links-extended {
        display: none;
        order: 3;
        position: static;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 6px;
        margin-top: 8px;
        padding: 14px 12px;
        background: linear-gradient(165deg, rgba(22, 28, 24, 0.98), rgba(12, 16, 14, 0.98));
        border: 1px solid rgba(232, 196, 120, 0.35);
        border-radius: 12px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(232, 196, 120, 0.12);
        z-index: 20;
        overflow: hidden;
    }

    .sf-nav-links.nav-links-extended.active {
        display: flex;
        flex-direction: column;
        animation: sfMenuIn 0.28s ease;
    }

    .sf-nav-links.nav-links-extended::before {
        content: "Menu";
        display: block;
        width: 100%;
        font-size: 0.72em;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: #e8c478;
        font-weight: 700;
        padding: 2px 10px 10px;
        margin-bottom: 2px;
        border-bottom: 1px solid rgba(232, 196, 120, 0.2);
        box-sizing: border-box;
    }

    .sf-nav-links.nav-links-extended a {
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align: left;
        padding: 13px 14px;
        margin: 0;
        border: 1px solid transparent;
        border-radius: 8px;
        font-size: 0.95em;
        font-weight: 600;
        color: #e8e2d6;
        background: rgba(255, 255, 255, 0.03);
        white-space: nowrap;
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .sf-nav-links.nav-links-extended a:hover,
    .sf-nav-links.nav-links-extended a:active {
        color: #12140f;
        background: linear-gradient(135deg, #f0d78a, #e8c478);
        border-color: rgba(232, 196, 120, 0.6);
        transform: none;
    }

    .sf-nav-links.nav-links-extended a.current {
        color: #12140f;
        background: linear-gradient(135deg, #f0d78a, #e8c478);
        border-color: rgba(232, 196, 120, 0.55);
        font-weight: 700;
        box-shadow: 0 4px 14px rgba(232, 196, 120, 0.25);
    }

    .sf-menu-btn.mobile-menu-toggle {
        display: flex;
    }

    .sf-btn-ghost,
    .sf-btn-solid {
        padding: 9px 10px;
        font-size: 0.72em;
        letter-spacing: 0.02em;
    }

    .sf-btn-solid {
        white-space: nowrap;
    }

    .sf-hero-stage {
        grid-template-columns: 1fr;
    }

    .sf-welcome-top {
        grid-template-columns: 1fr;
    }

    .sf-welcome.welcome-box > ul {
        grid-template-columns: 1fr;
    }

    .sf-hero-actions.hero-buttons {
        flex-direction: column;
    }

    .sf-hero .btn-hero {
        width: 100%;
        justify-content: center;
    }
}

@keyframes sfMenuIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .sf-nav-cta .sf-btn-ghost {
        display: inline-flex;
    }

    .main {
        margin-top: 76px;
    }
}

/* Page palette aligned to top nav */
.sf-floor {
    --sf-accent-2: #e8c478;
}

.btn-green {
    background: linear-gradient(135deg, #f0d78a 0%, #e8c478 55%, #d4a84a 100%);
    box-shadow: 0 4px 15px rgba(232, 196, 120, 0.28);
    color: #12140f;
}

.btn-green:hover {
    box-shadow: 0 6px 20px rgba(232, 196, 120, 0.4);
}

.faq-item {
    background: rgba(22, 28, 24, 0.92) !important;
    border-color: rgba(232, 196, 120, 0.22) !important;
}

.faq-question strong {
    color: #f3efe6 !important;
}

/* ========== Subpage layout (slot.html first) ========== */
.pg-kicker {
    font-size: 0.75em;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #e8c478;
    font-weight: 700;
    margin-bottom: 10px;
}

.pg-hero {
    text-align: left;
    padding: 24px 0 20px;
}

.pg-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.pg-hero-img-left .pg-hero-media {
    order: 1;
}

.pg-hero-img-left .pg-hero-copy {
    order: 2;
}

.pg-hero-media {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(232, 196, 120, 0.28);
}

.pg-hero-media img {
    display: block;
    width: 100%;
    height: auto;
}

.pg-hero-border {
    border: 1px solid rgba(232, 196, 120, 0.4);
    border-radius: 8px;
    padding: 22px 22px 20px;
    background: rgba(22, 28, 24, 0.92);
}

.pg-hero-border h1 {
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.7em, 3.2vw, 2.4em);
    color: #f3efe6;
    line-height: 1.2;
    margin: 0 0 12px;
    background: none;
    -webkit-text-fill-color: initial;
    animation: none;
    filter: none;
    text-align: left;
}

.pg-hero-lead,
.pg-hero-extra {
    color: #cfc8bb;
    line-height: 1.7;
    margin: 0 0 12px;
    font-size: 1em;
}

.pg-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.pg-hero .btn-hero {
    border-radius: 6px;
    padding: 12px 18px;
    font-size: 0.92em;
}

.pg-hero .btn-hero.btn-primary {
    background: linear-gradient(135deg, #f0d78a, #e8c478 55%, #d4a84a);
    color: #12140f;
    border: 1px solid #e8c478;
}

.pg-hero .btn-hero.btn-secondary {
    background: transparent;
    color: #e8c478;
    border: 1px solid rgba(232, 196, 120, 0.5);
}

.pg-hero .btn-hero.btn-warning {
    background: transparent;
    color: #e8a090;
    border: 1px solid rgba(220, 120, 100, 0.45);
}

.pg-page h2 {
    font-family: "Fraunces", Georgia, serif;
    color: #fff;
    font-size: clamp(1.35em, 2.5vw, 1.85em);
    margin: 0 0 14px;
    text-align: left;
}

.pg-intro {
    color: #b7b0a3;
    line-height: 1.7;
    margin: 0 0 18px;
}

/* Block: chip strip */
.pg-strip {
    margin: 28px 0;
    padding: 28px 24px;
    border: 1px dashed rgba(232, 196, 120, 0.35);
    border-radius: 8px;
    background: rgba(14, 18, 16, 0.5);
}

.pg-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pg-chips span {
    border: 1px solid rgba(232, 196, 120, 0.35);
    border-radius: 999px;
    padding: 8px 14px;
    color: #e8e2d6;
    font-size: 0.88em;
    background: rgba(232, 196, 120, 0.06);
}

/* Block: split */
.pg-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: center;
    margin: 36px 0;
    padding: 0;
}

.pg-split-text {
    padding: 8px 0;
}

.pg-split-text p {
    color: #cfc8bb;
    line-height: 1.75;
    margin: 0 0 14px;
}

.pg-plain-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.pg-plain-list li {
    color: #e8e2d6;
    padding: 8px 0 8px 18px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pg-plain-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e8c478;
    position: absolute;
    left: 0;
    top: 16px;
}

.pg-split-media {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(232, 196, 120, 0.25);
}

.pg-split-media img {
    display: block;
    width: 100%;
    height: auto;
}

/* Block: metrics */
.pg-metrics {
    margin: 36px 0;
    padding: 28px 22px;
    background: rgba(28, 36, 30, 0.75);
    border-top: 2px solid #e8c478;
    border-bottom: 2px solid #e8c478;
    border-radius: 0;
}

.pg-metric-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.pg-metric-row article {
    text-align: center;
    padding: 16px 10px;
    background: rgba(12, 16, 14, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
}

.pg-metric-row strong {
    display: block;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.35em;
    color: #e8c478;
    margin-bottom: 6px;
}

.pg-metric-row span {
    color: #b7b0a3;
    font-size: 0.85em;
}

/* Block: full feature image */
.pg-feature {
    margin: 36px 0;
}

.pg-feature figure {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(232, 196, 120, 0.25);
}

.pg-feature img {
    display: block;
    width: 100%;
    height: auto;
}

.pg-feature figcaption {
    padding: 14px 16px;
    background: rgba(22, 28, 24, 0.95);
    color: #b7b0a3;
    font-size: 0.95em;
    line-height: 1.6;
    border-top: 1px solid rgba(232, 196, 120, 0.2);
}

/* Block: steps */
.pg-steps {
    margin: 36px 0;
    padding: 28px 24px;
    background: rgba(14, 18, 16, 0.65);
    border-left: 3px solid #e8c478;
    border-radius: 0 8px 8px 0;
}

.pg-step-list {
    list-style: none;
    counter-reset: pgstep;
    padding: 0;
    margin: 0 0 20px;
}

.pg-step-list li {
    counter-increment: pgstep;
    position: relative;
    padding: 14px 14px 14px 52px;
    margin-bottom: 8px;
    color: #cfc8bb;
    background: rgba(22, 28, 24, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    line-height: 1.55;
}

.pg-step-list li::before {
    content: counter(pgstep);
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e8c478;
    color: #12140f;
    font-weight: 700;
    font-size: 0.85em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pg-step-list strong {
    color: #fff;
}

.pg-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Block: duo panels */
.pg-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 36px 0;
}

.pg-duo-card {
    background: rgba(22, 28, 24, 0.92);
    border: 1px solid rgba(232, 196, 120, 0.28);
    border-radius: 8px;
    padding: 14px;
}

.pg-duo-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 14px;
}

.pg-duo-card h3 {
    font-family: "Fraunces", Georgia, serif;
    color: #fff;
    margin: 0 0 8px;
}

.pg-duo-card p {
    color: #b7b0a3;
    line-height: 1.65;
    margin: 0 0 14px;
    font-size: 0.95em;
}

/* Block: FAQ */
.pg-faq {
    margin: 36px 0;
    padding: 24px;
    background: rgba(28, 36, 30, 0.55);
    border-radius: 8px;
    border: 1px solid rgba(232, 196, 120, 0.2);
}

/* Block: safe CTA */
.pg-safe {
    margin: 36px 0 60px;
    padding: 28px 24px;
    text-align: center;
    background: linear-gradient(145deg, rgba(40, 52, 42, 0.9), rgba(18, 24, 20, 0.95));
    border: 1px solid rgba(232, 196, 120, 0.4);
    border-radius: 8px;
}

.pg-safe .pg-kicker,
.pg-safe h2 {
    text-align: center;
}

.pg-safe p {
    color: #cfc8bb;
    max-width: 640px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

.pg-safe .pg-actions {
    justify-content: center;
}

@media (max-width: 900px) {
    .pg-hero-grid,
    .pg-split,
    .pg-duo {
        grid-template-columns: 1fr;
    }

    .pg-hero-img-left .pg-hero-media,
    .pg-hero-img-left .pg-hero-copy {
        order: initial;
    }

    .pg-metric-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .pg-metric-row {
        grid-template-columns: 1fr;
    }

    .pg-hero-actions,
    .pg-actions {
        flex-direction: column;
    }

    .pg-hero-actions .btn-hero,
    .pg-actions .btn,
    .pg-actions .btn-green,
    .pg-actions .btn-hero {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ========== games.html block variants ========== */
.pg-hero-text-left .pg-hero-copy {
    order: 1;
}

.pg-hero-text-left .pg-hero-media {
    order: 2;
}

.pg-bento {
    margin: 32px 0;
}

.pg-bento-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}

.pg-bento-tile {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(232, 196, 120, 0.28);
    min-height: 160px;
    background: #12160f;
}

.pg-bento-lg {
    grid-row: 1 / span 2;
    min-height: 340px;
}

.pg-bento-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.75;
    transition: opacity 0.25s ease, transform 0.35s ease;
}

.pg-bento-tile:hover img {
    opacity: 0.9;
    transform: scale(1.03);
}

.pg-bento-tile span,
.pg-bento-tile em {
    position: absolute;
    left: 14px;
    color: #fff;
    z-index: 1;
}

.pg-bento-tile span {
    bottom: 34px;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.25em;
    font-weight: 700;
}

.pg-bento-tile em {
    bottom: 14px;
    font-style: normal;
    font-size: 0.85em;
    color: #e8c478;
}

.pg-bento-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 10, 8, 0.92), transparent 55%);
}

.pg-rows {
    margin: 36px 0;
    padding: 8px 0;
    border-top: 1px solid rgba(232, 196, 120, 0.25);
    border-bottom: 1px solid rgba(232, 196, 120, 0.25);
}

.pg-rows h2 {
    margin-bottom: 18px;
}

.pg-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 16px;
    padding: 16px 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    align-items: baseline;
}

.pg-row strong {
    color: #e8c478;
    font-size: 0.95em;
}

.pg-row span {
    color: #cfc8bb;
    line-height: 1.5;
}

.pg-zig {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.pg-zig-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: center;
}

.pg-zig-flip {
    direction: rtl;
}

.pg-zig-flip > * {
    direction: ltr;
}

.pg-zig-item figure {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(232, 196, 120, 0.25);
}

.pg-zig-item img {
    display: block;
    width: 100%;
    height: auto;
}

.pg-zig-item p {
    color: #cfc8bb;
    line-height: 1.75;
    margin: 0 0 14px;
}

.pg-quote {
    margin: 40px 0;
    padding: 36px 28px;
    text-align: center;
    background: rgba(232, 196, 120, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(232, 196, 120, 0.3);
}

.pg-quote blockquote {
    margin: 0;
    max-width: 720px;
    margin-inline: auto;
}

.pg-quote p {
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.2em, 2.4vw, 1.55em);
    color: #f3efe6;
    line-height: 1.45;
    margin: 0 0 14px;
}

.pg-quote footer {
    color: #e8c478;
    font-size: 0.9em;
}

.pg-rail {
    margin: 36px 0;
}

.pg-rail-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(140px, 1fr);
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.pg-rail-card {
    border: 1px solid rgba(232, 196, 120, 0.3);
    border-radius: 8px;
    padding: 18px 14px;
    background: rgba(22, 28, 24, 0.9);
    min-width: 140px;
}

.pg-rail-card h3 {
    color: #e8c478;
    margin: 0 0 6px;
    font-size: 1em;
}

.pg-rail-card p {
    color: #b7b0a3;
    margin: 0;
    font-size: 0.88em;
}

.pg-check {
    margin: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 20px;
    align-items: center;
    padding: 24px;
    background: rgba(14, 18, 16, 0.7);
    border-radius: 8px;
    border: 1px solid rgba(232, 196, 120, 0.22);
}

.pg-check ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pg-check li {
    color: #cfc8bb;
    padding: 10px 0 10px 28px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    line-height: 1.5;
}

.pg-check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e8c478;
    font-weight: 700;
}

.pg-check img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    border: 1px solid rgba(232, 196, 120, 0.25);
}

@media (max-width: 900px) {
    .pg-bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pg-bento-lg {
        grid-row: auto;
        grid-column: 1 / -1;
        min-height: 220px;
    }

    .pg-zig-item,
    .pg-zig-flip,
    .pg-check {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .pg-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

@media (max-width: 560px) {
    .pg-bento-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== casino.html block variants ========== */
.pg-badge-row {
    margin: 28px 0;
    padding: 26px 22px;
    border: 1px solid rgba(232, 196, 120, 0.28);
    border-radius: 8px;
    background: rgba(22, 28, 24, 0.75);
}

.pg-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pg-badges span {
    padding: 9px 14px;
    border-radius: 6px;
    border: 1px solid rgba(232, 196, 120, 0.4);
    color: #e8e2d6;
    font-size: 0.88em;
    background: rgba(12, 16, 14, 0.8);
}

.pg-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 36px 0;
}

.pg-pillars article {
    padding: 22px 18px;
    border-top: 3px solid #e8c478;
    background: rgba(14, 18, 16, 0.7);
    border-radius: 0 0 8px 8px;
}

.pg-pillars h3 {
    font-family: "Fraunces", Georgia, serif;
    color: #fff;
    margin: 0 0 10px;
}

.pg-pillars p {
    color: #b7b0a3;
    margin: 0;
    line-height: 1.65;
    font-size: 0.95em;
}

.pg-live-grid {
    margin: 36px 0;
}

.pg-live-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.pg-live-cards article {
    background: rgba(22, 28, 24, 0.92);
    border: 1px solid rgba(232, 196, 120, 0.25);
    border-radius: 8px;
    overflow: hidden;
}

.pg-live-cards img {
    display: block;
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.pg-live-cards h3 {
    font-family: "Fraunces", Georgia, serif;
    color: #fff;
    margin: 14px 14px 6px;
}

.pg-live-cards p {
    color: #b7b0a3;
    margin: 0 14px 16px;
    line-height: 1.6;
    font-size: 0.92em;
}

.pg-ticker {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin: 36px 0;
    background: rgba(232, 196, 120, 0.25);
    border: 1px solid rgba(232, 196, 120, 0.35);
    border-radius: 8px;
    overflow: hidden;
}

.pg-ticker div {
    background: rgba(12, 16, 14, 0.95);
    text-align: center;
    padding: 22px 10px;
}

.pg-ticker strong {
    display: block;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.5em;
    color: #e8c478;
    margin-bottom: 4px;
}

.pg-ticker span {
    color: #b7b0a3;
    font-size: 0.85em;
}

.pg-spotlight {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 22px;
    align-items: center;
    margin: 40px 0;
    padding: 18px;
    background: rgba(28, 36, 30, 0.55);
    border-radius: 8px;
}

.pg-spotlight figure {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(232, 196, 120, 0.25);
}

.pg-spotlight img {
    display: block;
    width: 100%;
    height: auto;
}

.pg-spotlight p {
    color: #cfc8bb;
    line-height: 1.75;
    margin: 0 0 14px;
}

.pg-howto {
    margin: 36px 0;
    padding: 26px 20px;
    border: 1px dashed rgba(232, 196, 120, 0.4);
    border-radius: 8px;
}

.pg-howto-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.pg-howto-grid div {
    padding: 16px 12px;
    background: rgba(22, 28, 24, 0.9);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pg-howto-grid span {
    display: block;
    color: #e8c478;
    font-weight: 700;
    font-size: 0.8em;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.pg-howto-grid p {
    color: #cfc8bb;
    margin: 0;
    font-size: 0.92em;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .pg-pillars,
    .pg-live-cards,
    .pg-ticker,
    .pg-howto-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pg-spotlight {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .pg-pillars,
    .pg-live-cards,
    .pg-ticker,
    .pg-howto-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== crash.html block variants ========== */
.pg-curve {
    margin: 28px 0;
    padding: 28px 20px;
    background: rgba(22, 28, 24, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(232, 196, 120, 0.28);
}

.pg-curve-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    position: relative;
}

.pg-curve-track::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, #e8c478, rgba(232, 196, 120, 0.2));
    z-index: 0;
}

.pg-curve-node {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 8px;
}

.pg-curve-node strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #e8c478;
    color: #12140f;
    font-size: 0.85em;
    margin-bottom: 10px;
}

.pg-curve-node span {
    display: block;
    color: #b7b0a3;
    font-size: 0.88em;
}

.pg-dial {
    margin: 36px 0;
}

.pg-dial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.pg-dial-grid article {
    padding: 20px 16px;
    border-radius: 50% / 18%;
    border: 1px solid rgba(232, 196, 120, 0.35);
    background: rgba(14, 18, 16, 0.75);
    text-align: center;
}

.pg-dial-grid h3 {
    color: #e8c478;
    margin: 0 0 8px;
    font-size: 1em;
}

.pg-dial-grid p {
    color: #cfc8bb;
    margin: 0;
    font-size: 0.9em;
    line-height: 1.55;
}

.pg-graph {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: center;
    margin: 40px 0;
    padding: 24px;
    background: rgba(28, 36, 30, 0.6);
    border-radius: 8px;
}

.pg-graph-copy p {
    color: #cfc8bb;
    line-height: 1.75;
    margin: 0 0 14px;
}

.pg-graph-visual {
    margin: 0;
    height: 180px;
    border-radius: 8px;
    border: 1px solid rgba(232, 196, 120, 0.3);
    background: rgba(12, 16, 14, 0.9);
    position: relative;
    overflow: hidden;
}

.pg-graph-line {
    position: absolute;
    left: 8%;
    right: 12%;
    bottom: 28%;
    height: 3px;
    background: #e8c478;
    transform: rotate(-18deg);
    transform-origin: left center;
    box-shadow: 0 0 16px rgba(232, 196, 120, 0.45);
}

.pg-graph-line::after {
    content: "";
    position: absolute;
    right: -6px;
    top: -5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e07a6a;
    box-shadow: 0 0 12px rgba(224, 122, 106, 0.7);
}

.pg-graph-labels {
    position: absolute;
    left: 10%;
    right: 8%;
    bottom: 12px;
    display: flex;
    justify-content: space-between;
    color: #8f887c;
    font-size: 0.75em;
}

.pg-modes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 36px 0;
}

.pg-modes article {
    padding: 24px 20px;
    border-left: 4px solid #e8c478;
    background: rgba(22, 28, 24, 0.9);
    border-radius: 0 8px 8px 0;
}

.pg-modes h3 {
    font-family: "Fraunces", Georgia, serif;
    color: #fff;
    margin: 0 0 8px;
}

.pg-modes p {
    color: #b7b0a3;
    margin: 0;
    line-height: 1.65;
}

.pg-mobile-band {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 20px;
    align-items: center;
    margin: 40px 0;
    padding: 16px;
    border: 1px solid rgba(232, 196, 120, 0.28);
    border-radius: 8px;
    background: rgba(14, 18, 16, 0.65);
}

.pg-mobile-band img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.pg-mobile-band p {
    color: #cfc8bb;
    line-height: 1.75;
    margin: 0 0 14px;
}

@media (max-width: 900px) {
    .pg-curve-track,
    .pg-dial-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pg-curve-track::before {
        display: none;
    }

    .pg-graph,
    .pg-modes,
    .pg-mobile-band {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .pg-curve-track,
    .pg-dial-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== sports.html block variants ========== */
.pg-league {
    margin: 28px 0;
}

.pg-league-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.pg-league-item {
    padding: 18px 16px;
    background: rgba(22, 28, 24, 0.92);
    border: 1px solid rgba(232, 196, 120, 0.28);
    border-radius: 8px;
    border-bottom: 3px solid #e8c478;
}

.pg-league-item strong {
    display: block;
    color: #fff;
    font-family: "Fraunces", Georgia, serif;
    margin-bottom: 6px;
}

.pg-league-item span {
    color: #b7b0a3;
    font-size: 0.88em;
}

.pg-odds {
    margin: 36px 0;
    padding: 22px;
    background: rgba(14, 18, 16, 0.7);
    border-radius: 8px;
    border: 1px solid rgba(232, 196, 120, 0.25);
}

.pg-odds-table {
    display: grid;
    gap: 0;
    margin-bottom: 12px;
    border: 1px solid rgba(232, 196, 120, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.pg-odds-head,
.pg-odds-row {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr;
    gap: 0;
}

.pg-odds-head {
    background: rgba(232, 196, 120, 0.18);
    color: #e8c478;
    font-size: 0.82em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pg-odds-head span,
.pg-odds-row span {
    padding: 12px 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.pg-odds-head span:last-child,
.pg-odds-row span:last-child {
    border-right: none;
}

.pg-odds-row {
    background: rgba(12, 16, 14, 0.9);
    color: #cfc8bb;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pg-odds-row span:not(:first-child) {
    text-align: center;
    color: #e8c478;
    font-weight: 600;
}

.pg-vs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 36px 0;
}

.pg-vs article {
    padding: 24px 20px;
    background: rgba(22, 28, 24, 0.9);
    border-radius: 8px;
    border: 1px solid rgba(232, 196, 120, 0.28);
}

.pg-vs h3 {
    font-family: "Fraunces", Georgia, serif;
    color: #fff;
    margin: 0 0 10px;
}

.pg-vs p {
    color: #b7b0a3;
    margin: 0;
    line-height: 1.65;
}

.pg-slip {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 20px;
    align-items: center;
    margin: 40px 0;
    padding: 22px;
    border-left: 3px solid #e8c478;
    background: rgba(28, 36, 30, 0.5);
    border-radius: 0 8px 8px 0;
}

.pg-slip ol {
    margin: 0;
    padding-left: 18px;
    color: #cfc8bb;
    line-height: 1.9;
}

.pg-slip img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    border: 1px solid rgba(232, 196, 120, 0.25);
}

.pg-highlight {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 22px;
    align-items: center;
    margin: 40px 0;
}

.pg-highlight figure {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(232, 196, 120, 0.28);
}

.pg-highlight img {
    display: block;
    width: 100%;
    height: auto;
}

.pg-highlight p {
    color: #cfc8bb;
    line-height: 1.75;
    margin: 0 0 14px;
}

.pg-sports-icons {
    margin: 36px 0;
    padding: 24px;
    text-align: center;
    border: 1px dashed rgba(232, 196, 120, 0.4);
    border-radius: 8px;
}

.pg-sports-icons h2 {
    text-align: center;
}

.pg-icon-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.pg-icon-row span {
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(232, 196, 120, 0.12);
    border: 1px solid rgba(232, 196, 120, 0.4);
    color: #e8e2d6;
    font-weight: 600;
    font-size: 0.9em;
}

@media (max-width: 900px) {
    .pg-league-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pg-vs,
    .pg-slip,
    .pg-highlight {
        grid-template-columns: 1fr;
    }

    .pg-odds-head,
    .pg-odds-row {
        grid-template-columns: 1.2fr 0.7fr 0.7fr 0.7fr;
        font-size: 0.9em;
    }
}

@media (max-width: 560px) {
    .pg-league-grid {
        grid-template-columns: 1fr;
    }

    .pg-odds-head,
    .pg-odds-row {
        grid-template-columns: 1fr 1fr;
    }

    .pg-odds-head span:nth-child(n+3),
    .pg-odds-row span:nth-child(n+3) {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
}

/* ========== bônus.html block variants ========== */
.pg-ladder {
    margin: 28px 0 36px;
}

.pg-ladder-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
    border-left: 2px solid rgba(232, 196, 120, 0.45);
}

.pg-ladder-list li {
    position: relative;
    padding: 18px 18px 18px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pg-ladder-list li::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 26px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e8c478;
    box-shadow: 0 0 0 4px rgba(28, 36, 32, 1);
}

.pg-ladder-list strong {
    display: block;
    font-family: "Fraunces", Georgia, serif;
    color: #fff;
    font-size: 1.15em;
    margin-bottom: 6px;
}

.pg-ladder-list span {
    color: #b7b0a3;
    line-height: 1.65;
}

.pg-wager {
    margin: 36px 0;
    padding: 24px;
    background: rgba(14, 18, 16, 0.72);
    border: 1px solid rgba(232, 196, 120, 0.28);
    border-radius: 8px;
}

.pg-wager-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.pg-wager-grid article {
    padding: 18px 14px;
    text-align: center;
    background: rgba(22, 28, 24, 0.95);
    border: 1px solid rgba(232, 196, 120, 0.25);
    border-radius: 8px;
}

.pg-wager-label {
    display: block;
    color: #e8c478;
    font-size: 0.78em;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pg-wager-grid strong {
    display: block;
    font-family: "Fraunces", Georgia, serif;
    color: #fff;
    font-size: 1.45em;
    margin-bottom: 4px;
}

.pg-wager-grid em {
    color: #9a9388;
    font-style: normal;
    font-size: 0.88em;
}

.pg-rules {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 40px 0;
}

.pg-rules-yes,
.pg-rules-no {
    padding: 22px 20px;
    border-radius: 8px;
    background: rgba(22, 28, 24, 0.9);
}

.pg-rules-yes {
    border: 1px solid rgba(120, 200, 140, 0.35);
}

.pg-rules-no {
    border: 1px solid rgba(220, 120, 100, 0.35);
}

.pg-rules h3 {
    font-family: "Fraunces", Georgia, serif;
    color: #fff;
    margin: 0 0 14px;
}

.pg-rules ul {
    margin: 0;
    padding-left: 18px;
    color: #cfc8bb;
    line-height: 1.85;
}

.pg-cash {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 20px;
    align-items: center;
    margin: 40px 0;
    padding: 28px 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(232, 196, 120, 0.14), rgba(14, 18, 16, 0.9));
    border: 1px solid rgba(232, 196, 120, 0.35);
}

.pg-cash-num {
    text-align: center;
    padding: 16px;
}

.pg-cash-num span,
.pg-cash-num em {
    display: block;
    color: #e8c478;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8em;
}

.pg-cash-num strong {
    display: block;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    color: #fff;
    line-height: 1;
    margin: 6px 0;
}

.pg-cash-copy p {
    color: #cfc8bb;
    line-height: 1.75;
    margin: 0 0 16px;
}

.pg-spinband {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 22px;
    align-items: center;
    margin: 40px 0;
}

.pg-spinband figure {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(232, 196, 120, 0.28);
}

.pg-spinband img {
    display: block;
    width: 100%;
    height: auto;
}

.pg-spinband p {
    color: #cfc8bb;
    line-height: 1.75;
    margin: 0 0 14px;
}

.pg-vip {
    margin: 40px 0;
    padding: 24px;
    text-align: center;
    border: 1px dashed rgba(232, 196, 120, 0.4);
    border-radius: 8px;
}

.pg-vip h2 {
    text-align: center;
}

.pg-vip-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0 12px;
}

.pg-vip-step {
    padding: 20px 14px;
    background: rgba(22, 28, 24, 0.95);
    border: 1px solid rgba(232, 196, 120, 0.3);
    border-radius: 8px;
    border-top: 3px solid #e8c478;
}

.pg-vip-step strong {
    display: block;
    font-family: "Fraunces", Georgia, serif;
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 6px;
}

.pg-vip-step span {
    color: #b7b0a3;
    font-size: 0.9em;
}

@media (max-width: 900px) {
    .pg-wager-grid,
    .pg-rules,
    .pg-cash,
    .pg-spinband,
    .pg-vip-steps {
        grid-template-columns: 1fr;
    }
}

/* ========== promo.html block variants ========== */
.pg-calendar {
    margin: 28px 0 36px;
}

.pg-cal-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin: 18px 0 12px;
}

.pg-cal-day {
    padding: 14px 8px;
    text-align: center;
    background: rgba(22, 28, 24, 0.92);
    border: 1px solid rgba(232, 196, 120, 0.22);
    border-radius: 8px;
}

.pg-cal-day strong {
    display: block;
    font-family: "Fraunces", Georgia, serif;
    color: #fff;
    margin-bottom: 6px;
}

.pg-cal-day span {
    display: block;
    color: #b7b0a3;
    font-size: 0.78em;
    line-height: 1.35;
}

.pg-cal-hot {
    border-color: #e8c478;
    background: rgba(232, 196, 120, 0.14);
}

.pg-cal-hot strong {
    color: #e8c478;
}

.pg-offers {
    margin: 36px 0;
}

.pg-offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.pg-offer-grid article {
    padding: 20px 16px;
    background: rgba(14, 18, 16, 0.85);
    border: 1px solid rgba(232, 196, 120, 0.28);
    border-radius: 8px;
    border-bottom: 3px solid #e8c478;
}

.pg-offer-grid em {
    display: block;
    color: #e8c478;
    font-style: normal;
    font-size: 0.75em;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.pg-offer-grid strong {
    display: block;
    font-family: "Fraunces", Georgia, serif;
    color: #fff;
    font-size: 1.15em;
    margin-bottom: 8px;
}

.pg-offer-grid span {
    color: #b7b0a3;
    font-size: 0.92em;
    line-height: 1.55;
}

.pg-claim {
    margin: 40px 0;
    padding: 24px;
    background: rgba(28, 36, 30, 0.45);
    border-radius: 8px;
    border: 1px solid rgba(232, 196, 120, 0.25);
}

.pg-claim-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 18px;
    position: relative;
}

.pg-claim-track::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: rgba(232, 196, 120, 0.35);
}

.pg-claim-node {
    position: relative;
    z-index: 1;
    text-align: center;
}

.pg-claim-node strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1c2420;
    border: 2px solid #e8c478;
    color: #e8c478;
    font-family: "Fraunces", Georgia, serif;
    margin-bottom: 10px;
}

.pg-claim-node span {
    display: block;
    color: #cfc8bb;
    font-size: 0.9em;
}

.pg-feat {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 22px;
    align-items: center;
    margin: 40px 0;
}

.pg-feat figure {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(232, 196, 120, 0.28);
}

.pg-feat img {
    display: block;
    width: 100%;
    height: auto;
}

.pg-feat p {
    color: #cfc8bb;
    line-height: 1.75;
    margin: 0 0 14px;
}

.pg-feat .btn {
    margin-right: 8px;
    margin-bottom: 8px;
}

.pg-ticker {
    margin: 36px 0;
    text-align: center;
}

.pg-ticker h2 {
    text-align: center;
}

.pg-ticker-rail {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.pg-ticker-rail span {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(232, 196, 120, 0.1);
    border: 1px solid rgba(232, 196, 120, 0.4);
    color: #e8e2d6;
    font-weight: 600;
    font-size: 0.88em;
}

.pg-cities {
    margin: 40px 0;
    padding: 24px;
    background: rgba(14, 18, 16, 0.65);
    border-radius: 8px;
    border-left: 3px solid #e8c478;
}

.pg-city-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 18px;
}

.pg-city-chips span {
    padding: 8px 14px;
    border-radius: 6px;
    background: rgba(232, 196, 120, 0.12);
    border: 1px solid rgba(232, 196, 120, 0.3);
    color: #e8e2d6;
    font-size: 0.88em;
}

.pg-cities img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(232, 196, 120, 0.25);
}

@media (max-width: 900px) {
    .pg-cal-row {
        grid-template-columns: repeat(4, 1fr);
    }

    .pg-offer-grid,
    .pg-claim-track,
    .pg-feat {
        grid-template-columns: 1fr 1fr;
    }

    .pg-claim-track::before {
        display: none;
    }
}

@media (max-width: 560px) {
    .pg-cal-row,
    .pg-offer-grid,
    .pg-claim-track,
    .pg-feat {
        grid-template-columns: 1fr;
    }
}

/* ========== app.html block variants ========== */
.pg-store {
    margin: 28px 0 36px;
}

.pg-store-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 16px;
}

.pg-store-grid article {
    padding: 24px 20px;
    background: rgba(14, 18, 16, 0.85);
    border: 1px solid rgba(232, 196, 120, 0.3);
    border-radius: 8px;
}

.pg-store-os {
    margin: 0 0 8px;
    color: #e8c478;
    font-size: 0.78em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pg-store-grid strong {
    display: block;
    font-family: "Fraunces", Georgia, serif;
    color: #fff;
    font-size: 1.25em;
    margin-bottom: 8px;
}

.pg-store-grid span {
    display: block;
    color: #b7b0a3;
    margin-bottom: 16px;
    line-height: 1.55;
}

.pg-phone-feats {
    margin: 36px 0;
}

.pg-phone-list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.pg-phone-list li {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px 18px;
    background: rgba(22, 28, 24, 0.9);
    border: 1px solid rgba(232, 196, 120, 0.22);
    border-radius: 8px;
    border-left: 3px solid #e8c478;
}

.pg-phone-list strong {
    color: #fff;
    font-family: "Fraunces", Georgia, serif;
}

.pg-phone-list span {
    color: #b7b0a3;
    line-height: 1.6;
}

.pg-specs {
    margin: 36px 0;
    padding: 22px;
    background: rgba(14, 18, 16, 0.7);
    border-radius: 8px;
    border: 1px solid rgba(232, 196, 120, 0.25);
}

.pg-specs-table {
    margin-top: 14px;
    border: 1px solid rgba(232, 196, 120, 0.28);
    border-radius: 8px;
    overflow: hidden;
}

.pg-specs-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pg-specs-row:first-child {
    border-top: none;
}

.pg-specs-row span,
.pg-specs-row strong {
    padding: 12px 16px;
}

.pg-specs-row span {
    background: rgba(232, 196, 120, 0.12);
    color: #e8c478;
    font-size: 0.88em;
    font-weight: 600;
}

.pg-specs-row strong {
    color: #cfc8bb;
    font-weight: 500;
    background: rgba(12, 16, 14, 0.9);
}

.pg-install {
    margin: 40px 0;
}

.pg-install-steps {
    margin: 14px 0 20px;
    padding-left: 20px;
    color: #cfc8bb;
    line-height: 1.9;
}

.pg-install img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(232, 196, 120, 0.25);
}

.pg-mirror {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 22px;
    align-items: center;
    margin: 40px 0;
}

.pg-mirror p {
    color: #cfc8bb;
    line-height: 1.75;
    margin: 0 0 14px;
}

.pg-mirror figure {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(232, 196, 120, 0.28);
}

.pg-mirror img {
    display: block;
    width: 100%;
    height: auto;
}

.pg-signal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 36px 0;
}

.pg-signal article {
    padding: 20px 16px;
    text-align: center;
    background: rgba(22, 28, 24, 0.92);
    border: 1px solid rgba(232, 196, 120, 0.28);
    border-radius: 8px;
}

.pg-signal strong {
    display: block;
    font-family: "Fraunces", Georgia, serif;
    color: #fff;
    margin-bottom: 8px;
}

.pg-signal span {
    color: #b7b0a3;
    font-size: 0.92em;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .pg-store-grid,
    .pg-mirror,
    .pg-signal {
        grid-template-columns: 1fr;
    }

    .pg-phone-list li {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

/* ========== platform.html block variants ========== */
.pg-seals {
    margin: 28px 0 36px;
}

.pg-seal-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.pg-seal {
    padding: 18px 12px;
    text-align: center;
    background: rgba(14, 18, 16, 0.88);
    border: 1px solid rgba(232, 196, 120, 0.32);
    border-radius: 8px;
}

.pg-seal strong {
    display: block;
    font-family: "Fraunces", Georgia, serif;
    color: #e8c478;
    font-size: 1.05em;
    margin-bottom: 6px;
}

.pg-seal span {
    color: #b7b0a3;
    font-size: 0.82em;
}

.pg-pillars {
    margin: 36px 0;
}

.pg-pillar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.pg-pillar-grid article {
    padding: 22px 18px;
    background: rgba(22, 28, 24, 0.92);
    border: 1px solid rgba(232, 196, 120, 0.25);
    border-radius: 8px;
    border-top: 3px solid #e8c478;
}

.pg-pillar-grid em {
    display: block;
    color: #e8c478;
    font-style: normal;
    font-size: 0.75em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pg-pillar-grid strong {
    display: block;
    font-family: "Fraunces", Georgia, serif;
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 8px;
}

.pg-pillar-grid p {
    margin: 0;
    color: #b7b0a3;
    line-height: 1.65;
}

.pg-layers {
    margin: 40px 0;
    padding: 24px;
    background: rgba(14, 18, 16, 0.7);
    border-radius: 8px;
    border: 1px solid rgba(232, 196, 120, 0.25);
}

.pg-layer-list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    counter-reset: layer;
}

.pg-layer-list li {
    position: relative;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 14px;
    padding: 14px 14px 14px 52px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    counter-increment: layer;
}

.pg-layer-list li:last-child {
    border-bottom: none;
}

.pg-layer-list li::before {
    content: counter(layer);
    position: absolute;
    left: 0;
    top: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e8c478;
    color: #e8c478;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Fraunces", Georgia, serif;
    background: #1c2420;
}

.pg-layer-list strong {
    color: #fff;
    font-family: "Fraunces", Georgia, serif;
}

.pg-layer-list span {
    color: #b7b0a3;
    line-height: 1.55;
}

.pg-support {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 22px;
    align-items: center;
    margin: 40px 0;
}

.pg-support figure {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(232, 196, 120, 0.28);
}

.pg-support img {
    display: block;
    width: 100%;
    height: auto;
}

.pg-support p {
    color: #cfc8bb;
    line-height: 1.75;
    margin: 0 0 14px;
}

.pg-tools {
    margin: 36px 0;
}

.pg-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.pg-tools-grid article {
    padding: 18px 14px;
    text-align: center;
    background: rgba(22, 28, 24, 0.9);
    border: 1px solid rgba(232, 196, 120, 0.25);
    border-radius: 8px;
}

.pg-tools-grid strong {
    display: block;
    color: #fff;
    font-family: "Fraunces", Georgia, serif;
    margin-bottom: 6px;
}

.pg-tools-grid span {
    color: #b7b0a3;
    font-size: 0.88em;
}

.pg-audit {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 22px;
    align-items: center;
    margin: 40px 0;
    padding: 22px;
    border-left: 3px solid #e8c478;
    background: rgba(28, 36, 30, 0.45);
    border-radius: 0 8px 8px 0;
}

.pg-audit p {
    color: #cfc8bb;
    line-height: 1.75;
    margin: 0 0 14px;
}

.pg-audit figure {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(232, 196, 120, 0.28);
}

.pg-audit img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 900px) {
    .pg-seal-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .pg-pillar-grid,
    .pg-support,
    .pg-audit,
    .pg-tools-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pg-layer-list li {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

@media (max-width: 560px) {
    .pg-seal-row,
    .pg-pillar-grid,
    .pg-support,
    .pg-audit,
    .pg-tools-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== login.html block variants ========== */
.pg-gate {
    margin: 28px 0 36px;
}

.pg-gate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 16px;
}

.pg-gate-card {
    padding: 26px 22px;
    background: rgba(14, 18, 16, 0.88);
    border: 1px solid rgba(232, 196, 120, 0.28);
    border-radius: 8px;
}

.pg-gate-hot {
    border-color: #e8c478;
    background: linear-gradient(160deg, rgba(232, 196, 120, 0.16), rgba(14, 18, 16, 0.92));
}

.pg-gate-label {
    margin: 0 0 8px;
    color: #e8c478;
    font-size: 0.78em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pg-gate-card strong {
    display: block;
    font-family: "Fraunces", Georgia, serif;
    color: #fff;
    font-size: 1.45em;
    margin-bottom: 10px;
}

.pg-gate-card span {
    display: block;
    color: #b7b0a3;
    line-height: 1.6;
    margin-bottom: 18px;
}

.pg-check {
    margin: 36px 0;
}

.pg-check-list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.pg-check-list li {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(22, 28, 24, 0.9);
    border: 1px solid rgba(232, 196, 120, 0.22);
    border-radius: 8px;
    border-left: 3px solid #e8c478;
}

.pg-check-list strong {
    color: #fff;
    font-family: "Fraunces", Georgia, serif;
}

.pg-check-list span {
    color: #b7b0a3;
    line-height: 1.55;
}

.pg-habits {
    margin: 36px 0;
}

.pg-habit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.pg-habit-grid article {
    padding: 18px 14px;
    background: rgba(14, 18, 16, 0.85);
    border: 1px solid rgba(232, 196, 120, 0.25);
    border-radius: 8px;
    text-align: center;
}

.pg-habit-grid strong {
    display: block;
    font-family: "Fraunces", Georgia, serif;
    color: #fff;
    margin-bottom: 8px;
}

.pg-habit-grid span {
    color: #b7b0a3;
    font-size: 0.9em;
    line-height: 1.5;
}

.pg-recover {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 22px;
    align-items: center;
    margin: 40px 0;
}

.pg-recover p {
    color: #cfc8bb;
    line-height: 1.75;
    margin: 0 0 14px;
}

.pg-recover .btn {
    margin-right: 8px;
    margin-bottom: 8px;
}

.pg-recover figure {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(232, 196, 120, 0.28);
}

.pg-recover img {
    display: block;
    width: 100%;
    height: auto;
}

.pg-after {
    margin: 36px 0;
    padding: 22px;
    background: rgba(28, 36, 30, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(232, 196, 120, 0.25);
}

.pg-after-rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.pg-after-item {
    padding: 16px 12px;
    text-align: center;
    background: rgba(12, 16, 14, 0.9);
    border-radius: 8px;
    border-bottom: 3px solid #e8c478;
}

.pg-after-item strong {
    display: block;
    color: #fff;
    font-family: "Fraunces", Georgia, serif;
    margin-bottom: 6px;
}

.pg-after-item span {
    color: #b7b0a3;
    font-size: 0.88em;
}

.pg-devices {
    margin: 40px 0;
}

.pg-device-pair {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0 18px;
}

.pg-device-pair a {
    padding: 10px 16px;
    border-radius: 6px;
    border: 1px solid rgba(232, 196, 120, 0.4);
    color: #e8c478;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
}

.pg-device-pair a:hover {
    background: rgba(232, 196, 120, 0.12);
}

.pg-devices img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(232, 196, 120, 0.25);
}

@media (max-width: 900px) {
    .pg-gate-grid,
    .pg-recover,
    .pg-habit-grid,
    .pg-after-rail {
        grid-template-columns: 1fr 1fr;
    }

    .pg-check-list li {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

@media (max-width: 560px) {
    .pg-gate-grid,
    .pg-recover,
    .pg-habit-grid,
    .pg-after-rail {
        grid-template-columns: 1fr;
    }
}

