/* {$keywords} - ?????????????? - ????????? */

:root {
    --color-primary: #10b981;
    --color-primary-rgb: 16, 185, 129;
    --color-secondary: #06d6a0;
    --color-bg: #141416;
    --color-muted: #94a3b8;
    --color-success: #10b981;
    --color-danger: #ff4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #141416;
    color: white;
    line-height: 1.6;
}

.header {
    background: rgba(20, 20, 22, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #10b981;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.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, #10b981, #06d6a0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

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

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

.nav-links-extended a:hover {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.nav-links-extended a.current {
    color: #10b981;
    background: rgba(16, 185, 129, 0.2);
}

@media (max-width: 768px) {
    .nav-links-extended {
        display: flex;
        flex-direction: column;
        gap: 8px;
        background: rgba(20, 20, 22, 0.95);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 20px;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links-extended.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links-extended a {
        padding: 12px 16px;
        font-size: 0.9em;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }
    
    .nav-links-extended a:last-child {
        border-bottom: none;
    }
    
    .nav {
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.5em;
        cursor: pointer;
        padding: 8px;
        border-radius: 6px;
        transition: all 0.3s;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(16, 185, 129, 0.1);
        color: #10b981;
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.btn {
    background: linear-gradient(135deg, #10b981, #06d6a0);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.btn-green {
    background: #10b981;
}

.main {
    margin-top: 80px;
    padding: 40px 0;
}

.hero {
    text-align: center;
    padding: 60px 0;
}

.hero h1 {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #10b981;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2em;
    color: #94a3b8;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-box {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 30px;
    margin: 40px auto;
    max-width: 600px;
    text-align: left;
}

.welcome-box h3 {
    color: #10b981;
    text-align: center;
    margin-bottom: 20px;
}

.welcome-box ul {
    list-style: none;
}

.welcome-box li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 60px 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: #10b981;
    transform: translateY(-5px);
}

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

.stat-label {
    color: #94a3b8;
    text-transform: uppercase;
    font-size: 0.9em;
}

.stat-card-sub {
    color: #94a3b8;
    font-size: 0.95em;
    margin-top: 8px;
    line-height: 1.4;
}

.section {
    margin: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #10b981;
    margin-bottom: 50px;
    font-weight: bold;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #10b981;
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #10b981;
    margin-bottom: 15px;
    font-size: 1.35em;
}

.feature-card p {
    color: #94a3b8;
    font-size: 1.05em;
    line-height: 1.65;
}

.feature-card-detail {
    margin-top: 15px;
    font-size: 1.05em;
    color: #94a3b8;
    line-height: 1.6;
}

.cta-section {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    margin: 80px 0;
}

.cta-section h2 {
    font-size: 2.5em;
    color: #10b981;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2em;
    color: #94a3b8;
    margin-bottom: 30px;
}

.urgent-box {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
    animation: pulse 2s infinite;
}

.urgent-box p {
    color: #ff4444;
    font-weight: bold;
    margin: 0;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    padding: 40px 0;
    text-align: center;
}

.footer p {
    color: #94a3b8;
    margin-bottom: 10px;
}

/* ��Ӧʽ��� */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Segurança e Confiança - 2x2 */
.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 800px;
    margin: 0 auto;
}
.security-item {
    text-align: center;
    padding: 20px 16px;
}
.security-item .icon {
    font-size: 2.2em;
    margin-bottom: 12px;
}
.security-item h4 {
    color: #10b981;
    margin-bottom: 10px;
    font-size: 1.15em;
}
.security-item p {
    color: #94a3b8;
    font-size: 1em;
    line-height: 1.5;
}
@media (max-width: 600px) {
    .security-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ========== ҳ��ר����ʽ����������ɫ�� ========== */

/* App ҳ */
.app-hero {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 214, 160, 0.1));
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin: 40px 0;
}
.app-hero h1 {
    font-size: 3em;
    color: #10b981;
    margin-bottom: 20px;
    font-weight: bold;
}
.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}
.download-btn {
    background: linear-gradient(135deg, #10b981, #06d6a0);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
    transition: all 0.3s;
    min-width: 200px;
    justify-content: center;
}
.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}
.download-btn.ios {
    background: linear-gradient(135deg, #000, #333);
}
.download-btn.ios:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.app-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}
.feature-highlight {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}
.feature-highlight:hover {
    transform: translateY(-5px);
    border-color: #10b981;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.feature-highlight .icon { font-size: 3.5em; margin-bottom: 20px; }
.feature-highlight h3 { color: #10b981; margin-bottom: 15px; font-size: 1.3em; }
.feature-highlight p { color: #94a3b8; line-height: 1.6; }
.app-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
    background: rgba(16, 185, 129, 0.05);
    padding: 40px;
    border-radius: 15px;
}
.app-stat { text-align: center; }
.app-stat .number { font-size: 2.5em; font-weight: bold; color: #10b981; display: block; margin-bottom: 10px; }
.app-stat .label { color: #94a3b8; text-transform: uppercase; font-size: 0.9em; letter-spacing: 0.5px; }
.comparison-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    margin: 60px 0;
}
.comparison-table h3 { color: #10b981; text-align: center; font-size: 2em; margin-bottom: 30px; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; text-align: center; }
.comparison-header {
    font-weight: bold;
    color: #10b981;
    padding: 15px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
}
.comparison-row { padding: 15px; color: #94a3b8; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.checkmark { color: #10b981; font-size: 1.2em; }
.crossmark { color: #ff4444; font-size: 1.2em; }
.app-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}
.app-gallery-item { text-align: center; transition: transform 0.3s ease; }
.app-gallery-item:hover { transform: translateY(-5px); }
.app-gallery img {
    width: 100%; max-width: 280px; height: auto; border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
.app-gallery img:hover { box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3); }
.app-main-image { text-align: center; margin: 40px 0; }
.app-main-image img {
    max-width: 100%; height: auto; border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-height: 500px; transition: all 0.3s ease;
}
.app-main-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.2);
}
@media (max-width: 768px) {
    .app-hero h1 { font-size: 2em; }
    .download-buttons { flex-direction: column; align-items: center; }
    .comparison-grid { grid-template-columns: 1fr; gap: 10px; }
    .app-gallery { grid-template-columns: 1fr; gap: 20px; }
    .app-main-image img { max-height: 300px; }
}

/* ========== App 内页专属：Notificações que Valem Ouro + Em 3 Toques ========== */
.app-block {
    margin: 50px 0;
    padding: 48px 32px;
    border-radius: 24px;
    text-align: center;
}
.app-block-title {
    color: #10b981;
    font-size: 2em;
    margin-bottom: 12px;
    font-weight: bold;
}
.app-block-desc {
    color: #94a3b8;
    max-width: 560px;
    margin: 0 auto 36px;
    font-size: 1.05em;
    line-height: 1.6;
}

/* Push 模拟手机 + 通知卡片 */
.app-push-block {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.08) 0%, rgba(6, 214, 160, 0.04) 50%, transparent 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
}
.app-push-phone {
    max-width: 340px;
    margin: 0 auto;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border-radius: 32px;
    padding: 12px 14px 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.08);
}
.app-push-statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px 12px;
    font-size: 0.85em;
    color: #94a3b8;
}
.app-push-dots { font-size: 0.7em; letter-spacing: 2px; }
.app-push-notifications { display: flex; flex-direction: column; gap: 10px; }
.app-push-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 14px;
    padding: 14px 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.app-push-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}
.app-push-card-1 { border-left: 4px solid #10b981; }
.app-push-card-2 { border-left: 4px solid #06d6a0; }
.app-push-card-3 { border-left: 4px solid #34d399; }
.app-push-time {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 0.75em;
    color: #64748b;
}
.app-push-card { position: relative; padding-top: 24px; }
.app-push-card .app-push-time { top: 10px; right: 12px; }
.app-push-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #10b981, #06d6a0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7em;
    font-weight: bold;
    color: #fff;
}
.app-push-text strong {
    display: block;
    color: #e2e8f0;
    font-size: 0.95em;
    margin-bottom: 4px;
}
.app-push-text p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.85em;
    line-height: 1.4;
}

/* Em 3 Toques 三步条 */
.app-touches-block {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.6) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.app-touches-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 12px;
    max-width: 900px;
    margin: 0 auto;
}
.app-touch-item {
    flex: 1 1 200px;
    min-width: 180px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 20px;
    padding: 28px 24px;
    transition: all 0.3s;
}
.app-touch-item:hover {
    border-color: #10b981;
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.15);
    transform: translateY(-4px);
}
.app-touch-num {
    width: 36px;
    height: 36px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, #10b981, #06d6a0);
    color: #fff;
    font-weight: bold;
    font-size: 1.2em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.app-touch-icon { font-size: 2.5em; margin-bottom: 12px; display: block; }
.app-touch-item h3 {
    color: #10b981;
    font-size: 1.15em;
    margin-bottom: 8px;
}
.app-touch-item p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.9em;
    line-height: 1.45;
}
.app-touch-arrow {
    color: #10b981;
    font-size: 1.8em;
    font-weight: bold;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .app-touches-grid { flex-direction: column; gap: 16px; }
    .app-touch-arrow { transform: rotate(90deg); }
    .app-push-phone { max-width: 100%; }
}

/* FAQ App - Card */
.app-faq-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(16,185,129,0.06) 100%);
    border: 1px solid rgba(16,185,129,0.35);
    border-radius: 20px;
    padding: 40px 44px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.app-faq-card-title {
    text-align: center;
    font-size: 2em;
    color: #10b981;
    margin-bottom: 12px;
    font-weight: bold;
}
.app-faq-card-desc {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 32px;
    font-size: 1.05em;
}
.app-faq { display: flex; flex-direction: column; gap: 0; }
.app-faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    transition: background 0.2s;
}
.app-faq-item:last-child { border-bottom: none; }
.app-faq-item:hover { background: rgba(16,185,129,0.06); border-radius: 10px; padding-left: 16px; padding-right: 16px; margin: 0 -16px; }
.app-faq-q {
    font-weight: bold;
    color: #e2e8f0;
    font-size: 1.05em;
    margin-bottom: 10px;
}
.app-faq-a {
    color: #94a3b8;
    font-size: 0.98em;
    line-height: 1.6;
    margin: 0;
}

/* ========== Login: Um login em qualquer lugar [Bento 左侧色条] ========== */
.login-anywhere-card {
    max-width: 720px;
    margin: 0 auto;
    border-radius: 0 20px 20px 0;
    padding: 36px 40px 36px 32px;
    text-align: center;
    border: none;
    border-left: 6px solid #10b981;
    background: rgba(20, 20, 22, 0.85);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.login-anywhere-title { font-size: 1.5em; color: #10b981; margin-bottom: 10px; font-weight: bold; }
.login-anywhere-desc { color: #94a3b8; font-size: 1em; margin-bottom: 28px; }
.login-anywhere-devices {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.login-device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 80px;
}
.login-device-icon { font-size: 2.5em; display: block; }
.login-device-label { color: #e2e8f0; font-size: 0.95em; font-weight: 600; }
@media (max-width: 600px) { .login-anywhere-devices { gap: 32px; } }

/* ========== Login: Seus dados [Callout 左线框] ========== */
.login-trust-card {
    max-width: 720px;
    margin: 0 auto;
    border: none;
    border-left: 4px solid #10b981;
    border-radius: 0 12px 12px 0;
    background: rgba(16, 185, 129, 0.06);
    padding: 24px 28px 24px 22px;
}
.login-trust-title { font-size: 1.35em; color: #10b981; margin-bottom: 20px; font-weight: bold; text-align: left; }
.login-trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px 32px;
}
.login-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 0.95em;
}
.login-trust-ico { font-size: 1.2em; }
@media (max-width: 600px) { .login-trust-strip { flex-direction: column; gap: 14px; } }

/* ========== Jogos: Números do catálogo [Floating 悬浮] ========== */
.jogos-stats-card {
    max-width: 720px;
    margin: 0 auto;
    border: none;
    border-radius: 24px;
    padding: 36px 40px;
    text-align: center;
    background: rgba(30, 41, 59, 0.6);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
}
.jogos-stats-title { font-size: 1.4em; color: #10b981; margin-bottom: 24px; font-weight: bold; }
.jogos-stats-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px 48px;
}
.jogos-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 90px;
}
.jogos-stat-num { font-size: 1.8em; font-weight: bold; color: #10b981; }
.jogos-stat-label { font-size: 0.9em; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.5px; }
@media (max-width: 600px) { .jogos-stats-row { gap: 24px; } }

/* ========== Jogos: Como escolher [Callout 左线框] ========== */
.jogos-guide-card {
    max-width: 640px;
    margin: 0 auto;
    border: none;
    border-left: 4px solid #10b981;
    border-radius: 0 12px 12px 0;
    background: rgba(16, 185, 129, 0.06);
    padding: 26px 32px 26px 22px;
}
.jogos-guide-title { font-size: 1.35em; color: #10b981; margin-bottom: 20px; font-weight: bold; text-align: left; }
.jogos-guide-list { display: flex; flex-direction: column; gap: 14px; }
.jogos-guide-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #94a3b8;
    font-size: 1em;
    line-height: 1.5;
}
.jogos-guide-num {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: #10b981;
    color: #fff;
    font-weight: bold;
    font-size: 0.9em;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== Jogo: Ficha do jogo [Bento 左侧色条] ========== */
.jogo-spec-card {
    max-width: 720px;
    margin: 0 auto;
    border: none;
    border-left: 6px solid #10b981;
    border-radius: 0 16px 16px 0;
    padding: 28px 36px 28px 28px;
    background: rgba(20, 20, 22, 0.9);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.jogo-spec-title { font-size: 1.35em; color: #10b981; margin-bottom: 22px; font-weight: bold; text-align: left; }
.jogo-spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 20px;
}
.jogo-spec-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}
.jogo-spec-label { font-size: 0.8em; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.5px; }
.jogo-spec-value { font-size: 1.05em; font-weight: 600; color: #e2e8f0; }
@media (max-width: 600px) { .jogo-spec-grid { grid-template-columns: repeat(2, 1fr); } }

/* ========== Jogo: Dica [Callout 左线框] ========== */
.jogo-tip-card {
    max-width: 600px;
    margin: 0 auto;
    border: none;
    border-left: 4px solid #10b981;
    border-radius: 0 12px 12px 0;
    background: rgba(16, 185, 129, 0.06);
    padding: 24px 28px 24px 22px;
    text-align: left;
}
.jogo-tip-title { font-size: 1.3em; color: #10b981; margin-bottom: 12px; font-weight: bold; }
.jogo-tip-text { color: #94a3b8; font-size: 1em; line-height: 1.6; margin: 0; }
.jogo-tip-text strong { color: #10b981; }

/* ========== Casino: Ao vivo [Bento 左侧红条] ========== */
.casino-live-now-card {
    max-width: 640px;
    margin: 0 auto;
    border: none;
    border-left: 6px solid #ff4444;
    border-radius: 0 16px 16px 0;
    padding: 28px 36px 28px 28px;
    background: rgba(20, 20, 22, 0.9);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    text-align: left;
}
.casino-live-now-title { font-size: 1.35em; color: #ff4444; margin-bottom: 20px; font-weight: bold; }
.casino-live-now-strip {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 24px 36px;
}
.casino-live-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.casino-live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff4444;
    animation: casino-pulse 1.5s ease-in-out infinite;
}
@keyframes casino-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}
.casino-live-num { font-size: 1.4em; font-weight: bold; color: #e2e8f0; }
.casino-live-label { font-size: 0.9em; color: #94a3b8; }
@media (max-width: 500px) { .casino-live-now-strip { flex-direction: column; gap: 16px; } }

/* ========== Casino: Boas práticas [Callout 左线框] ========== */
.casino-etiquette-card {
    max-width: 560px;
    margin: 0 auto;
    border: none;
    border-left: 4px solid #10b981;
    border-radius: 0 12px 12px 0;
    background: rgba(16, 185, 129, 0.06);
    padding: 24px 28px 24px 22px;
}
.casino-etiquette-title { font-size: 1.3em; color: #10b981; margin-bottom: 16px; font-weight: bold; text-align: left; }
.casino-etiquette-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.casino-etiquette-list li {
    color: #94a3b8;
    font-size: 0.98em;
    line-height: 1.6;
    padding: 6px 0 6px 22px;
    position: relative;
}
.casino-etiquette-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* ========== Crash: Números [Floating] ========== */
.crash-nums-card {
    max-width: 560px;
    margin: 0 auto;
    border: none;
    border-radius: 24px;
    background: rgba(30, 41, 59, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    padding: 28px 32px;
}
.crash-nums-title { font-size: 1.3em; color: #e2e8f0; margin-bottom: 20px; font-weight: bold; text-align: center; }
.crash-nums-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.crash-num-item { display: flex; flex-direction: column; align-items: center; }
.crash-num-value { font-size: 1.6em; font-weight: bold; color: #10b981; }
.crash-num-label { font-size: 0.9em; color: #94a3b8; margin-top: 4px; }

/* ========== Crash: Dica [Callout] ========== */
.crash-tip-card {
    max-width: 560px;
    margin: 0 auto;
    border: none;
    border-left: 4px solid #10b981;
    border-radius: 0 12px 12px 0;
    background: rgba(16, 185, 129, 0.06);
    padding: 24px 28px 24px 22px;
}
.crash-tip-title { font-size: 1.3em; color: #10b981; margin-bottom: 12px; font-weight: bold; text-align: left; }
.crash-tip-text { color: #94a3b8; font-size: 0.98em; line-height: 1.6; margin: 0; }

/* ========== Esporte: Aposte em qualquer esporte [Bento] ========== */
.esporte-sports-card {
    max-width: 560px;
    margin: 0 auto;
    border: none;
    border-left: 6px solid #10b981;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.85);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    padding: 24px 28px 24px 22px;
}
.esporte-sports-title { font-size: 1.3em; color: #10b981; margin-bottom: 12px; font-weight: bold; text-align: left; }
.esporte-sports-desc { color: #94a3b8; font-size: 0.95em; margin-bottom: 16px; line-height: 1.5; }
.esporte-sports-row { display: flex; flex-wrap: wrap; gap: 10px; }
.esporte-sport-tag { background: rgba(16, 185, 129, 0.15); color: #6ee7b7; padding: 8px 14px; border-radius: 8px; font-size: 0.9em; }

/* ========== Esporte: Lembrete [Callout] ========== */
.esporte-reminder-card {
    max-width: 560px;
    margin: 0 auto;
    border: none;
    border-left: 4px solid #3b82f6;
    border-radius: 0 12px 12px 0;
    background: rgba(59, 130, 246, 0.06);
    padding: 24px 28px 24px 22px;
}
.esporte-reminder-title { font-size: 1.3em; color: #3b82f6; margin-bottom: 12px; font-weight: bold; text-align: left; }
.esporte-reminder-text { color: #94a3b8; font-size: 0.98em; line-height: 1.6; margin: 0; }

/* ========== Bonus: Resumo [Floating] ========== */
.bonus-summary-card {
    max-width: 560px;
    margin: 0 auto;
    border: none;
    border-radius: 24px;
    background: rgba(30, 41, 59, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    padding: 28px 32px;
}
.bonus-summary-title { font-size: 1.3em; color: #e2e8f0; margin-bottom: 20px; font-weight: bold; text-align: center; }
.bonus-summary-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.bonus-summary-item { background: rgba(16, 185, 129, 0.15); color: #6ee7b7; padding: 10px 18px; border-radius: 10px; font-size: 1em; }

/* ========== Bonus: Leia os termos [Callout] ========== */
.bonus-terms-card {
    max-width: 560px;
    margin: 0 auto;
    border: none;
    border-left: 4px solid #f59e0b;
    border-radius: 0 12px 12px 0;
    background: rgba(245, 158, 11, 0.06);
    padding: 24px 28px 24px 22px;
}
.bonus-terms-title { font-size: 1.3em; color: #f59e0b; margin-bottom: 12px; font-weight: bold; text-align: left; }
.bonus-terms-text { color: #94a3b8; font-size: 0.98em; line-height: 1.6; margin: 0; }

/* ========== Promo: Códigos e prazos [Bento] ========== */
.promo-codes-card {
    max-width: 560px;
    margin: 0 auto;
    border: none;
    border-left: 6px solid #10b981;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.85);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    padding: 24px 28px 24px 22px;
}
.promo-codes-title { font-size: 1.3em; color: #10b981; margin-bottom: 12px; font-weight: bold; text-align: left; }
.promo-codes-desc { color: #94a3b8; font-size: 0.95em; margin-bottom: 16px; line-height: 1.5; }
.promo-codes-row { display: flex; flex-wrap: wrap; gap: 10px; }
.promo-codes-tag { background: rgba(16, 185, 129, 0.15); color: #6ee7b7; padding: 8px 14px; border-radius: 8px; font-size: 0.9em; }

/* ========== Promo: Dica [Callout] ========== */
.promo-tip-card {
    max-width: 560px;
    margin: 0 auto;
    border: none;
    border-left: 4px solid #8b5cf6;
    border-radius: 0 12px 12px 0;
    background: rgba(139, 92, 246, 0.06);
    padding: 24px 28px 24px 22px;
}
.promo-tip-title { font-size: 1.3em; color: #8b5cf6; margin-bottom: 12px; font-weight: bold; text-align: left; }
.promo-tip-text { color: #94a3b8; font-size: 0.98em; line-height: 1.6; margin: 0; }

/* ========== Plataforma: Em números [Floating] ========== */
.plataforma-nums-card {
    max-width: 560px;
    margin: 0 auto;
    border: none;
    border-radius: 24px;
    background: rgba(30, 41, 59, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    padding: 28px 32px;
}
.plataforma-nums-title { font-size: 1.3em; color: #e2e8f0; margin-bottom: 20px; font-weight: bold; text-align: center; }
.plataforma-nums-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.plataforma-num-item { display: flex; flex-direction: column; align-items: center; }
.plataforma-num-value { font-size: 1.6em; font-weight: bold; color: #3b82f6; }
.plataforma-num-label { font-size: 0.9em; color: #94a3b8; margin-top: 4px; }

/* ========== Plataforma: Suporte [Callout] ========== */
.plataforma-support-card {
    max-width: 560px;
    margin: 0 auto;
    border: none;
    border-left: 4px solid #3b82f6;
    border-radius: 0 12px 12px 0;
    background: rgba(59, 130, 246, 0.06);
    padding: 24px 28px 24px 22px;
}
.plataforma-support-title { font-size: 1.3em; color: #3b82f6; margin-bottom: 12px; font-weight: bold; text-align: left; }
.plataforma-support-text { color: #94a3b8; font-size: 0.98em; line-height: 1.6; margin: 0; }

/* ========== Index: Por que 83w [Bento] ========== */
.index-why-card {
    max-width: 560px;
    margin: 0 auto;
    border: none;
    border-left: 6px solid #10b981;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.85);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    padding: 24px 28px 24px 22px;
}
.index-why-title { font-size: 1.3em; color: #10b981; margin-bottom: 16px; font-weight: bold; text-align: left; }
.index-why-row { display: flex; flex-wrap: wrap; gap: 10px; }
.index-why-tag { background: rgba(16, 185, 129, 0.15); color: #6ee7b7; padding: 8px 14px; border-radius: 8px; font-size: 0.9em; }

/* ========== Index: Comece agora [Callout] ========== */
.index-start-card {
    max-width: 560px;
    margin: 0 auto;
    border: none;
    border-left: 4px solid #10b981;
    border-radius: 0 12px 12px 0;
    background: rgba(16, 185, 129, 0.06);
    padding: 24px 28px 24px 22px;
}
.index-start-title { font-size: 1.3em; color: #10b981; margin-bottom: 12px; font-weight: bold; text-align: left; }
.index-start-text { color: #94a3b8; font-size: 0.98em; line-height: 1.6; margin: 0; }

/* ========== App: Linha do tempo do download [Bento] ========== */
.app-download-timeline {
    max-width: 560px;
    margin: 0 auto;
    border: none;
    border-left: 6px solid #10b981;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.85);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    padding: 24px 28px 24px 22px;
}
.app-timeline-title { font-size: 1.3em; color: #10b981; margin-bottom: 20px; font-weight: bold; text-align: left; }
.app-timeline-steps { display: flex; flex-direction: column; gap: 14px; }
.app-timeline-step {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #94a3b8;
    font-size: 0.98em;
    line-height: 1.5;
}
.app-timeline-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #10b981;
    color: #0f172a;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
}

/* ========== App: Download seguro [Callout] ========== */
.app-secure-download-card {
    max-width: 560px;
    margin: 0 auto;
    border: none;
    border-left: 4px solid #10b981;
    border-radius: 0 12px 12px 0;
    background: rgba(16, 185, 129, 0.06);
    padding: 24px 28px 24px 22px;
}
.app-secure-title { font-size: 1.3em; color: #10b981; margin-bottom: 12px; font-weight: bold; text-align: left; }
.app-secure-text { color: #94a3b8; font-size: 0.98em; line-height: 1.6; margin: 0; }