/* Suspended Theme v2.1 — Bootstrap Dark Override + Custom Components Only */

/* === 1. Variables === */
:root {
    --sp-primary: #3b82f6;
    --sp-primary-dark: #1e3a8a;
    --sp-primary-light: #60a5fa;
    --sp-accent: #f59e0b;
    --sp-success: #10b981;
    --sp-danger: #ef4444;
    --sp-info: #06b6d4;
    --sp-bg-dark: #0f172a;
    --sp-bg-darker: #020617;
    --sp-bg-card: #1e293b;
    --sp-bg-card-hover: #334155;
    --sp-bg-light: #f8fafc;
    --sp-text: #e2e8f0;
    --sp-text-muted: #94a3b8;
    --sp-text-dark: #0f172a;
    --sp-text-dark-muted: #64748b;
    --sp-border: rgba(255,255,255,0.08);
    --sp-border-light: #e2e8f0;
    --sp-radius-sm: 6px;
    --sp-radius-md: 10px;
    --sp-radius-lg: 16px;
    --sp-radius-xl: 24px;
    --sp-shadow-glow: 0 0 20px rgba(59,130,246,0.15);
    --sp-transition: .3s cubic-bezier(.4,0,.2,1);
}

/* === 2. Dark Body === */
body { background: var(--sp-bg-dark)!important; color: var(--sp-text)!important; font-family: 'PingFang SC','Microsoft YaHei',system-ui,sans-serif; -webkit-font-smoothing: antialiased; }
a { color: var(--sp-primary-light); transition: color var(--sp-transition); }
a:hover { color: var(--sp-accent); }
h1,h2,h3,h4,h5,h6 { color: #fff; font-weight: 700; }
.text-muted { color: var(--sp-text-muted)!important; }

/* === 3. Bootstrap Dark Override === */
.card { background: var(--sp-bg-card); border-color: var(--sp-border); color: var(--sp-text); }
.btn { transition: all var(--sp-transition); }
.btn-primary { background: var(--sp-primary); border-color: var(--sp-primary); }
.btn-primary:hover { background: var(--sp-primary-dark); border-color: var(--sp-primary-dark); }
.btn-warning { background: var(--sp-accent); border-color: var(--sp-accent); color: #000; }
.btn-outline-primary { color: var(--sp-primary-light); border-color: var(--sp-primary-light); }
.btn-outline-primary:hover { background: var(--sp-primary); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.1); color: #fff; }
.form-control,.form-select { background: var(--sp-bg-darker); border-color: var(--sp-border); color: var(--sp-text); }
.form-control:focus,.form-select:focus { background: var(--sp-bg-darker); border-color: var(--sp-primary); color: var(--sp-text); box-shadow: 0 0 0 3px rgba(59,130,246,.15); }
.form-control::placeholder { color: var(--sp-text-muted); }
.form-label { color: var(--sp-text); }
.form-check-input { background-color: var(--sp-bg-card); border-color: var(--sp-border); }
.form-check-input:checked { background-color: var(--sp-primary); border-color: var(--sp-primary); }
.breadcrumb { background: transparent; }
.breadcrumb-item a { color: var(--sp-text-muted); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--sp-primary-light); }
.breadcrumb-item.active { color: #fff; }
.breadcrumb-item+.breadcrumb-item::before { color: var(--sp-text-muted); }
.page-link { background: var(--sp-bg-card); border-color: var(--sp-border); color: var(--sp-text-muted); }
.page-link:hover { background: rgba(59,130,246,.1); border-color: var(--sp-primary); color: #fff; }
.page-item.active .page-link { background: var(--sp-primary); border-color: var(--sp-primary); }
.page-item.disabled .page-link { background: var(--sp-bg-darker); color: var(--sp-text-muted); }
.nav-tabs { border-bottom-color: var(--sp-border); }
.nav-tabs .nav-link { color: var(--sp-text-muted); border: none; border-bottom: 2px solid transparent; transition: all var(--sp-transition); }
.nav-tabs .nav-link:hover { color: #fff; border-bottom-color: rgba(59,130,246,.3); }
.nav-tabs .nav-link.active { color: #fff; background: transparent; border-bottom-color: var(--sp-primary); }
.border,.border-top,.border-bottom,.border-light { border-color: var(--sp-border)!important; }
.shadow-sm { box-shadow: 0 1px 4px rgba(0,0,0,.3)!important; }
.bg-white.bg-opacity-10 { background: rgba(255,255,255,.06)!important; }

/* === 4. Section === */
.sp-section { padding: 80px 0; }
.sp-section-sm { padding: 48px 0; }
.sp-section-alt { background: var(--sp-bg-darker); }
.sp-section-light { background: var(--sp-bg-light); color: var(--sp-text-dark); }
.sp-section-light h2,.sp-section-light h3,.sp-section-light h4 { color: var(--sp-text-dark); }
.sp-section-light .text-muted,.sp-section-light .sp-section-sub { color: var(--sp-text-dark-muted)!important; }
.sp-section-eyebrow { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--sp-accent); }
.sp-section-title { font-size: 1.85rem; font-weight: 800; margin-bottom: 12px; }
.sp-section-sub { color: var(--sp-text-muted); max-width: 680px; margin: 0 auto 2rem; }

/* === 5. SP Card === */
.sp-card { background: var(--sp-bg-card); border: 1px solid var(--sp-border); border-radius: var(--sp-radius-lg); padding: 24px; transition: all var(--sp-transition); }
.sp-card:hover { border-color: rgba(59,130,246,.3); box-shadow: var(--sp-shadow-glow); transform: translateY(-4px); }
.sp-card-flat { background: var(--sp-bg-card); border: 1px solid var(--sp-border); border-radius: var(--sp-radius-md); padding: 20px; }

/* === 6. Icon Box === */
.sp-icon-box { width: 56px; height: 56px; border-radius: var(--sp-radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.sp-icon-box-primary { background: rgba(59,130,246,.15); color: var(--sp-primary-light); }
.sp-icon-box-accent { background: rgba(245,158,11,.15); color: var(--sp-accent); }
.sp-icon-box-success { background: rgba(16,185,129,.15); color: var(--sp-success); }
.sp-icon-box-danger { background: rgba(239,68,68,.15); color: var(--sp-danger); }
.sp-icon-box-info { background: rgba(6,182,212,.15); color: var(--sp-info); }

/* === 7. Badge === */
.sp-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 9999px; font-size: .78rem; font-weight: 600; background: rgba(59,130,246,.12); color: var(--sp-primary-light); border: 1px solid rgba(59,130,246,.2); }
.sp-badge-accent { background: rgba(245,158,11,.12); color: var(--sp-accent); border-color: rgba(245,158,11,.2); }

/* === 8. Glow Button === */
.btn-sp-glow { box-shadow: 0 4px 16px rgba(59,130,246,.3); }
.btn-sp-glow:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(59,130,246,.45); }

/* === 9. Header === */
.sp-header { background: rgba(15,23,42,.92)!important; backdrop-filter: blur(12px); border-bottom: 1px solid var(--sp-border); }
.sp-header .navbar-brand img { max-height: 44px; border-radius: 10px; }
.sp-header .nav-link { color: var(--sp-text-muted)!important; font-size: .9rem; font-weight: 500; padding: 8px 16px!important; border-radius: var(--sp-radius-sm); transition: all var(--sp-transition); }
.sp-header .nav-link:hover,.sp-header .nav-link.active { color: #fff!important; background: rgba(255,255,255,.06); }
.sp-header .navbar-toggler { border-color: rgba(255,255,255,.15); }

/* === 10. Hero === */
.sp-hero { position: relative; min-height: 520px; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg,var(--sp-bg-darker),var(--sp-bg-dark) 50%,var(--sp-primary-dark)); }
.sp-hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle,rgba(59,130,246,.08),transparent 70%); pointer-events: none; }
.sp-hero h1 { font-size: 2.5rem; font-weight: 800; line-height: 1.25; }
.sp-hero h1 strong { color: var(--sp-primary-light); }
.sp-hero-desc { font-size: 1.05rem; color: var(--sp-text-muted); line-height: 1.8; }
.sp-hero-simple { min-height: 280px; text-align: center; }
.sp-hero-simple h1 { font-size: 2rem; }

/* === 11. About === */
.sp-about-body { background: var(--sp-bg-card); border: 1px solid var(--sp-border); border-radius: var(--sp-radius-xl); padding: 40px; line-height: 1.9; }
.sp-about-body p { color: var(--sp-text-muted); }
.sp-about-body strong,.sp-about-body span { color: var(--sp-primary-light); }
.sp-about-body .sp-card-flat { background: var(--sp-bg-card-hover); }

/* === 12. WhyUs === */
.sp-whyus-card { text-align: center; min-height: 220px; }
.sp-whyus-highlight { border-color: var(--sp-primary)!important; box-shadow: var(--sp-shadow-glow); }

/* === 13. Dept Tabs === */
.sp-dept-tabs .btn { border-radius: 9999px; border: 1px solid var(--sp-border); background: transparent; color: var(--sp-text-muted); font-size: .88rem; padding: 8px 20px; transition: all var(--sp-transition); }
.sp-dept-tabs .btn:hover { border-color: var(--sp-primary); color: #fff; }
.sp-dept-tabs .btn.active { background: var(--sp-primary); border-color: var(--sp-primary); color: #fff; }
.sp-dept-panel { display: none; }
.sp-dept-panel.active { display: block; }

/* === 14. Mission === */
.sp-mission { background: linear-gradient(135deg,var(--sp-primary-dark),#1e1b4b); }
.sp-mission-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--sp-radius-lg); padding: 28px; transition: all var(--sp-transition); height: 100%; }
.sp-mission-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }

/* === 15. Update Log === */
.sp-update-block { background: var(--sp-bg-card); border: 1px solid var(--sp-border); border-radius: var(--sp-radius-lg); padding: 28px; margin-bottom: 20px; }
.sp-update-title { font-size: 1.15rem; font-weight: 700; color: #fff; }
.sp-update-body { color: var(--sp-text-muted); font-size: .9rem; line-height: 1.8; }
.sp-update-body p { margin-bottom: 4px; }
.sp-section-light .sp-update-block { background: #fff; border-color: var(--sp-border-light); box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.sp-section-light .sp-update-title { color: var(--sp-text-dark); }
.sp-section-light .sp-update-body { color: var(--sp-text-dark-muted); }

/* === 16. News === */
.sp-news-card { background: var(--sp-bg-card); border: 1px solid var(--sp-border); border-radius: var(--sp-radius-lg); overflow: hidden; transition: all var(--sp-transition); height: 100%; display: flex; flex-direction: column; }
.sp-news-card:hover { border-color: rgba(59,130,246,.3); transform: translateY(-4px); box-shadow: var(--sp-shadow-glow); }
.sp-news-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.sp-news-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.sp-news-body h3 { font-size: 1rem; font-weight: 600; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sp-news-body h3 a { color: #fff; text-decoration: none; }
.sp-news-body h3 a:hover { color: var(--sp-primary-light); }
.sp-news-excerpt { color: var(--sp-text-muted); font-size: .85rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
.sp-news-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; font-size: .8rem; color: var(--sp-text-muted); }

/* === 17. Feature Tabs (light bg) === */
.sp-section-light .nav-tabs { border-bottom-color: var(--sp-border-light); }
.sp-section-light .nav-tabs .nav-link { color: var(--sp-text-dark-muted); font-weight: 600; }
.sp-section-light .nav-tabs .nav-link:hover { color: var(--sp-text-dark); }
.sp-section-light .nav-tabs .nav-link.active { color: var(--sp-primary); border-bottom-color: var(--sp-primary); }
.sp-section-light .tab-pane h5 { color: var(--sp-text-dark); }
.sp-section-light .tab-pane p { color: var(--sp-text-dark-muted); }

/* === 18. Stats === */
.sp-stat-value { font-size: 1.8rem; font-weight: 800; color: #fff; }
.sp-stat-label { font-size: .85rem; color: var(--sp-text-muted); }

/* === 19. Testimonials === */
.sp-testimonial-text { color: var(--sp-text-muted); line-height: 1.8; font-style: italic; }
.sp-testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--sp-bg-card-hover); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--sp-primary-light); flex-shrink: 0; }
.sp-testimonial-name { font-weight: 600; font-size: .9rem; color: #fff; }
.sp-testimonial-role { font-size: .8rem; color: var(--sp-text-muted); }

/* === 20. Partners === */
.sp-partner-item { background: var(--sp-bg-card); border: 1px solid var(--sp-border); border-radius: var(--sp-radius-md); padding: 20px; text-align: center; transition: all var(--sp-transition); }
.sp-partner-item:hover { border-color: rgba(59,130,246,.3); }
.sp-partner-icon { font-size: 2rem; }

/* === 21. Trust === */
.sp-trust-badge { text-align: center; padding: 24px 16px; }
.sp-trust-badge>i { font-size: 2.2rem; color: var(--sp-primary-light); display: block; margin-bottom: 12px; }

/* === 22. Security === */
.sp-security-node { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; }
.sp-security-node+.sp-security-node { border-top: 1px solid var(--sp-border); }

/* === 23. Honor === */
.sp-honor-item { display: flex; gap: 20px; align-items: flex-start; padding: 24px 0; }
.sp-honor-item+.sp-honor-item { border-top: 1px solid var(--sp-border); }
.sp-honor-year { font-size: 1.5rem; font-weight: 800; color: var(--sp-primary-light); min-width: 80px; flex-shrink: 0; }

/* === 24. Authors === */
.sp-author-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 3px solid var(--sp-border); }

/* === 25. Matches === */
.sp-match-card { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; padding: 16px 20px; background: var(--sp-bg-card); border: 1px solid var(--sp-border); border-radius: var(--sp-radius-md); transition: border-color var(--sp-transition); }
.sp-match-card:hover { border-color: rgba(59,130,246,.2); }
.sp-match-team { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .9rem; }
.sp-match-team-right { justify-content: flex-end; text-align: right; }
.sp-match-team img { width: 32px; height: 32px; border-radius: 50%; object-fit: contain; }
.sp-match-team-placeholder { width: 32px; height: 32px; border-radius: 50%; background: var(--sp-bg-card-hover); display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; color: var(--sp-text-muted); flex-shrink: 0; }
.sp-match-score { font-size: 1.3rem; font-weight: 800; color: #fff; }
.sp-match-league { font-size: .75rem; color: var(--sp-text-muted); }
.sp-match-status { display: inline-block; padding: 2px 10px; border-radius: 9999px; font-size: .7rem; font-weight: 600; }

/* === 26. FAQ === */
.sp-faq-item { background: var(--sp-bg-card); border: 1px solid var(--sp-border); border-radius: var(--sp-radius-md); margin-bottom: 12px; overflow: hidden; }
.sp-faq-q { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; cursor: pointer; font-weight: 600; font-size: .95rem; color: #fff; transition: background var(--sp-transition); user-select: none; }
.sp-faq-q:hover { background: rgba(255,255,255,.03); }
.sp-faq-q i { transition: transform var(--sp-transition); color: var(--sp-text-muted); }
.sp-faq-item.open .sp-faq-q i { transform: rotate(180deg); }
.sp-faq-a { display: none; padding: 0 24px 18px; color: var(--sp-text-muted); font-size: .9rem; line-height: 1.8; }
.sp-faq-item.open .sp-faq-a { display: block; }

/* === 27. CTA === */
.sp-cta { background: linear-gradient(135deg,var(--sp-primary),var(--sp-primary-dark)); text-align: center; }

/* === 28. Article === */
.sp-article-content { line-height: 1.9; }
.sp-article-content h2 { font-size: 1.45rem; margin: 32px 0 16px; padding-bottom: 8px; border-bottom: 1px solid var(--sp-border); }
.sp-article-content h3 { font-size: 1.2rem; margin: 24px 0 12px; }
.sp-article-content img { border-radius: var(--sp-radius-md); margin: 16px 0; }
.sp-article-content blockquote { border-left: 4px solid var(--sp-primary); padding: 12px 20px; margin: 16px 0; background: rgba(59,130,246,.06); border-radius: 0 var(--sp-radius-sm) var(--sp-radius-sm) 0; color: var(--sp-text-muted); }
.sp-article-content a { color: var(--sp-primary-light); text-decoration: underline; }
.sp-article-content a:hover { color: var(--sp-accent); }
.sp-article-tag { padding: 4px 14px; border-radius: 9999px; background: rgba(59,130,246,.1); color: var(--sp-primary-light); font-size: .82rem; font-weight: 500; display: inline-block; transition: all var(--sp-transition); }
.sp-article-tag:hover { background: rgba(59,130,246,.2); color: #fff; text-decoration: none; }

/* === 29. Author Box === */
.sp-author-box { display: flex; gap: 20px; align-items: flex-start; padding: 24px; background: var(--sp-bg-card); border: 1px solid var(--sp-border); border-radius: var(--sp-radius-lg); }
.sp-author-box img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.sp-author-box-name { font-weight: 700; color: #fff; }
.sp-author-box-bio { font-size: .88rem; color: var(--sp-text-muted); line-height: 1.6; }

/* === 30. Author Profile === */
.sp-author-profile { text-align: center; padding: 40px 20px; background: var(--sp-bg-card); border: 1px solid var(--sp-border); border-radius: var(--sp-radius-xl); }
.sp-author-profile .sp-author-avatar { width: 96px; height: 96px; }
.sp-author-profile-name { font-size: 1.4rem; font-weight: 800; }
.sp-author-profile-job { color: var(--sp-primary-light); font-size: .9rem; }
.sp-author-stat-value { font-size: 1.4rem; font-weight: 800; color: #fff; }
.sp-author-stat-label { font-size: .78rem; color: var(--sp-text-muted); }

/* === 31. Post List === */
.sp-postlist-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--sp-border); transition: padding var(--sp-transition); }
.sp-postlist-item:hover { padding-left: 8px; }
.sp-postlist-thumb { width: 120px; height: 80px; border-radius: var(--sp-radius-sm); object-fit: cover; flex-shrink: 0; }
.sp-postlist-body h3 a { color: #fff; text-decoration: none; }
.sp-postlist-body h3 a:hover { color: var(--sp-primary-light); }
.sp-postlist-body p { font-size: .85rem; color: var(--sp-text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* === 32. Sidebar === */
.sp-sidebar-widget { background: var(--sp-bg-card); border: 1px solid var(--sp-border); border-radius: var(--sp-radius-lg); padding: 20px; margin-bottom: 20px; }
.sp-sidebar-widget h4 { padding-bottom: 10px; border-bottom: 1px solid var(--sp-border); }
.sp-sidebar-post { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.sp-sidebar-post:last-child { border-bottom: none; }
.sp-sidebar-post img { width: 60px; height: 42px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }
.sp-sidebar-post a { font-size: .85rem; color: var(--sp-text); text-decoration: none; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sp-sidebar-post a:hover { color: var(--sp-primary-light); }

/* === 33. Search === */
.sp-search-result { padding: 20px 0; border-bottom: 1px solid var(--sp-border); }
.sp-search-result:last-child { border-bottom: none; }
.sp-search-result h3 a { color: #fff; text-decoration: none; }
.sp-search-result h3 a:hover { color: var(--sp-primary-light); }

/* === 34. 404 === */
.sp-404-code { font-size: 8rem; font-weight: 900; color: var(--sp-primary); opacity: .3; line-height: 1; }

/* === 35. Legal === */
.sp-legal { max-width: 800px; margin: 0 auto; }
.sp-legal p { color: var(--sp-text-muted); line-height: 1.8; }
.sp-legal ul { color: var(--sp-text-muted); }

/* === 36. Form Card === */
.sp-form-card { max-width: 480px; margin: 0 auto; background: var(--sp-bg-card); border: 1px solid var(--sp-border); border-radius: var(--sp-radius-xl); padding: 40px; }

/* === 37. Social Share === */
.sp-share-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--sp-bg-card); border: 1px solid var(--sp-border); color: var(--sp-text-muted); transition: all var(--sp-transition); text-decoration: none; }
.sp-share-btn:hover { background: var(--sp-primary); border-color: var(--sp-primary); color: #fff; transform: translateY(-2px); }

/* === 38. Contact === */
.sp-contact-card { background: var(--sp-bg-card); border: 1px solid var(--sp-border); border-radius: var(--sp-radius-lg); padding: 28px; text-align: center; transition: all var(--sp-transition); height: 100%; }
.sp-contact-card:hover { border-color: rgba(59,130,246,.3); transform: translateY(-2px); }
.sp-contact-card i { font-size: 1.8rem; color: var(--sp-primary-light); display: block; margin-bottom: 12px; }

/* === 39. APP === */
.sp-app-stat-value { font-size: 1.5rem; font-weight: 800; color: var(--sp-accent); }
.sp-app-stat-label { font-size: .78rem; color: var(--sp-text-muted); }
.sp-qr-card { background: var(--sp-bg-card); border: 1px solid var(--sp-border); border-radius: var(--sp-radius-lg); padding: 24px; text-align: center; }
.sp-qr-card img { width: 160px; height: 160px; border-radius: var(--sp-radius-md); margin-bottom: 12px; }
.sp-install-step { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; }
.sp-install-step+.sp-install-step { border-top: 1px solid var(--sp-border); }
.sp-step-number { width: 36px; height: 36px; border-radius: 50%; background: var(--sp-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.sp-compare-table { width: 100%; }
.sp-compare-table th,.sp-compare-table td { padding: 14px 16px; border-bottom: 1px solid var(--sp-border); font-size: .9rem; }
.sp-compare-table th { background: var(--sp-bg-card); color: #fff; font-weight: 600; }
.sp-compare-table td { color: var(--sp-text-muted); }
.sp-compare-table tr:hover td { background: rgba(59,130,246,.04); }
.sp-trivia-item { background: var(--sp-bg-card); border: 1px solid var(--sp-border); border-radius: var(--sp-radius-md); padding: 20px; transition: all var(--sp-transition); }
.sp-trivia-item:hover { border-color: rgba(245,158,11,.3); }
.sp-invite-card { background: linear-gradient(135deg,var(--sp-primary-dark),#1e1b4b); border-radius: var(--sp-radius-xl); padding: 40px; text-align: center; }
.sp-invite-code { display: inline-block; padding: 12px 32px; background: rgba(255,255,255,.1); border: 2px dashed rgba(255,255,255,.3); border-radius: var(--sp-radius-md); font-size: 1.5rem; font-weight: 800; letter-spacing: 4px; color: var(--sp-accent); margin: 16px 0; }

/* === 40. Footer === */
.sp-footer { border-top: 1px solid var(--sp-border); }

/* === 41. Responsive === */
@media(max-width:768px) {
    .sp-section { padding: 48px 0; }
    .sp-section-sm { padding: 32px 0; }
    .sp-section-title { font-size: 1.4rem; }
    .sp-hero { min-height: 380px; }
    .sp-hero h1 { font-size: 1.7rem; }
    .sp-hero-simple { min-height: 200px; }
    .sp-hero-simple h1 { font-size: 1.5rem; }
    .sp-about-body { padding: 24px; }
    .sp-form-card { padding: 24px; margin: 0 12px; }
    .sp-invite-card { padding: 24px; }
    .sp-whyus-card { width: 100%!important; }
    .sp-author-box { flex-direction: column; align-items: center; text-align: center; }
}
@media(max-width:480px) {
    .sp-hero h1 { font-size: 1.5rem; }
    .sp-section-title { font-size: 1.25rem; }
    .sp-match-card { grid-template-columns: 1fr; text-align: center; gap: 8px; }
    .sp-match-team,.sp-match-team-right { justify-content: center; }
    .sp-404-code { font-size: 5rem; }
    .sp-postlist-item { flex-direction: column; }
    .sp-postlist-thumb { width: 100%; height: 180px; }
}