* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    background: linear-gradient(160deg, #0d5227 0%, #15803d 30%, #451a03 100%);
    color: #f5f0e1;
    line-height: 1.75;
    min-height: 100vh;
}
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
/* ---------- NAV ---------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: linear-gradient(90deg, rgba(21,128,61,0.97), rgba(69,26,3,0.97));
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(217,164,65,0.5);
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
    padding: 14px 0;
}
.navbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}
.nav-brand img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.nav-links a {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    color: #f5f0e1;
    border: 1px solid rgba(217,164,65,0.35);
    background: rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}
.nav-links a:hover {
    background: #d9a441;
    color: #451a03;
    border-color: #d9a441;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217,164,65,0.4);
}
/* ---------- HERO ---------- */
.hero {
    position: relative;
    padding: 80px 0 60px;
    text-align: center;
    overflow: hidden;
}
.hero::before {
    content: "♠ ♥ ♣ ♦";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 60px;
    letter-spacing: 30px;
    color: rgba(255,255,255,0.08);
    white-space: nowrap;
    pointer-events: none;
}
.hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #f5f0e1, #d9a441);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.geo-text {
    max-width: 900px;
    margin: 0 auto 36px;
    font-size: 17px;
    line-height: 1.9;
    color: #e8dfce;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hero-badges span {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(217,164,65,0.4);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
}
.hero-imgs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-imgs img {
    width: 260px;
    height: 170px;
    object-fit: cover;
    border: 3px solid #d9a441;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    transition: transform 0.4s ease;
}
.hero-imgs img:hover {
    transform: scale(1.03);
}
/* ---------- SECTIONS ---------- */
.section-pad {
    padding: 56px 0;
}
.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #d9a441;
    letter-spacing: 2px;
}
.section-subtitle {
    text-align: center;
    font-size: 16px;
    max-width: 720px;
    margin: 0 auto 40px;
    color: rgba(245,240,225,0.85);
}
.card {
    background: linear-gradient(145deg, #f5f0e1 0%, #e8dcc8 100%);
    color: #2d1810;
    border-radius: 18px;
    border: 3px solid #8b5e3c;
    box-shadow: 0 6px 24px rgba(0,0,0,0.35);
    padding: 34px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}
/* stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-item {
    text-align: center;
    padding: 30px 16px;
}
.stat-num {
    font-size: 40px;
    font-weight: 900;
    color: #15803d;
    line-height: 1.2;
}
.stat-label {
    font-size: 15px;
    color: #5a3a1a;
    margin-top: 8px;
    font-weight: 600;
}
/* advantages */
.adv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.adv-item {
    text-align: center;
    padding: 36px 20px;
}
.adv-icon {
    font-size: 48px;
    margin-bottom: 14px;
}
.adv-item h3 {
    font-size: 20px;
    color: #15803d;
    margin-bottom: 10px;
}
.adv-item p {
    font-size: 14px;
    color: #5a3a1a;
    line-height: 1.7;
}
/* brand story */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.story-content h2 {
    font-size: 28px;
    color: #15803d;
    margin-bottom: 16px;
}
.story-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #3a2a1a;
    margin-bottom: 14px;
}
.story-img img {
    border: 4px solid #d9a441;
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}
/* events */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.event-card {
    padding: 26px;
    text-align: center;
}
.event-card .ev-icon {
    font-size: 40px;
    margin-bottom: 10px;
}
.event-card h3 {
    font-size: 18px;
    color: #15803d;
    margin-bottom: 8px;
}
.event-card p {
    font-size: 14px;
    color: #5a3a1a;
    line-height: 1.6;
}
.event-tag {
    display: inline-block;
    background: #d9a441;
    color: #2d1810;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-top: 12px;
}
/* rankings */
.rank-table {
    width: 100%;
    border-collapse: collapse;
}
.rank-table th {
    background: #15803d;
    color: #f5f0e1;
    padding: 14px 12px;
    text-align: left;
    font-size: 14px;
}
.rank-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd0bb;
    font-size: 14px;
    color: #3a2a1a;
}
.rank-table tr:nth-child(even) {
    background: rgba(217,164,65,0.08);
}
.rank-badge {
    background: #d9a441;
    color: #2d1810;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
}
/* newbie guide */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.guide-step {
    text-align: center;
    padding: 26px 14px;
}
.step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #15803d;
    color: #f5f0e1;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 18px;
}
.guide-step h4 {
    font-size: 16px;
    color: #15803d;
    margin-bottom: 8px;
}
.guide-step p {
    font-size: 13px;
    color: #5a3a1a;
    line-height: 1.6;
}
/* download */
.download-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}
.download-info {
    max-width: 480px;
}
.download-info h2 {
    font-size: 28px;
    color: #15803d;
    margin-bottom: 14px;
}
.download-info p {
    font-size: 15px;
    color: #3a2a1a;
    margin-bottom: 18px;
    line-height: 1.8;
}
.download-imgs {
    display: flex;
    gap: 16px;
}
.download-imgs img {
    width: 160px;
    height: 120px;
    object-fit: cover;
    border: 3px solid #8b5e3c;
    border-radius: 14px;
}
.download-btn {
    display: inline-block;
    background: linear-gradient(135deg, #15803d, #0d5227);
    color: #f5f0e1;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #d9a441;
    transition: all 0.3s ease;
}
.download-btn:hover {
    background: #d9a441;
    color: #451a03;
    transform: scale(1.04);
}
/* testimonials */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testi-item {
    padding: 28px;
}
.testi-item .quote {
    font-size: 14px;
    line-height: 1.8;
    color: #3a2a1a;
    font-style: italic;
    margin-bottom: 16px;
}
.testi-item .author {
    font-weight: 700;
    color: #15803d;
    font-size: 15px;
}
.testi-stars {
    color: #d9a441;
    font-size: 16px;
    margin-bottom: 10px;
}
/* news */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.news-card {
    padding: 26px;
    border-left: 5px solid #15803d;
}
.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.news-date {
    font-size: 13px;
    color: #8b5e3c;
    font-weight: 700;
    background: rgba(217,164,65,0.2);
    padding: 3px 12px;
    border-radius: 16px;
}
.news-tag {
    font-size: 12px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 16px;
    background: #15803d;
    color: #f5f0e1;
}
.news-tag.progress {
    background: #8b5e3c;
}
.news-card h3 {
    font-size: 18px;
    color: #2d1810;
    margin-bottom: 10px;
    line-height: 1.4;
}
.news-card p {
    font-size: 14px;
    color: #5a3a1a;
    line-height: 1.7;
    margin-bottom: 14px;
}
.news-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #15803d;
    border-bottom: 2px solid #d9a441;
    padding-bottom: 2px;
}
.news-link:hover {
    color: #d9a441;
}
/* faq */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.faq-item {
    padding: 24px;
    cursor: pointer;
    border-left: 4px solid #d9a441;
    transition: all 0.3s;
}
.faq-item:hover {
    background: #fbf6ec;
}
.faq-item summary {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #15803d;
    cursor: pointer;
    list-style: none;
    outline: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #d9a441;
    color: #2d1810;
    font-size: 14px;
    font-weight: 900;
    flex-shrink: 0;
}
.faq-item .faq-body {
    font-size: 14px;
    color: #3a2a1a;
    line-height: 1.75;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed #d9a441;
}
/* footer */
.footer {
    background: linear-gradient(180deg, #1a0d05, #0a0a0a);
    padding: 48px 0 24px;
    color: #c9bea8;
    margin-top: 40px;
}
.footer .wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    font-size: 14px;
    line-height: 1.9;
}
.footer-col {
    max-width: 360px;
}
.footer-col h4 {
    color: #d9a441;
    font-size: 16px;
    margin-bottom: 10px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    text-align: center;
}
.footer-bottom a {
    color: #d9a441;
}
.footer-bottom a:hover {
    text-decoration: underline;
}
/* responsive */
@media (max-width: 992px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .adv-grid { grid-template-columns: repeat(2, 1fr); }
    .events-grid { grid-template-columns: 1fr 1fr; }
    .guide-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: 1fr 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .story-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .hero h1 { font-size: 28px; }
    .nav-links { justify-content: center; }
    .stats-grid { grid-template-columns: 1fr; }
    .adv-grid { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: 1fr; }
    .guide-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
}