:root {
    --color-primary: #e56b6f;
    --color-primary-dark: #9d4a4d;
    --color-primary-darker: #3a2e2a;
    --color-accent: #f4a261;
    --color-accent-dark: #d9822b;
    --color-success: #2a9d8f;
    --color-danger: #d64550;

    --color-text: #3e3631;
    --color-text-muted: #746a61;
    --color-text-light: #a89d92;
    --color-bg: #fdf9f3;
    --color-bg-soft: #f3ede4;
    --color-bg-muted: #e9e1d5;
    --color-border: #d6ccbf;
    --color-border-soft: #dfd7cc;

    --gradient-hero: linear-gradient(118deg, #2b1e4e 0%, #5c2e6d 28%, #a54264 65%, #e56b6f 100%);
    --gradient-deep: linear-gradient(125deg, #141420 0%, #28283e 22%, #3d3151 50%, #574b6e 100%);
    --gradient-dept: linear-gradient(130deg, #3f1d38 0%, #7a2440 26%, #c73e5a 56%, #f07b3f 100%);
    --gradient-security: linear-gradient(115deg, #14213d 0%, #2a4d69 30%, #4a7c82 65%, #2a9d8f 100%);
    --gradient-mission: linear-gradient(125deg, #2b1b3d 0%, #5f2a55 30%, #8d3d5e 60%, #c95d63 100%);
    --gradient-trust: linear-gradient(120deg, #1b3a2c 0%, #24574d 35%, #2a9d8f 100%);
    --gradient-cta: linear-gradient(120deg, #241d4a 0%, #5c2e6d 28%, #b0465f 62%, #f26d5f 100%);
    --gradient-accent: linear-gradient(135deg, #f7b267 0%, #f25c54 55%, #d64550 100%);
    --gradient-icon: linear-gradient(135deg, #f7b267 0%, #e56b6f 35%, #a54264 100%);

    --glass-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 100%);
    --glass-border: rgba(255, 255, 255, 0.24);
    --glass-blur: blur(16px) saturate(150%);

    --shadow-sm: 0 2px 6px rgba(58, 46, 42, 0.04), 0 4px 14px rgba(58, 46, 42, 0.06);
    --shadow-md: 0 6px 12px rgba(58, 46, 42, 0.06), 0 12px 28px rgba(58, 46, 42, 0.09);
    --shadow-lg: 0 8px 16px rgba(58, 46, 42, 0.07), 0 18px 40px rgba(58, 46, 42, 0.12);
    --shadow-xl: 0 12px 24px rgba(58, 46, 42, 0.08), 0 24px 50px rgba(58, 46, 42, 0.14);
    --shadow-primary: 0 6px 16px rgba(229, 107, 111, 0.18), 0 16px 36px rgba(229, 107, 111, 0.22);
    --shadow-accent: 0 6px 16px rgba(244, 162, 97, 0.22), 0 14px 30px rgba(244, 162, 97, 0.18);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-pill: 999px;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;

    --transition-fast: 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-base: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

:where(body) {
    color: var(--color-text);
    background: linear-gradient(180deg, #fdf9f3 0%, #f3ede4 100%) fixed;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

:where(img) {
    max-width: 100%;
    height: auto;
}

.bg-glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--gradient-icon);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fffaf3;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(165, 66, 100, 0.25), inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.header {
    background: var(--color-bg);
    z-index: 1030;
}

.header .navbar-brand img {
    transition: transform var(--transition-fast);
}

.header .navbar-brand:hover img {
    transform: scale(1.08);
}

.header .nav-link {
    font-weight: 500;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.header .nav-link:hover {
    color: var(--color-primary);
}

.hero-section {
    min-height: 480px;
    background: var(--gradient-hero);
    color: #fffaf3;
    padding-block: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 20, 60, 0.25);
    z-index: 0;
    pointer-events: none;
}

.hero-section > .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    line-height: 1.2;
    text-shadow: 0 2px 24px rgba(20, 15, 30, 0.25);
}

.hero-section h2 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    opacity: 0.92;
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.hero-section .lead {
    font-size: 1.1rem;
    max-width: 700px;
    margin-inline: auto;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-block-start: var(--space-md);
}

.notice-bar {
    animation: noticeSlideIn 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.notice-bar a {
    transition: opacity var(--transition-fast);
}

.notice-bar a:hover {
    opacity: 0.8;
}

@keyframes noticeSlideIn {
    from { transform: translateY(-110%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

.breadcrumb-nav {
    background: var(--color-bg-muted);
}

.breadcrumb-nav .breadcrumb-item a {
    transition: color var(--transition-fast);
}

.breadcrumb-nav .breadcrumb-item a:hover {
    color: var(--color-primary-dark) !important;
}

.why-us-section {
    background: linear-gradient(160deg, var(--color-bg-soft) 0%, var(--color-bg-muted) 100%);
}

.whyus-card {
    background: linear-gradient(145deg, #fffdf8 0%, #f7efe5 100%);
    border: 1px solid var(--color-border-soft);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: all var(--transition-base);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.whyus-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-primary);
    border-color: var(--color-primary);
}

.about-section {
    background: var(--gradient-deep);
    color: #fffaf3;
}

.about-img-wrap {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
    transition: transform var(--transition-slow);
}

.about-img-wrap:hover img {
    transform: scale(1.06);
}

.about-card {
    transition: all var(--transition-base);
    border-radius: var(--radius-md);
}

.about-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow-md);
}

.text-white-75 {
    color: rgba(255, 250, 240, 0.78) !important;
}

.departments-section {
    background: var(--gradient-dept);
    color: #fffaf3;
}

.departments-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.departments-subtitle {
    font-size: 1.05rem;
    max-width: 800px;
    margin-inline: auto;
    color: rgba(255, 250, 240, 0.88);
}

.departments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-block-start: var(--space-lg);
}

@media (min-width: 768px) {
    .departments-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.d-item {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    box-shadow: 0 4px 20px rgba(20, 15, 10, 0.15);
}

.d-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
}

.d-num span {
    color: #fffaf3;
    font-size: 1.1rem;
    margin-inline-start: var(--space-xs);
}

.d-image {
    margin-bottom: var(--space-sm);
}

.d-image img {
    width: 100%;
    border-radius: var(--radius-md);
}

.security-section {
    background: var(--gradient-security);
    color: #fffaf3;
}

.security-network {
    position: relative;
    max-width: 800px;
    margin: var(--space-xl) auto;
    min-height: 400px;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .security-network {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, auto);
    }

    .core-node        { grid-column: 2; grid-row: 2; }
    .node-top-left    { grid-column: 1; grid-row: 1; }
    .node-top-right   { grid-column: 3; grid-row: 1; }
    .node-bottom-left { grid-column: 1; grid-row: 3; }
    .node-bottom-right{ grid-column: 3; grid-row: 3; }
}

.core-node {
    background: var(--gradient-accent);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    color: var(--color-primary-darker);
    font-weight: 700;
    box-shadow: 0 0 24px rgba(242, 92, 84, 0.45), 0 0 60px rgba(247, 178, 103, 0.3);
}

.node {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    text-align: center;
    color: #fffaf3;
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(10, 15, 20, 0.2);
}

.node:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 8px 24px rgba(10, 15, 20, 0.25);
}

.node-title {
    font-weight: 600;
    color: var(--color-accent);
    margin-block: var(--space-xs);
}

@media (max-width: 767.98px) {
    .core-node { width: 120px; height: 120px; }
}

.honor-section {
    background: linear-gradient(160deg, var(--color-bg-soft) 0%, var(--color-bg-muted) 100%);
}

.honor-row {
    padding-block: var(--space-sm);
}

.honor-text-card {
    padding: var(--space-md);
    background: linear-gradient(145deg, #fffdf8 0%, #f8f1e7 100%);
    border-radius: var(--radius-md);
    border-inline-start: 4px solid var(--color-primary);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.honor-text-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-inline-start-color: var(--color-accent-dark);
}

.mission-section {
    background: var(--gradient-mission);
    padding-block: var(--space-2xl);
    color: #fffaf3;
}

.mission-list li {
    margin-bottom: var(--space-sm);
    color: #f2e8df;
}

.stats-section {
    background: var(--color-bg);
}

.stats-card {
    transition: all var(--transition-base);
    background: var(--color-bg-soft);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.stats-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #fffaf3 0%, #fde8d9 100%);
}

.stats-card h3 {
    font-variant-numeric: tabular-nums;
    color: var(--color-primary-darker);
}

.news-section {
    background: linear-gradient(160deg, var(--color-bg-soft) 0%, var(--color-bg-muted) 100%);
}

.news-card {
    transition: all var(--transition-base);
    border: 1px solid var(--color-border-soft);
    border-radius: var(--radius-lg);
    background: var(--color-bg);
    box-shadow: var(--shadow-sm);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.news-img-wrap {
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.news-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.news-card:hover .news-img-wrap img {
    transform: scale(1.08);
}

.matches-section {
    background: linear-gradient(160deg, var(--color-bg-soft) 0%, var(--color-bg-muted) 100%);
}

.match-card {
    transition: all var(--transition-base);
    border: 1px solid var(--color-border-soft);
    border-radius: var(--radius-md);
    background: var(--color-bg);
    box-shadow: var(--shadow-sm);
}

.match-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.match-card .team {
    min-width: 0;
}

.match-card .team .small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.match-card .score {
    font-variant-numeric: tabular-nums;
    color: var(--color-primary-darker);
}

.trust-section {
    background: var(--gradient-trust);
    color: #fffaf3;
}

.trust-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-sm);
    height: 100%;
    transition: all var(--transition-base);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 8px 24px rgba(15, 25, 20, 0.15);
}

.trust-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 12px 28px rgba(15, 25, 20, 0.22);
}

.partners-section {
    background: linear-gradient(160deg, var(--color-bg-soft) 0%, var(--color-bg-muted) 100%);
}

.partner-card {
    transition: all var(--transition-base);
    border-radius: var(--radius-md);
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-primary);
}

.testimonials-section {
    background: var(--color-bg);
}

.testimonial-card {
    transition: all var(--transition-base);
    border-block-start: 4px solid transparent;
    border-radius: var(--radius-md);
}

.testimonial-card:hover {
    border-block-start-color: var(--color-accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.cta-banner-section {
    background: var(--gradient-cta);
    color: #fffaf3;
    position: relative;
    overflow: hidden;
}

.cta-banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 15, 30, 0.25);
    z-index: 0;
}

.cta-banner-section > .container {
    position: relative;
    z-index: 1;
}

.cta-banner-section .btn-warning {
    box-shadow: var(--shadow-accent);
}

.text-white-75 {
    color: rgba(255, 250, 240, 0.88) !important;
}

.footer {
    font-size: 0.9rem;
    color: #bfb9ae;
}

.footer a {
    transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer a:hover {
    color: #fbbf24 !important;
}

.footer-copyright {
    font-size: 0.85rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

/* Beian */
.footer-beian {
    font-size: 0.8rem;
    line-height: 1.8;
    opacity: 0.7;
}

.footer-beian a:hover {
    color: #fbbf24 !important;
    text-decoration: underline !important;
}

.footer-beian img {
    margin-inline-end: 4px;
    border-radius: 3px;
    filter: drop-shadow(0 2px 3px rgba(76, 29, 149, 0.25));
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-beian a:hover img {
    transform: scale(1.25) rotate(3deg);
    filter: drop-shadow(0 4px 6px rgba(76, 29, 149, 0.35));
}

.footer-beian li {
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .footer-beian ul {
        flex-direction: column;
        gap: var(--space-xs) !important;
    }

    .footer-beian li {
        white-space: normal;
        text-align: center;
    }
}

/* ============================================
   22. Form (Login/Signup/Contact)
   ============================================ */
.form-control:focus,
.form-select:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 0.25rem rgba(139, 92, 246, 0.18), 0 8px 24px -8px rgba(139, 92, 246, 0.35);
}

.btn-primary {
    background-color: #7c3aed;
    background-image: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 45%, #6d28d9 100%);
    border-color: #6d28d9;
    border-radius: 0.75rem;
    box-shadow: 0 4px 14px -6px rgba(109, 40, 217, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
    transition: background-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #6d28d9;
    border-color: #5b21b6;
    background-image: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #5b21b6 100%);
    box-shadow: 0 12px 28px -10px rgba(109, 40, 217, 0.55);
}

.input-group-text {
    background-color: #f5f3ff;
    background-image: linear-gradient(135deg, #ede9fe 0%, #faf5ff 100%);
    border-color: #ddd6fe;
}

/* ============================================
   23. Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   Grid Layout Defaults (CSS-Variant-Ready)
   CSSVariantEngine sẽ override các rules này
   ============================================================ */

/* 新闻网格 (默认 3 列) */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.10) 0%, rgba(253, 186, 116, 0.04) 100%);
}

/* 功能特性列表 (默认 3 列) */
.feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.10) 0%, rgba(196, 181, 253, 0.04) 100%);
}

/* 用户评价 (默认 3 列) */
.testimonial-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.10) 0%, rgba(249, 168, 212, 0.04) 100%);
}

/* 合作伙伴 (默认 4 列) */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.10) 0%, rgba(252, 211, 77, 0.04) 100%);
}

/* 数据统计 (默认 4 列) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.10) 0%, rgba(110, 231, 183, 0.04) 100%);
}

/* FAQ 列表 (默认单列居中) */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.08) 0%, rgba(56, 189, 248, 0.03) 55%, transparent 75%);
}

/* Hero 内容 (默认居中) */
.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: radial-gradient(ellipse at top, rgba(168, 85, 247, 0.12) 0%, rgba(236, 72, 153, 0.05) 50%, transparent 78%);
}

/* Hero 分割布局 (左文右图) */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: radial-gradient(circle at 15% 20%, rgba(236, 72, 153, 0.09) 0%, rgba(139, 92, 246, 0.05) 45%, transparent 70%);
}
.hero-split-text {
    color: #312e81;
}
.hero-split-img {
    text-align: center;
    filter: drop-shadow(0 16px 24px rgba(109, 40, 217, 0.15));
}

/* CTA 内容 (默认居中) */
.cta-inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: radial-gradient(ellipse at bottom, rgba(245, 158, 11, 0.10) 0%, rgba(251, 191, 36, 0.04) 50%, transparent 75%);
}

/* 作者团队 (默认 4 列) */
.authors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.10) 0%, rgba(125, 211, 252, 0.04) 100%);
}

/* 联系渠道 (默认 3 列) */
.channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.10) 0%, rgba(165, 180, 252, 0.04) 100%);
}

/* 文章列表 (默认 2 列) */
.post-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.10) 0%, rgba(253, 164, 175, 0.04) 100%);
}

/* 相关文章 (默认 3 列) */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.10) 0%, rgba(94, 234, 212, 0.04) 100%);
}

/* 赛事列表 (默认 3 列) */
.matches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.10) 0%, rgba(190, 242, 100, 0.04) 100%);
}

/* 步 骤网格 (默认 4 列) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.10) 0%, rgba(240, 171, 252, 0.04) 100%);
}

/* 二维码网格 (默认 3 列) */
.qr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    justify-items: center;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.10) 0%, rgba(103, 232, 249, 0.04) 100%);
}

/* 荣誉列表 (默认 2 列交替) */
.honor-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background: linear-gradient(180deg, rgba(234, 88, 12, 0.07) 0%, rgba(251, 146, 60, 0.03) 50%, transparent 100%);
}
.honor-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: radial-gradient(ellipse at 30% 50%, rgba(251, 146, 60, 0.08) 0%, rgba(253, 230, 138, 0.03) 60%, transparent 80%);
}
.honor-row-reverse {
    direction: rtl;
}
.honor-row-reverse > * {
    direction: ltr;
}

/* ============================================================
   Responsive Defaults
   ============================================================ */
@media (max-width: 1024px) {
    .news-grid,
    .feature-list,
    .channels-grid,
    .testimonial-list { grid-template-columns: repeat(2, 1fr); }

    .partner-grid,
    .stats-grid,
    .authors-grid { grid-template-columns: repeat(2, 1fr); }

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

    .hero-split { grid-template-columns: 1fr; }
    .honor-row { grid-template-columns: 1fr; }
    .honor-row-reverse { direction: ltr; }
}

@media (max-width: 640px) {
    .news-grid,
    .feature-list,
    .testimonial-list,
    .channels-grid,
    .post-list-grid,
    .related-grid,
    .authors-grid,
    .matches-grid { grid-template-columns: 1fr; }

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

    .steps-grid { grid-template-columns: 1fr; }
    .qr-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }

    .faq-list { max-width: 100%; }
}