*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #0b0e11;
    color: #ffffff;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
a { text-decoration: none; color: inherit; }
ul, li { list-style: none; }
img { max-width: 100%; display: block; }
p { margin: 0; padding: 0; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #0b0e11;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-binance {
    display: flex;
    align-items: center;
}
.logo-binance svg {
    height: 32px;
    width: auto;
}
.logo-bnb {
    display: flex;
    align-items: center;
    padding-left: 14px;
    border-left: 1px solid rgba(240,185,11,0.25);
    margin-left: 8px;
}
.logo-bnb svg {
    height: 28px;
    width: auto;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}
.main-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #eaecef;
    transition: color 0.15s;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.main-nav a:hover { color: #f0b90b; }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    cursor: pointer;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    transition: all 0.2s;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #eaecef;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.35s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #161a1e;
    padding: 18px 20px 36px;
    border-bottom: 1px solid #2b3137;
    animation: slideDown 0.27s ease;
}
@keyframes slideDown {
    0% { opacity: 0; max-height: 0; }
    100% { opacity: 1; max-height: 600px; }
}
.mobile-menu a {
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 450;
    border-bottom: 1px solid rgba(43,49,55,0.5);
    color: #eaecef;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: #f0b90b; }

.hero-section {
    padding: 60px 0 70px;
    background: linear-gradient(145deg, #0b0e11 0%, #1c2329 80%);
    position: relative;
    overflow: hidden;
}
.hero-section::after {
    content: '';
    position: absolute;
    right: -180px;
    top: -100px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(240,185,11,0.03) 0%, transparent 65%);
    pointer-events: none;
}
.hero-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}
.hero-text {
    flex: 1 1 480px;
}
.hero-badge {
    display: inline-block;
    background: rgba(240,185,11,0.13);
    color: #f0b90b;
    padding: 6px 17px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 540;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    border: 1px solid rgba(240,185,11,0.2);
}
.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}
.hero-title .highlight {
    color: #f0b90b;
}
.hero-sub {
    font-size: 1.1rem;
    color: #b7bdc6;
    margin-bottom: 36px;
    max-width: 560px;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}
.bianseo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 38px;
    border-radius: 48px;
    font-weight: 650;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.015em;
    background: transparent;
}
.bianseo-btn-primary {
    background: #f0b90b;
    color: #0b0e11;
    box-shadow: 0 4px 14px rgba(240,185,11,0.34);
}
.bianseo-btn-primary:hover {
    background: #f6d44a;
    box-shadow: 0 6px 22px rgba(240,185,11,0.52);
    transform: translateY(-2px);
}
.bianseo-btn-secondary {
    background: rgba(46, 54, 62, 0.75);
    color: #eaecef;
    border: 1px solid #474d57;
}
.bianseo-btn-secondary:hover {
    background: #363c44;
    border-color: #f0b90b;
    color: #f0b90b;
    transform: translateY(-2px);
}
.hero-visual {
    flex: 1 1 380px;
    display: flex;
    justify-content: center;
}
.hero-card-glow {
    background: rgba(21, 29, 37, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(71,77,87,0.4);
    border-radius: 56px;
    padding: 28px 32px;
    width: 320px;
    box-shadow: 0 18px 58px rgba(0,0,0,0.6);
}
.hero-card-glow .stat-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #2b3137;
}
.hero-card-glow .stat-row:last-child { border-bottom: none; }
.stat-label { color: #848e9c; font-size: 0.9rem; }
.stat-value { color: #f0b90b; font-weight: 620; }

.list-section {
    padding: 60px 0 80px;
    background: linear-gradient(145deg, #0b0e11 0%, #1c2329 80%);
}
.list-header {
    text-align: center;
    margin-bottom: 56px;
}
.list-badge {
    display: inline-block;
    background: rgba(240,185,11,0.13);
    color: #f0b90b;
    padding: 6px 17px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 540;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    border: 1px solid rgba(240,185,11,0.2);
}
.list-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}
.list-sub {
    font-size: 1.05rem;
    color: #b7bdc6;
    max-width: 600px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}
.news-card {
    background: #1c2229;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.25s;
    border: 1px solid #2b3137;
}
.news-card:hover {
    border-color: #f0b90b;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.news-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #2a3038, #1c2229);
    position: relative;
    overflow: hidden;
}
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.7));
}
.news-content {
    padding: 24px;
}
.news-category {
    display: inline-block;
    background: rgba(240,185,11,0.09);
    color: #f0b90b;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.78rem;
    font-weight: 550;
    margin-bottom: 12px;
}
.news-title {
    font-size: 1.25rem;
    font-weight: 620;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-title:hover { color: #f0b90b; }
.news-excerpt {
    color: #9aa1ab;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #6c757f;
    font-size: 0.85rem;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 56px;
}
.pagination-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid #2b3137;
    background: #1c2229;
    color: #9aa1ab;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination-btn:hover {
    border-color: #f0b90b;
    color: #f0b90b;
}
.pagination-btn.active {
    background: #f0b90b;
    color: #0b0e11;
    border-color: #f0b90b;
}
.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.content-section {
    padding: 60px 0 80px;
    background: linear-gradient(145deg, #0b0e11 0%, #1c2329 80%);
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9aa1ab;
    font-size: 0.88rem;
    margin-bottom: 32px;
}
.breadcrumb a { color: #f0b90b; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #6c757f; }

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.article-main {
    background: #11151a;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #2b3137;
}
.article-header {
    margin-bottom: 36px;
}
.article-category {
    display: inline-block;
    background: rgba(240,185,11,0.13);
    color: #f0b90b;
    padding: 6px 17px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 540;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    border: 1px solid rgba(240,185,11,0.2);
}
.article-title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #9aa1ab;
    font-size: 0.9rem;
    flex-wrap: wrap;
}
.article-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-cover {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, #2a3038, #1c2229);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}
.article-cover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), transparent 30%, transparent 70%, rgba(0,0,0,0.2));
}
.article-cover img {
    position: relative;
    z-index: 1;
}

.article-content {
    color: #eaecef;
    font-size: 1.08rem;
    line-height: 1.85;
}
.article-content h2 {
    font-size: 1.5rem;
    font-weight: 650;
    margin: 36px 0 18px;
    color: #ffffff;
    padding-left: 16px;
    border-left: 4px solid #f0b90b;
}
.article-content h3 {
    font-size: 1.25rem;
    font-weight: 620;
    margin: 28px 0 14px;
    color: #ffffff;
}
.article-content p {
    margin-bottom: 18px;
    color: #d0d5dd;
    text-align: justify;
}
.article-content strong {
    color: #f0b90b;
    font-weight: 600;
}
.article-content ul, .article-content ol {
    padding-left: 28px;
    margin-bottom: 20px;
}
.article-content li {
    margin-bottom: 10px;
    color: #d0d5dd;
}
.article-content ul li { list-style-type: disc; }
.article-content ol li { list-style-type: decimal; }
.article-content blockquote {
    border-left: 4px solid #f0b90b;
    margin: 28px 0;
    color: #b7bdc6;
    font-style: italic;
    background: rgba(240,185,11,0.05);
    padding: 20px 28px;
    border-radius: 0 16px 16px 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.article-highlight {
    background: linear-gradient(135deg, rgba(240,185,11,0.08), rgba(240,185,11,0.03));
    border: 1px solid rgba(240,185,11,0.15);
    border-radius: 16px;
    padding: 24px;
    margin: 28px 0;
}
.article-highlight h4 {
    color: #f0b90b;
    font-size: 1.1rem;
    font-weight: 620;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.article-highlight p {
    color: #b7bdc6;
    margin-bottom: 0;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid #2b3137;
}
.tag {
    display: inline-flex;
    align-items: center;
    background: rgba(240,185,11,0.08);
    color: #f0b90b;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(240,185,11,0.15);
    transition: all 0.2s;
}
.tag:hover {
    background: rgba(240,185,11,0.15);
    border-color: #f0b90b;
}

.article-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #2b3137;
    flex-wrap: wrap;
}
.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #1c2229;
    border: 1px solid #2b3137;
    border-radius: 10px;
    color: #eaecef;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}
.action-btn:hover {
    border-color: #f0b90b;
    color: #f0b90b;
    background: rgba(240,185,11,0.05);
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.sidebar-card {
    background: #11151a;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #2b3137;
}
.sidebar-card h4 {
    font-size: 1.1rem;
    font-weight: 620;
    margin-bottom: 20px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.related-item {
    display: flex;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(43,49,55,0.5);
}
.related-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.related-thumb {
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, #2a3038, #1c2229);
    border-radius: 10px;
    flex-shrink: 0;
    overflow: hidden;
}
.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.related-info {
    flex: 1;
    min-width: 0;
}
.related-info h5 {
    font-size: 0.92rem;
    font-weight: 580;
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.related-info h5:hover { color: #f0b90b; }
.related-date {
    font-size: 0.82rem;
    color: #6c757f;
}

.download-section {
    background: linear-gradient(135deg, rgba(240,185,11,0.08), rgba(240,185,11,0.02));
    border-color: rgba(240,185,11,0.2);
}
.download-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.download-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #161a1e;
    border-radius: 12px;
    transition: all 0.2s;
}
.download-item:hover {
    background: #1c2229;
    transform: translateX(4px);
}
.download-icon {
    width: 40px;
    height: 40px;
    background: rgba(240,185,11,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.download-info {
    flex: 1;
}
.download-info h5 {
    font-size: 0.92rem;
    font-weight: 580;
    margin-bottom: 2px;
}
.download-info p {
    font-size: 0.8rem;
    color: #6c757f;
}
.download-btn {
    padding: 6px 16px;
    background: #f0b90b;
    color: #0b0e11;
    border: none;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.download-btn:hover {
    background: #f6d44a;
    transform: scale(1.05);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.service-icon {
    width: 44px;
    height: 44px;
    background: rgba(240,185,11,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.service-info h5 {
    font-size: 0.92rem;
    font-weight: 580;
    margin-bottom: 2px;
}
.service-info p {
    font-size: 0.82rem;
    color: #9aa1ab;
}

.faq-section {
    padding: 80px 0;
    background: #0b0e11;
}
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}
.faq-heading {
    text-align: center;
    margin-bottom: 56px;
}
.faq-heading h2 {
    font-size: 2.4rem;
    font-weight: 640;
    margin-bottom: 12px;
}
.faq-heading p {
    color: #b7bdc6;
    font-size: 1.05rem;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: #11151a;
    border-radius: 16px;
    border: 1px solid #2b3137;
    overflow: hidden;
    transition: all 0.25s;
}
.faq-item:hover {
    border-color: rgba(240,185,11,0.3);
}
.faq-item.active {
    border-color: #f0b90b;
    background: rgba(240,185,11,0.03);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 580;
    color: #ffffff;
    transition: color 0.2s;
}
.faq-question:hover {
    color: #f0b90b;
}
.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(240,185,11,0.1);
    color: #f0b90b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
    flex-shrink: 0;
}
.faq-item.active .faq-icon {
    background: #f0b90b;
    color: #0b0e11;
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    color: #9aa1ab;
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}
.faq-answer p {
    margin-bottom: 12px;
}
.faq-answer p:last-child {
    margin-bottom: 0;
}

.features-section {
    padding: 80px 0;
    background: #11151a;
}
.section-heading {
    text-align: center;
    margin-bottom: 64px;
}
.section-heading h2 {
    font-size: 2.4rem;
    font-weight: 640;
    margin-bottom: 12px;
}
.section-heading p {
    color: #b7bdc6;
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.05rem;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}
.feature-card {
    background: #1c2229;
    border-radius: 32px;
    padding: 32px 24px;
    transition: all 0.25s;
    border: 1px solid #2b3137;
    text-align: center;
}
.feature-card:hover {
    border-color: #f0b90b;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.feature-icon {
    background: rgba(240,185,11,0.09);
    width: 66px;
    height: 66px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 2.2rem;
}
.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 610;
    margin-bottom: 12px;
}
.feature-card p {
    color: #9aa1ab;
    font-size: 0.92rem;
}

.cta-section {
    padding: 90px 0;
    background: #0b0e11;
    border-top: 1px solid #2b3137;
    border-bottom: 1px solid #2b3137;
}
.cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #141b21, #1f2933);
    border-radius: 72px;
    padding: 56px 74px;
    border: 1px solid #303841;
}
.cta-text h3 {
    font-size: 2rem;
    font-weight: 670;
    margin-bottom: 12px;
}
.cta-text p {
    color: #b7bdc6;
    font-size: 1rem;
    max-width: 440px;
}
.cta-button-group {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.cta-btn {
    background: #f0b90b;
    color: #0b0e11;
    padding: 16px 48px;
    border-radius: 60px;
    font-weight: 660;
    font-size: 1.05rem;
    transition: 0.2s;
    display: inline-block;
}
.cta-btn:hover {
    background: #f6d44a;
    transform: scale(1.02);
}
.cta-btn-outline {
    background: transparent;
    border: 1px solid #474d57;
    color: #eaecef;
}
.cta-btn-outline:hover {
    border-color: #f0b90b;
    color: #f0b90b;
    background: rgba(240,185,11,0.05);
}

.footer {
    background: #0b0e11;
    padding: 40px 0 30px;
    border-top: 1px solid #262b31;
    margin-top: auto;
}
.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}
.footer-col {
    width: 30%;
}
.footer-col h5 {
    color: #f0b90b;
    font-size: 0.95rem;
    margin-bottom: 18px;
    font-weight: 570;
}
.footer-col a {
    display: block;
    color: #949ca8;
    font-size: 0.88rem;
    margin-bottom: 12px;
    transition: 0.15s;
}
.footer-col a:hover { color: #f0b90b; }
.footer-col p {
    color: #949ca8;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 12px;
}
.footer-copyright {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid #1e242b;
    text-align: center;
    color: #6c757f;
    font-size: 0.82rem;
}

@media screen and (max-width: 992px) {
    .main-nav { display: none; }
    .hamburger { display: flex; }
    .hero-title { font-size: 2.5rem; }
    .list-title { font-size: 2.2rem; }
    .detail-layout { grid-template-columns: 1fr; }
    .article-title { font-size: 1.9rem; }
    .cta-wrapper { padding: 40px 30px; border-radius: 48px; }
}
@media screen and (max-width: 768px) {
    .hero-grid { flex-direction: column-reverse; }
    .hero-title { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .list-title { font-size: 1.9rem; }
    .news-grid { grid-template-columns: 1fr; }
    .article-title { font-size: 1.6rem; }
    .article-cover { height: 260px; }
    .article-main { padding: 24px; }
    .sidebar-card { padding: 20px; }
    .cta-wrapper { flex-direction: column; text-align: center; gap: 28px; }
    .cta-button-group { justify-content: center; }
}
@media screen and (min-width: 769px) {
    .mobile-menu { display: none !important; }
}



/* 翻页功能 */
.pagination-wrap {
    padding: 20px 10px;
    margin-top: 20px;
    border-radius: 8px;
}

.pagination-wrap .paging-cls {
    text-align: center;
}

.pagination-wrap .paging-cls li {
    display: inline-block;
    margin: 0 5px;
    list-style: none;
}

.pagination-wrap .paging-cls span,
.pagination-wrap .paging-cls a {
    display: inline-block;
    border: 1px solid #eef3f8;
    border-radius: 5px;
    height: 44px;
    line-height: 44px;
    width: 44px;
    margin: 0 3px;
    font-size: 14px;
    color: #000000;
    text-decoration: none;
}

.pagination-wrap .paging-cls span:hover,
.pagination-wrap .paging-cls a:hover {
    background: #F0B90B;
    color: #fff !important;
}

.pagination-wrap .paging-cls .current {
    background: #F0B90B;
    color: #fff;
    font-weight: bold;
}

.pagination-wrap .paging-cls .fa-angle-double-left::before {
    content: "<";
}

.pagination-wrap .paging-cls .fa-angle-double-right::before {
    content: ">";
}

.pagination-wrap .active a{
    background-color: #F0B90B !important;
    color: #fff !important;
    font-weight: bold;
}