/* ============================================================
   SAISHI.CSS v3.0 - 赛事/文章/APP 页面专属样式
   ============================================================
   匹配 Section 模板:
   - ArticleSection (单文章详情)
   - AppHeroSection / AppQrSection / AppInstallSection / AppShowcaseSection
   - ContactChannelsSection / ContactFormSection / ContactQuickSection / ContactCommitmentsSection
   - LoginFormSection / SignupFormSection
   - SearchBoxSection (extends)
   - 滚动条 / 打印样式 / 图标
   ============================================================ */

/* ============================================
   1. Single Post (ArticleSection)
   ============================================ */
.single-post {
    overflow: hidden;
}

.single-post .post-meta {
    font-size: 0.9rem;
}

.single-post .post-meta i {
    color: var(--color-primary, #7c3aed);
}

/* Post content typography */
.post-content {
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--color-text, #243042);
}

.post-content :is(h2, h3, h4) {
    margin-block: 2rem 1rem;
    font-weight: 700;
    color: var(--color-primary-darker, #2b124c);
    line-height: 1.4;
}

.post-content h2 {
    font-size: 1.75rem;
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--color-border, #c9d2e3);
}

.post-content h3 {
    font-size: 1.35rem;
}

.post-content :is(p, li) {
    margin-bottom: var(--space-sm);
}

.post-content blockquote {
    border-inline-start: 4px solid var(--color-primary, #7c3aed);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-bg-soft, #f4f0ff);
    border-radius: 0 20px 20px 0;
    margin-block: var(--space-md);
    color: var(--color-text-muted, #5d6678);
    font-style: italic;
    box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.08), 0 10px 28px rgba(48, 20, 74, 0.06);
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin-block: var(--space-sm);
    box-shadow: 0 18px 42px rgba(34, 18, 61, 0.14), 0 2px 10px rgba(124, 58, 237, 0.08);
}

.post-content a {
    color: var(--color-primary, #7c3aed);
    text-decoration: underline;
    transition: color 220ms cubic-bezier(.22, 1, .36, 1), text-shadow 220ms cubic-bezier(.22, 1, .36, 1);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.post-content a:hover {
    color: var(--color-primary-dark, #5b21b6);
}

.post-content ul,
.post-content ol {
    padding-inline-start: 1.5rem;
}

.post-content code {
    background: var(--color-bg-muted, #ece8ff);
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.9em;
    color: var(--color-danger, #c026d3);
    border: 1px solid rgba(124, 58, 237, 0.12);
}

.post-content pre {
    background: linear-gradient(135deg, #1f1533 0%, #2b124c 55%, #1c2a4a 100%);
    color: #f8f7ff;
    padding: var(--space-md);
    border-radius: 24px;
    overflow-x: auto;
    margin-block: var(--space-md);
    box-shadow: 0 24px 56px rgba(23, 18, 43, 0.34);
}

.post-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin-block: var(--space-md);
}

.post-content table th,
.post-content table td {
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid var(--color-border, #c9d2e3);
    text-align: start;
}

.post-content table th {
    background: linear-gradient(180deg, #f5f0ff 0%, #ebe6fb 100%);
    font-weight: 600;
}

/* TOC */
.toc-box {
    border-inline-start: 3px solid var(--color-primary, #7c3aed);
}

.toc-box ol {
    padding-inline-start: 1.2rem;
}

.toc-box ol li {
    margin: 0.4rem 0;
}

.toc-box ol li a {
    transition: all 220ms cubic-bezier(.22, 1, .36, 1);
}

.toc-box ol li a:hover {
    color: var(--color-primary-dark, #5b21b6);
    text-decoration: underline !important;
    padding-inline-start: 4px;
}

/* Tags */
.post-tags .badge {
    background: var(--color-bg-muted, #ece8ff) !important;
    color: #4b5563 !important;
    padding: 6px 12px;
    font-weight: 500;
    transition: all 220ms cubic-bezier(.22, 1, .36, 1);
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.08);
}

.post-tags .badge:hover {
    background: var(--color-primary, #7c3aed) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(92, 45, 145, 0.24);
}

/* Post nav */
.post-nav {
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.post-nav .btn {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============================================
   2. App Hero (AppHeroSection)
   ============================================ */
.app-hero-section {
    background: linear-gradient(135deg, #2b124c 0%, #5b21b6 40%, #f97316 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.app-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.16), transparent 34%), linear-gradient(180deg, rgba(15, 10, 25, 0.14), rgba(15, 10, 25, 0.28));
    z-index: 0;
}

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

.app-hero-section h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    text-shadow: 0 2px 18px rgba(22, 10, 40, 0.22);
}

.app-hero-section img {
    transition: transform 520ms cubic-bezier(.22, 1, .36, 1), filter 520ms cubic-bezier(.22, 1, .36, 1);
    filter: drop-shadow(0 26px 46px rgba(14, 8, 28, 0.38)) saturate(1.08);
}

.app-hero-section img:hover {
    transform: translateY(-10px);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.72) !important;
}

/* ============================================
   3. App QR (AppQrSection)
   ============================================ */
.app-qr-section {
    background: linear-gradient(180deg, #f7f2ff 0%, #eef3ff 100%);
}

.qr-card {
    transition: all 280ms cubic-bezier(.22, 1, .36, 1);
    border: 2px solid transparent;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 34px rgba(58, 32, 97, 0.08);
}

.qr-card:hover {
    transform: scale(1.03);
    border-color: var(--color-accent, #f59e0b);
    box-shadow: 0 22px 52px rgba(70, 34, 18, 0.18), 0 0 0 1px rgba(245, 158, 11, 0.14);
}

.qr-card img {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* ============================================
   4. App Install Steps (AppInstallSection)
   ============================================ */
.app-install-section {
    background: linear-gradient(180deg, #f4f0ff 0%, #f7fbff 100%);
}

.app-install-section .badge.rounded-circle {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 999px;
    background: linear-gradient(145deg, #7c3aed 0%, #a855f7 100%);
    color: #fff;
    box-shadow: 0 12px 28px rgba(92, 45, 145, 0.24);
}

.app-install-section .bg-white {
    transition: all 280ms cubic-bezier(.22, 1, .36, 1);
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(40, 23, 62, 0.08);
}

.app-install-section .bg-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(40, 23, 62, 0.14);
}

.app-install-section .bg-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #f97316 0%, #7c3aed 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 280ms cubic-bezier(.22, 1, .36, 1);
}

.app-install-section .bg-white:hover::before {
    transform: scaleY(1);
}

/* ============================================
   5. App Showcase (AppShowcaseSection)
   ============================================ */
.app-showcase-section {
    background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
}

.app-showcase-section img {
    transition: transform 520ms cubic-bezier(.22, 1, .36, 1), filter 520ms cubic-bezier(.22, 1, .36, 1);
    filter: drop-shadow(0 20px 34px rgba(28, 19, 48, 0.16));
}

.app-showcase-section img:hover {
    transform: translateY(-5px) rotate(-1deg);
}

.app-showcase-section .bg-white {
    transition: all 280ms cubic-bezier(.22, 1, .36, 1);
    border-inline-start: 3px solid transparent;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(34, 24, 58, 0.07);
}

.app-showcase-section .bg-white:hover {
    border-inline-start-color: var(--color-primary, #7c3aed);
    transform: translateX(5px);
    box-shadow: 0 22px 48px rgba(34, 24, 58, 0.12);
}

/* ============================================
   6. Contact Sections
   ============================================ */
.contact-channels-section {
    background: linear-gradient(180deg, #fbf7ff 0%, #eef7ff 100%);
}

.contact-channels-section article {
    transition: all 280ms cubic-bezier(.22, 1, .36, 1);
    border: 1px solid var(--color-border-soft, #d8dff0);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 30px rgba(35, 24, 63, 0.08);
}

.contact-channels-section article:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(35, 24, 63, 0.14);
    border-color: var(--color-primary, #7c3aed);
}

.contact-channels-section article ul li {
    transition: padding 220ms cubic-bezier(.22, 1, .36, 1);
}

.contact-channels-section article ul li:hover {
    padding-inline-start: 4px;
}

/* Contact Quick */
.contact-quick-section {
    background: linear-gradient(180deg, #f5f0ff 0%, #f4f8ff 100%);
}

.contact-quick-section .contact-card {
    transition: all 280ms cubic-bezier(.22, 1, .36, 1);
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(39, 23, 64, 0.08);
}

.contact-quick-section .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 58px rgba(39, 23, 64, 0.15);
}

.contact-quick-section .contact-card i {
    transition: transform 280ms cubic-bezier(.22, 1, .36, 1);
    color: var(--color-primary, #7c3aed);
}

.contact-quick-section .contact-card:hover i {
    transform: scale(1.1) rotate(-5deg);
}

/* Contact Form */
.contact-form-section {
    background: linear-gradient(180deg, #f6f2ff 0%, #eef3ff 100%);
}

.contact-form-section .form-control,
.contact-form-section .form-select {
    border: 2px solid var(--color-border, #c9d2e3);
    transition: all 220ms cubic-bezier(.22, 1, .36, 1);
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
    border-color: var(--color-primary, #7c3aed);
    box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.14), 0 12px 28px rgba(124, 58, 237, 0.08);
}

.contact-form-section button[type="submit"] {
    transition: all 280ms cubic-bezier(.22, 1, .36, 1);
}

.contact-form-section button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(92, 45, 145, 0.24);
}

/* Contact Commitments */
.contact-commitments-section {
    background: linear-gradient(180deg, #f7fbff 0%, #f5f0ff 100%);
}

.contact-commitments-section .bg-white {
    transition: all 280ms cubic-bezier(.22, 1, .36, 1);
    text-align: center;
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(32, 22, 56, 0.08);
}

.contact-commitments-section .bg-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 54px rgba(32, 22, 56, 0.14);
}

.contact-commitments-section .bg-white i {
    transition: transform 280ms cubic-bezier(.22, 1, .36, 1);
    color: var(--color-accent, #f59e0b);
}

.contact-commitments-section .bg-white:hover i {
    transform: scale(1.15);
}

/* ============================================
   7. Login / Signup Forms
   ============================================ */
main:has(> .container > .bg-white > form) .input-group-text {
    background-color: var(--color-bg-muted, #ece8ff);
    border-color: var(--color-border, #c9d2e3);
    border-inline-end: none;
    color: var(--color-primary-darker, #2b124c);
}

main:has(> .container > .bg-white > form) .input-group .form-control {
    border-inline-start: none;
}

main:has(> .container > .bg-white > form) .input-group:focus-within .input-group-text {
    border-color: var(--color-primary, #7c3aed);
    background-color: #f2ebff;
}

main:has(> .container > .bg-white > form) .input-group:focus-within .form-control {
    border-color: var(--color-primary, #7c3aed);
}

main:has(> .container > .bg-white > form) .form-check-input:checked {
    background-color: var(--color-primary, #7c3aed);
    border-color: var(--color-primary, #7c3aed);
}

main:has(> .container > .bg-white > form) button[type="submit"] {
    transition: all 280ms cubic-bezier(.22, 1, .36, 1);
    font-weight: 600;
}

main:has(> .container > .bg-white > form) button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(92, 45, 145, 0.24);
}

/* ============================================
   8. Icons
   ============================================ */
.icon-img {
    max-width: 32px;
    max-height: 32px;
    object-fit: contain;
    filter: saturate(1.08) contrast(1.05);
}

.icon-emoji {
    display: inline-block;
    line-height: 1;
}

/* ============================================
   9. Hero Buttons (đã có ở theme.css nhưng bổ sung thêm)
   ============================================ */
.hero-buttons .btn {
    transition: all 280ms cubic-bezier(.22, 1, .36, 1);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(24, 18, 42, 0.16);
}

.hero-buttons .btn-warning {
    background-color: var(--color-accent, #f59e0b);
    border-color: var(--color-accent, #f59e0b);
    color: var(--color-primary-darker, #2b124c);
    font-weight: 600;
}

.hero-buttons .btn-warning:hover {
    background-color: var(--color-accent-dark, #d97706);
    border-color: var(--color-accent-dark, #d97706);
}

.hero-buttons .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.16);
    color: #fff;
}

/* ============================================
   10. 自定义滚动条
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-muted, #ece8ff);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8b5cf6 0%, #4f46e5 100%);
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.55);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #6d28d9 0%, #312e81 100%);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #8b5cf6 var(--color-bg-muted, #ece8ff);
}

/* ============================================
   11. Print Styles
   ============================================ */
@media print {
    :is(.header,
        .footer,
        .sidebar-widgets,
        .social-share,
        #back-to-top,
        .breadcrumb-nav,
        .notice-bar,
        .cta-banner-section,
        .post-nav,
        .related-posts,
        .author-box,
        .pagination,
        .navbar-toggler,
        .nav-item) {
        display: none !important;
    }

    body {
        background: #fff !important;
        color: #000 !important;
        font-size: 12pt;
    }

    .single-post {
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        max-width: 100% !important;
    }

    .post-content {
        font-size: 11pt;
        line-height: 1.6;
    }

    a {
        text-decoration: underline;
        color: #000 !important;
    }

    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 9pt;
        color: #555;
    }

    a[href^="#"]::after,
    a[href^="javascript:"]::after,
    a[href^="mailto:"]::after,
    a[href^="tel:"]::after {
        content: "";
    }

    .post-content img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    :is(h1, h2, h3, h4) {
        page-break-after: avoid;
        color: #000 !important;
    }

    p, li {
        orphans: 3;
        widows: 3;
    }
}

/* ============================================
   12. Animations bổ sung
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.72s cubic-bezier(.22, 1, .36, 1);
}

.animate-pulse {
    animation: pulse 2.2s infinite ease-in-out;
}

/* ============================================
   13. Responsive
   ============================================ */
@media (max-width: 991.98px) {
    .post-content {
        font-size: 1rem;
    }

    .post-content h2 {
        font-size: 1.5rem;
    }

    .post-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .single-post {
        padding: var(--space-md) !important;
    }

    .post-content {
        font-size: 0.95rem;
    }

    .post-content h2 {
        font-size: 1.35rem;
    }

    .post-nav {
        flex-direction: column;
    }

    .post-nav .btn {
        width: 100%;
    }

    .post-tags .badge {
        font-size: 0.8rem;
        padding: 4px 8px;
    }

    .app-hero-section h1 {
        font-size: 1.75rem;
    }

    .app-install-section .badge.rounded-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .toc-box {
        padding: var(--space-sm) !important;
    }

    .qr-card img {
        max-width: 140px !important;
    }
}

@media (max-width: 575.98px) {
    .app-hero-section .row .col-lg-7 {
        text-align: center;
        color: #1f2440;
        text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7), 0 10px 24px rgba(74, 88, 140, 0.18);
    }

    .app-hero-section .badge.bg-warning {
        font-size: 0.85rem;
        color: #14213d;
        background: linear-gradient(135deg, #ffd166 0%, #ff9f5a 52%, #ff6b6b 100%);
        border-color: #14213d;
        border-style: solid;
        border-radius: 999px;
        box-shadow: 0 8px 18px rgba(255, 107, 107, 0.22), 0 2px 6px rgba(20, 33, 61, 0.12);
        text-shadow: 0 1px 0 rgba(255, 245, 220, 0.55);
        outline-color: rgba(20, 33, 61, 0.28);
        outline-style: solid;
        filter: saturate(1.08) brightness(1.02);
        opacity: 0.98;
        transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease;
        caret-color: #14213d;
        accent-color: #ff9f5a;
    }

    .contact-channels-section article,
    .contact-quick-section .contact-card {
        padding: var(--space-md) !important;
        color: #24304a;
        background: linear-gradient(145deg, #f8fbff 0%, #eef4ff 48%, #fdf7ff 100%);
        border-color: rgba(90, 102, 166, 0.3);
        border-style: solid;
        border-radius: 24px;
        box-shadow: 0 18px 38px rgba(109, 129, 196, 0.16), 0 6px 16px rgba(71, 82, 122, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.85);
        text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
        outline-color: rgba(143, 87, 255, 0.18);
        outline-style: solid;
        backdrop-filter: blur(10px) saturate(1.05);
        filter: drop-shadow(0 10px 18px rgba(120, 139, 214, 0.12));
        opacity: 0.99;
        transition: background 0.5s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.5s cubic-bezier(0.2, 0.9, 0.2, 1), border-color 0.35s ease;
        caret-color: #7a4dff;
        accent-color: #4ecdc4;
    }
}