```css
/* ================================================================
   每日大赛在线观看 — "BRUTAL LIVE" Edition
   Neo-Brutalist Editorial Design System
   Warm Paper #F5F0E8 · Orange #FF4D00 · Blue #0056D6 · Yellow #FFD100
   ================================================================ */

/* 基础重置 */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    overflow-x: hidden;
    background-color: #F5F0E8;
    background-image: radial-gradient(rgba(26, 26, 46, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    color: #1A1A2E;
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: #FF4D00;
    color: #F5F0E8;
}

/* 核心布局 — 必须居中 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section:nth-child(even) {
    background: #F2EAE0;
}

/* ================================================
   导航 — 固定顶部
   ================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(245, 240, 232, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 3px solid #1A1A2E;
}

.site-header::after {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, #FF4D00 0%, #FFD100 50%, #0056D6 100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.25rem;
    text-decoration: none;
    color: #1A1A2E;
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: #FF4D00;
    color: #F5F0E8;
    border: 2.5px solid #1A1A2E;
    box-shadow: 3px 3px 0 #1A1A2E;
    transform: rotate(-4deg);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover .logo-icon {
    transform: rotate(0deg) scale(1.08);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    color: #1A1A2E;
    padding: 8px 2px;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
    position: relative;
}

.main-nav a:hover {
    border-bottom-color: #FF4D00;
    color: #FF4D00;
}

.nav-cta {
    padding: 10px 24px;
    border-radius: 0;
    color: #F5F0E8 !important;
    font-weight: 800;
    background: #0056D6;
    border: 2.5px solid #1A1A2E !important;
    box-shadow: 3px 3px 0 #1A1A2E;
    border-bottom-color: #1A1A2E !important;
    transition: all 0.15s ease !important;
    letter-spacing: 0.5px;
}

.nav-cta:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 #1A1A2E;
    color: #F5F0E8 !important;
    border-bottom-color: #1A1A2E !important;
    background: #1A3E9E;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 2px solid #1A1A2E;
    border-radius: 0;
    cursor: pointer;
    padding: 8px;
    box-shadow: 2px 2px 0 #1A1A2E;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: #1A1A2E;
    border-radius: 0;
    transition: all 0.3s ease;
}

/* ================================================
   首页 Hero
   ================================================ */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    padding-top: 96px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🏆 LIVE —';
    position: absolute;
    top: 16%;
    right: -40px;
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: -0.08em;
    color: rgba(255, 77, 0, 0.06);
    transform: rotate(-8deg);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    font-family: system-ui, sans-serif;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 6%;
    right: 12%;
    width: 140px;
    height: 140px;
    background: #FFD100;
    opacity: 0.4;
    transform: rotate(20deg);
    border: 3px solid #1A1A2E;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 2;
    flex: 1 1 500px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 7px 18px;
    border-radius: 0;
    margin-bottom: 24px;
    background: #FFD100;
    border: 2.5px solid #1A1A2E;
    box-shadow: 4px 4px 0 #1A1A2E;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.hero-eyebrow::before {
    content: '◉ ';
    color: #FF4D00;
    animation: pulse-dot 1.5s infinite alternate;
}

@keyframes pulse-dot {
    0% { opacity: 0.6; }
    100% { opacity: 1; text-shadow: 0 0 8px rgba(255, 77, 0, 0.8); }
}

.hero h1 {
    font-size: 3.4rem;
    line-height: 1.1;
    margin-bottom: 26px;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.hero h1 .highlight {
    background: linear-gradient(105deg, #FF4D00 0%, #FF7040 50%, #FFD100 100%);
    padding: 0 12px;
    border: 2.5px solid #1A1A2E;
    box-shadow: 5px 5px 0 #1A1A2E;
    display: inline-block;
    transform: rotate(-1deg);
}

.hero p {
    font-size: 1.15rem;
    color: #4A4A5A;
    max-width: 560px;
    margin-bottom: 36px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    border-radius: 0;
    overflow: hidden;
    border: 3px solid #1A1A2E;
    box-shadow: 10px 10px 0 #0056D6;
    transform: rotate(2deg);
    background: #F5F0E8;
    flex: 1 1 380px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover {
    transform: rotate(0deg) translate(-4px, -4px);
    box-shadow: 14px 14px 0 #0056D6;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ================================================
   按钮
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 0;
    font-weight: 800;
    cursor: pointer;
    border: 2.5px solid #1A1A2E;
    text-decoration: none;
    transition: all 0.15s ease;
    font-size: 0.95rem;
    line-height: 1;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: #FF4D00;
    color: #F5F0E8;
    box-shadow: 5px 5px 0 #1A1A2E;
}

.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 #1A1A2E;
    background: #E84300;
}

.btn-primary:active {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 #1A1A2E;
}

.btn-outline {
    background: #F5F0E8;
    border: 2.5px solid #1A1A2E;
    color: #1A1A2E;
    box-shadow: 5px 5px 0 #1A1A2E;
}

.btn-outline:hover {
    background: #FFD100;
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 #0056D6;
    border-color: #1A1A2E;
}

.btn-outline:active {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 #1A1A2E;
}

/* ================================================
   标签 / 标题
   ================================================ */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #0056D6;
    position: relative;
    padding-left: 28px;
}

.section-label::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #FF4D00;
    font-size: 1em;
    top: 50%;
    transform: translateY(-50%);
}

.section-title {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
}

.section-desc {
    max-width: 600px;
    color: #4A4A5A;
    margin-bottom: 48px;
    font-size: 1rem;
    line-height: 1.7;
}

/* ================================================
   卡片网格
   ================================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.category-card {
    border-radius: 0;
    padding: 32px;
    border: 2.5px solid #1A1A2E;
    background: #FFFFFF;
    box-shadow: 6px 6px 0 #1A1A2E;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 7px;
    background: linear-gradient(90deg, #FF4D00, #FFD100, #0056D6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.category-card:hover {
    transform: translate(-3px, -3px) rotate(-0.5deg);
    box-shadow: 9px 9px 0 #FF4D00;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.5rem;
    background: #F0EAE0;
    border: 2.5px solid #1A1A2E;
    box-shadow: 3px 3px 0 #1A1A2E;
    transition: transform 0.3s ease;
}

.category-card:hover .card-icon {
    transform: rotate(-8deg) scale(1.05);
    background: #FFD100;
}

.card-link {
    font-weight: 800;
    font-size: 0.88rem;
    text-decoration: none;
    color: #FF4D00;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease;
    position: relative;
}

.card-link:hover {
    gap: 14px;
    color: #0056D6;
}

.card-link::after {
    content: '→';
    font-size: 1.3em;
    font-weight: 900;
}

/* ================================================
   特性块
   ================================================ */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-image {
    border-radius: 0;
    overflow: hidden;
    border: 3px solid #1A1A2E;
    box-shadow: 10px 10px 0 #FFD100;
    transform: rotate(-1.5deg);
    position: relative;
    background: #F5F0E8;
    transition: all 0.3s ease;
}

.feature-image:hover {
    transform: rotate(0deg) translate(-3px, -3px);
    box-shadow: 13px 13px 0 #FFD100;
}

.feature-image::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(255, 77, 0, 0.9);
    color: #F5F0E8;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #1A1A2E;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-image:hover::after {
    background: #0056D6;
    transform: translate(-50%, -50%) scale(1.08);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-text p {
    margin-bottom: 20px;
    color: #4A4A5A;
    font-size: 1.02rem;
}

.feature-list {
    list-style: none;
    margin-top: 12px;
}

.feature-list li {
    padding: 9px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    font-size: 0.98rem;
}

.feature-list li::before {
    content: '✓';
    font-weight: 900;
    color: #0056D6;
    background: #F0EAE0;
    border: 2px solid #1A1A2E;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    box-shadow: 2px 2px 0 #1A1A2E;
}

/* ================================================
   数据条
   ================================================ */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    text-align: center;
}

.stat-item {
    padding: 36px 24px;
    border-radius: 0;
    border: 2.5px solid #1A1A2E;
    background: #FFFFFF;
    box-shadow: 6px 6px 0 #1A1A2E;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #1A1A2E;
}

.stat-item:nth-child(1)::before { background: #FF4D00; }
.stat-item:nth-child(2)::before { background: #0056D6; }
.stat-item:nth-child(3)::before { background: #FFD100; }
.stat-item:nth-child(4)::before { background: #00BFA5; }

.stat-item:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 #0056D6;
}

.stat-item:nth-child(1) .stat-number { color: #FF4D00; }
.stat-item:nth-child(2) .stat-number { color: #0056D6; }
.stat-item:nth-child(3) .stat-number { color: #E0A800; }
.stat-item:nth-child(4) .stat-number { color: #00A890; }

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.92rem;
    color: #4A4A5A;
    margin-top: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.82rem;
}

/* ================================================
   内容墙
   ================================================ */
.content-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.content-wall-item {
    border-radius: 0;
    overflow: hidden;
    border: 2.5px solid #1A1A2E;
    background: #FFFFFF;
    box-shadow: 6px 6px 0 #1A1A2E;
    transition: all 0.22s ease;
    position: relative;
}

.content-wall-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FF4D00, #FFD100);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.content-wall-item:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 #FFD100;
}

.content-wall-item:hover::after {
    transform: scaleX(1);
}

.content-wall-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2.5px solid #1A1A2E;
    display: block;
    transition: transform 0.5s ease;
}

.content-wall-item:hover img {
    transform: scale(1.03);
}

.content-wall-body {
    padding: 24px;
}

.content-wall-body h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.content-wall-body p {
    font-size: 0.9rem;
    color: #4A4A5A;
    margin-bottom: 14px;
    line-height: 1.6;
}

.content-wall-body .card-link {
    color: #0056D6;
}

/* ================================================
   FAQ
   ================================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 2.5px solid #1A1A2E;
    border-radius: 0;
    margin-bottom: 14px;
    overflow: hidden;
    cursor: pointer;
    background: #FFFFFF;
    box-shadow: 4px 4px 0 #1A1A2E;
    transition: all 0.2s ease;
}

.faq-item:hover {
    box-shadow: 6px 6px 0 #FFD100;
    transform: translate(-1px, -1px);
}

.faq-item .faq-question {
    padding: 20px 24px;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.02rem;
    letter-spacing: 0.2px;
    transition: background 0.2s ease;
}

.faq-item .faq-question::after {
    content: '＋';
    font-size: 1.4rem;
    font-weight: 900;
    color: #FF4D00;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-question {
    background: #FFF8E7;
}

.faq-item.open .faq-question::after {
    content: '−';
    transform: rotate(180deg);
    color: #0056D6;
}

.faq-item .faq-answer {
    padding: 0 24px 20px;
    display: none;
    color: #55556A;
    font-size: 0.95rem;
    line-height: 1.7;
    border-top: 2px solid #F0EAE0;
    padding-top: 14px;
}

.faq-item.open .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================================================
   CTA 横幅
   ================================================ */
.cta-banner {
    padding: 64px 24px;
    text-align: center;
    border-radius: 0;
    background: #0056D6;
    color: #F5F0E8;
    border: 3px solid #1A1A2E;
    box-shadow: 10px 10px 0 #FF4D00;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '★★★★★';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 7rem;
    color: rgba(255, 209, 0, 0.15);
    pointer-events: none;
    letter-spacing: 10px;
}

.cta-banner::after {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 90px;
    height: 90px;
    background: #FFD100;
    transform: rotate(45deg);
    border: 3px solid #1A1A2E;
    opacity: 0.6;
    pointer-events: none;
}

.cta-banner h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #F5F0E8;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.cta-banner h2::after {
    content: ' 🔥';
}

.cta-banner p {
    color: rgba(245, 240, 232, 0.85);
    max-width: 520px;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
}

.cta-banner .btn-primary {
    background: #F5F0E8;
    color: #0056D6;
    box-shadow: 4px 4px 0 #1A1A2E;
    position: relative;
    z-index: 2;
}

.cta-banner .btn-primary:hover {
    background: #FFD100;
    color: #1A1A2E;
    box-shadow: 6px 6px 0 #1A1A2E;
    transform: translate(-2px, -2px);
}

/* ================================================
   页脚
   ================================================ */
.site-footer {
    background: #F2EAE0;
    border-top: 3px solid #1A1A2E;
    padding: 56px 0 28px;
    margin-top: 80px;
    position: relative;
}

.site-footer::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, #FF4D00, #FFD100, #0056D6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand {
    padding-right: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.footer-brand p {
    color: #55556A;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-col h4 {
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
    color: #0056D6;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    border-bottom: 3px solid #FF4D00;
}

.footer-col a {
    display: block;
    color: #3A3A4C;
    text-decoration: none;
    padding: 5px 0;
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    padding-left: 8px;
}

.footer-col a:hover {
    color: #FF4D00;
    border-left-color: #FF4D00;
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(26, 26, 46, 0.12);
    margin-top: 44px;
    padding-top: 22px;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 0.5px;
}

.footer-bottom a {
    color: #0056D6;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    underline: 2px solid #FF4D00;
    text-decoration: underline;
}

/* ================================================
   工具类
   ================================================ */
.text-accent {
    color: #FF4D00;
    font-weight: 800;
}

.text-center {
    text-align: center;
}

.seo-description {
    max-width: 600px;
    margin: 0 auto 48px;
    opacity: 0.72;
    color: #3A3A4C;
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ================================================
   响应式
   ================================================ */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.6rem;
    }
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .feature-block {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .feature-block {
        grid-template-columns: 1fr;
    }
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .main-nav {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #F5F0E8;
        padding: 24px;
        gap: 16px;
        border-bottom: 3px solid #1A1A2E;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }
    .main-nav.open a {
        font-size: 1.1rem;
        padding: 10px 0;
        border-bottom: 2px solid rgba(26, 26, 46, 0.08);
        display: block;
        text-align: center;
    }
    .main-nav.open .nav-cta {
        text-align: center;
        display: block;
        font-size: 1rem;
    }
    .hero {
        padding-top: 90px;
        min-height: auto;
        padding-bottom: 40px;
        gap: 40px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .section {
        padding: 56px 0;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .cta-banner {
        padding: 48px 20px;
    }
    .cta-banner h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .cards-grid,
    .content-wall,
    .stats-bar {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .hero h1 {
        font-size: 1.9rem;
    }
    .hero h1 .highlight {
        display: inline;
        padding: 2px 6px;
    }
    .hero-image {
        box-shadow: 7px 7px 0 #0056D6;
    }
    .stat-item {
        padding: 24px 20px;
    }
    .stat-number {
        font-size: 2.2rem;
    }
    .footer-bottom {
        font-size: 0.75rem;
    }
}