/* {$keywords} - 博彩平台主样式文件 */

* {
    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 #f0c159;
}

.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, #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 {
    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: #f0c159;
    background: rgba(240, 193, 89, 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: #f0c159;
    background: rgba(240, 193, 89, 0.1);
}

.nav-links-extended a.current {
    color: #f0c159;
    background: rgba(240, 193, 89, 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(240, 193, 89, 0.1);
        color: #f0c159;
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.btn {
    background: linear-gradient(135deg, #f0c159, #ff6900);
    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(240, 193, 89, 0.4);
}

.btn-green {
    background: #00d084;
}

.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: #f0c159;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2em;
    color: #abb8c3;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-box {
    background: rgba(240, 193, 89, 0.1);
    border: 2px solid #f0c159;
    border-radius: 12px;
    padding: 30px;
    margin: 40px auto;
    max-width: 600px;
    text-align: left;
}

.welcome-box h3 {
    color: #f0c159;
    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(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(240, 193, 89, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: #f0c159;
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #f0c159;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    color: #abb8c3;
    text-transform: uppercase;
    font-size: 0.9em;
}

.section {
    margin: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #f0c159;
    margin-bottom: 50px;
    font-weight: bold;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(240, 193, 89, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #f0c159;
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #f0c159;
    margin-bottom: 15px;
}

.feature-card p {
    color: #abb8c3;
}

.cta-section {
    background: rgba(240, 193, 89, 0.1);
    border: 2px solid #f0c159;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    margin: 80px 0;
}

.cta-section h2 {
    font-size: 2.5em;
    color: #f0c159;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2em;
    color: #abb8c3;
    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(240, 193, 89, 0.2);
    padding: 40px 0;
    text-align: center;
}

.footer p {
    color: #abb8c3;
    margin-bottom: 10px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats {
        grid-template-columns: 1fr;
    }
}
/* article list */
.article-list-section {
    margin: 60px auto;
    max-width: 800px;
    text-align: center;
}

.article-list-section .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.article-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.article-list > *,
.article-list li,
.article-list dl,
.article-list p,
.article-list div {
    width: 100%;
    max-width: 1720px;
    margin: 0 auto 12px;
    text-align: center;
    list-style: none;
}

.article-list a {
    display: inline-block;
    color: #f0c159;
    text-decoration: none;
    text-align: center;
    padding: 12px 20px;
    border: 1px solid rgba(240, 193, 89, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    width: 100%;
    max-width: 1720px;
    box-sizing: border-box;
}

.article-list a:hover {
    color: #fff;
    border-color: #f0c159;
    background: rgba(240, 193, 89, 0.15);
}

.article-list span,
.article-list time,
.article-list em {
    display: block;
    text-align: center;
    color: #abb8c3;
    font-size: 0.9em;
    margin-top: 6px;
}

@media (max-width: 768px) {
    .article-list-section {
        margin: 40px 0;
        padding: 0 10px;
    }

    .article-list a {
        padding: 10px 14px;
        font-size: 0.95em;
    }
}
/* shared classes extracted from inline styles */
.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.hero-lead {
    font-size: 1.3em;
    color: #abb8c3;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.hero-lead-plain {
    font-size: 1.3em;
    color: #abb8c3;
    margin-bottom: 30px;
}

.media-center {
    text-align: center;
    margin: 30px 0;
}

.media-center-lg {
    text-align: center;
    margin: 40px 0;
}

.media-center-sm {
    text-align: center;
    margin: 20px 0;
}

.hero-media {
    position: relative;
    z-index: 2;
}

.hero-banner-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-height: 500px;
}

.section-media-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.card-media-img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.card-media-img-wide {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.notice-box {
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
    position: relative;
    z-index: 2;
}

.notice-text {
    font-weight: bold;
    margin: 0;
}

.btn-lg {
    font-size: 1.4em;
    padding: 20px 40px;
}

.btn-hero {
    position: relative;
    z-index: 2;
}

.card-emoji {
    font-size: 4em;
    margin-bottom: 20px;
}

.card-heading {
    color: #f0c159;
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: bold;
}

.card-text {
    color: #abb8c3;
    margin-bottom: 20px;
}

.card-media-wrap {
    text-align: center;
    margin-bottom: 15px;
}

.panel {
    border-radius: 20px;
    padding: 40px;
}

.panel-muted {
    background: rgba(255, 255, 255, 0.05);
}

.section-heading {
    color: #f0c159;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
}

.section-heading-alert {
    color: #ff0000;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
}

.section-desc {
    text-align: center;
    color: #abb8c3;
    font-size: 1.1em;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.timer-sep {
    color: #ff6900;
    font-size: 2em;
}

.tournament-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tournament-name {
    color: #f0c159;
    font-weight: bold;
    font-size: 1.4em;
}

.prize-badge {
    background: linear-gradient(135deg, #ff6900, #f0c159);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
}

.progress-track {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin: 15px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #f0c159, #ff6900);
    border-radius: 5px;
}

.progress-fill-68 { width: 68%; }
.progress-fill-45 { width: 45%; }
.progress-fill-23 { width: 23%; }

.meta-row {
    display: flex;
    justify-content: space-between;
    color: #abb8c3;
    font-size: 0.9em;
}

.card-mb {
    margin-bottom: 25px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 60px 0;
}

.offer-card {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 0, 0, 0.1));
    border: 2px solid #ff0000;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    animation: pulse 3s infinite;
}

.offer-card h3 {
    color: #ff0000;
    font-weight: bold;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.offer-card p {
    color: #abb8c3;
    line-height: 1.6;
    margin-bottom: 20px;
}

.offer-badge {
    background: #ff0000;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
}

.stat-card-green {
    border-color: rgba(0, 208, 132, 0.3);
}

.stat-card-gold {
    border-color: rgba(240, 193, 89, 0.3);
}

.stat-number-green {
    color: #00d084;
}

.urgent-note {
    background: rgba(255, 0, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.urgent-note p {
    color: #ff4444;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

.muted-sm {
    color: #abb8c3;
    font-size: 0.9em;
}

.gold-title {
    color: #f0c159;
    margin-bottom: 10px;
}

.trust-row {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item,
.text-center {
    text-align: center;
}

.icon-md {
    font-size: 2em;
    margin-bottom: 5px;
}

.icon-xl {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.trust-panel {
    margin-top: 60px;
    background: rgba(240, 193, 89, 0.05);
    border-radius: 12px;
    padding: 40px;
}

.trust-panel-title {
    text-align: center;
    color: #f0c159;
    font-size: 1.8em;
    margin-bottom: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.vip-tier {
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.vip-tier-gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid #FFD700;
}

.vip-tier-platinum {
    background: linear-gradient(135deg, rgba(229, 228, 226, 0.1), rgba(229, 228, 226, 0.05));
    border: 2px solid #E5E4E2;
}

.vip-tier-diamond {
    background: linear-gradient(135deg, rgba(185, 242, 255, 0.1), rgba(185, 242, 255, 0.05));
    border: 2px solid #B9F2FF;
}

.vip-tier-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.vip-tier-gold h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.vip-tier-platinum h3 {
    color: #E5E4E2;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.vip-tier-diamond h3 {
    color: #B9F2FF;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.vip-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.vip-list li {
    margin-bottom: 10px;
    color: #abb8c3;
}

.reviews-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

.reviews-box h3 {
    color: #f0c159;
    text-align: center;
    margin-bottom: 20px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
}

.review-quote {
    color: #abb8c3;
    font-style: italic;
    margin-bottom: 10px;
}

.review-author {
    color: #f0c159;
    font-weight: bold;
}

.section-media-gold {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(240, 193, 89, 0.3);
}
/* more shared classes from remaining inline styles */
.hero-cta-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-xl {
    font-size: 1.3em;
    padding: 20px 40px;
}

.section-intro {
    text-align: center;
    color: #abb8c3;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.section-intro-lg {
    text-align: center;
    color: #abb8c3;
    font-size: 1.1em;
    margin-bottom: 50px;
}

.stat-note {
    color: #abb8c3;
    font-size: 0.8em;
    margin-top: 5px;
}

.feature-extra {
    margin-top: 15px;
    font-size: 0.9em;
    color: #abb8c3;
}

.subsection {
    margin-top: 60px;
}

.subsection-title {
    text-align: center;
    color: #f0c159;
    font-size: 2em;
    margin-bottom: 30px;
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.mini-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.mini-card-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.mini-card h4 {
    color: #f0c159;
    margin-bottom: 5px;
}

.mini-card p {
    color: #abb8c3;
    font-size: 0.9em;
}

.hero-banner-img-plain {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
