/* roulang page: index */
:root {
            --paper: #F4F5EF;
            --paper-deep: #E9EBE1;
            --ink: #11140F;
            --ink-soft: #1C201A;
            --line: rgba(17, 20, 15, 0.14);
            --line-light: rgba(244, 245, 239, 0.18);
            --volt: #DDF247;
            --volt-deep: #C4D62B;
            --signal: #FF6B4A;
            --text-body: #1F241C;
            --text-muted: #70786A;
            --card: #F8F7EE;
            --font-cn: system-ui, -apple-system, "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            --font-num: "Bahnschrift", "DIN Alternate", "Roboto Condensed", "Arial Narrow", sans-serif;
            --radius: 6px;
            --shadow-sm: 0 4px 14px rgba(17, 20, 15, 0.06);
            --shadow-hover: 0 18px 44px rgba(17, 20, 15, 0.14);
            --bs-gutter-x: 24px;
        }

        *, *::before, *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: var(--paper);
            color: var(--text-body);
            font-family: var(--font-cn);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        ul {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }

        h1, h2, h3, h4, h5, h6 {
            margin: 0;
            line-height: 1.18;
            font-weight: 800;
            letter-spacing: 0;
        }

        .container {
            max-width: 1320px;
        }

        :focus-visible {
            outline: 2px solid var(--volt);
            outline-offset: 3px;
            border-radius: 4px;
        }

        .btn {
            --bs-btn-padding-y: 0.75rem;
            --bs-btn-padding-x: 1.4rem;
            border-radius: 999px;
            font-weight: 700;
            letter-spacing: 0.02em;
            transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
        }

        .btn-volt {
            background: var(--volt);
            border: 1px solid var(--volt);
            color: var(--ink);
            box-shadow: 4px 4px 0 var(--ink);
            border-radius: 999px;
        }

        .btn-volt:hover, .btn-volt:focus {
            background: var(--volt-deep);
            border-color: var(--volt-deep);
            color: var(--ink);
            transform: translateY(-2px);
            box-shadow: 6px 6px 0 var(--ink);
        }

        .btn-line-light {
            background: transparent;
            border: 1px solid rgba(244, 245, 239, 0.5);
            color: var(--paper);
            border-radius: 999px;
        }

        .btn-line-light:hover, .btn-line-light:focus {
            border-color: var(--volt);
            color: var(--volt);
        }

        .btn-line-dark {
            background: transparent;
            border: 1px solid var(--ink);
            color: var(--ink);
            border-radius: 999px;
        }

        .btn-line-dark:hover, .btn-line-dark:focus {
            background: var(--ink);
            color: var(--paper);
        }

        .section-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.12em;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .section-head h2 {
            font-size: clamp(34px, 4.2vw, 48px);
            margin-bottom: 14px;
            letter-spacing: -0.02em;
        }

        .section-lead {
            max-width: 760px;
            color: var(--text-muted);
            font-size: 16px;
            line-height: 1.8;
        }

        /* ===== Header ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: rgba(17, 20, 15, 0.94);
            border-bottom: 1px solid var(--line-light);
            backdrop-filter: blur(12px);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 72px;
            gap: 18px;
        }

        .brand-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 900;
            font-size: 22px;
            color: var(--paper);
            white-space: nowrap;
        }

        .logo-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 9px;
            background: var(--volt);
            color: var(--ink);
            font-size: 13px;
            font-weight: 900;
            letter-spacing: -0.04em;
        }

        .brand-text {
            color: var(--paper);
            line-height: 1;
            font-weight: 900;
        }

        .main-nav {
            display: flex;
            gap: 30px;
            align-items: stretch;
        }

        .nav-link {
            position: relative;
            display: inline-flex;
            align-items: center;
            padding: 25px 2px 22px;
            color: rgba(244, 245, 239, 0.82);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.04em;
            transition: color .2s ease;
        }

        .nav-link:hover {
            color: var(--paper);
        }

        .nav-link.active {
            color: var(--paper);
        }

        .nav-link.active::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 4px;
            background: var(--volt);
            border-radius: 4px 4px 0 0;
        }

        .nav-link:not(.active)::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 4px;
            background: var(--volt);
            border-radius: 4px 4px 0 0;
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform .22s ease;
        }

        .nav-link:not(.active):hover::after {
            transform: scaleX(1);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .status-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 14px;
            border: 1px solid var(--line-light);
            border-radius: 999px;
            font-size: 13px;
            color: rgba(244, 245, 239, 0.9);
            background: rgba(244, 245, 239, 0.04);
        }

        .status-dot {
            width: 7px;
            height: 7px;
            background: var(--volt);
            border-radius: 50%;
            position: relative;
        }

        .status-dot::before {
            content: "";
            position: absolute;
            inset: -5px;
            border-radius: 50%;
            border: 1px solid var(--volt);
            animation: pulse-ring 1.6s ease-out infinite;
        }

        @keyframes pulse-ring {
            0% { transform: scale(0.5); opacity: 0.7; }
            70%, 100% { transform: scale(1.8); opacity: 0; }
        }

        .header-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 20px;
            background: var(--volt);
            border: 1px solid var(--volt);
            border-radius: 999px;
            color: var(--ink);
            font-size: 14px;
            font-weight: 800;
            transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
        }

        .header-btn:hover {
            background: var(--volt-deep);
            border-color: var(--volt-deep);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(221, 242, 71, 0.24);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: 1px solid rgba(244, 245, 239, 0.4);
            color: var(--paper);
            width: 42px;
            height: 42px;
            font-size: 26px;
            line-height: 1;
            border-radius: 6px;
            padding-bottom: 5px;
            align-items: center;
            justify-content: center;
        }

        .mobile-nav {
            background: var(--ink);
            color: var(--paper);
        }

        .mobile-nav .offcanvas-header {
            border-bottom: 1px solid var(--line-light);
            padding: 20px 24px;
        }

        .mobile-nav .btn-close {
            filter: invert(1) brightness(1.6);
            opacity: .8;
        }

        .mobile-nav-body {
            display: flex;
            flex-direction: column;
            padding: 40px 32px 36px;
        }

        .mobile-nav-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .mobile-nav-list a {
            display: block;
            color: var(--paper);
            font-size: 26px;
            font-weight: 800;
            border-bottom: 1px solid var(--line-light);
            padding: 8px 0 12px;
        }

        .mobile-nav-list a.active {
            color: var(--volt);
        }

        .mobile-nav-footer {
            margin-top: 48px;
        }

        @media (max-width: 1199.98px) {
            .main-nav {
                display: none;
            }
            .menu-toggle {
                display: inline-flex;
            }
        }

        @media (max-width: 575.98px) {
            .status-pill {
                display: none;
            }
            .header-btn {
                padding: 9px 14px;
                font-size: 13px;
            }
            .brand-logo {
                font-size: 18px;
            }
        }

        /* ===== Hero ===== */
        .hero-section {
            position: relative;
            background: var(--ink);
            color: var(--paper);
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center 30%;
            opacity: 0.44;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(17, 20, 15, 0.94) 0%, rgba(17, 20, 15, 0.66) 55%, rgba(17, 20, 15, 0.38) 100%);
        }

        .hero-main {
            position: relative;
            z-index: 2;
            min-height: calc(100vh - 72px);
            display: flex;
            align-items: center;
            padding-top: 96px;
            padding-bottom: 52px;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 700;
            color: var(--volt);
            letter-spacing: 0.06em;
            margin-bottom: 20px;
            background: rgba(221, 242, 71, 0.08);
            border: 1px solid rgba(221, 242, 71, 0.35);
            padding: 8px 16px;
            border-radius: 999px;
        }

        .hero-eyebrow::before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--volt);
            animation: pulse-ring 1.8s infinite;
        }

        .hero-title {
            font-size: clamp(44px, 6.6vw, 82px);
            line-height: 1.06;
            margin-bottom: 22px;
            color: var(--paper);
            font-weight: 900;
            letter-spacing: -0.03em;
        }

        .hero-title .accent {
            color: var(--volt);
        }

        .hero-sub {
            font-size: 18px;
            max-width: 620px;
            color: rgba(244, 245, 239, 0.82);
            line-height: 1.8;
            margin-bottom: 34px;
        }

        .hero-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 26px;
        }

        .btn-lg-hero {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 15px 30px;
        }

        .hero-art-wrap {
            max-width: 480px;
            margin-left: auto;
            position: relative;
        }

        .hero-art {
            position: relative;
            background: var(--ink-soft);
            border: 1px solid rgba(244, 245, 239, 0.2);
            clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
            overflow: hidden;
        }

        .hero-art img {
            width: 100%;
            min-height: 420px;
            object-fit: cover;
            display: block;
            filter: saturate(0.92);
        }

        .hero-art-badge {
            position: absolute;
            right: 22px;
            bottom: 22px;
            background: var(--volt);
            color: var(--ink);
            padding: 9px 15px;
            border-radius: 999px;
            font-weight: 800;
            font-size: 13px;
            letter-spacing: 0.04em;
        }

        .hero-facts {
            position: relative;
            z-index: 2;
            border-top: 1px solid var(--line-light);
            background: rgba(17, 20, 15, 0.56);
            backdrop-filter: blur(8px);
        }

        .fact-row {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
        }

        .fact-item {
            flex: 1 1 0;
            min-width: 180px;
            padding: 28px 22px 28px 0;
            margin-right: 22px;
            border-left: 1px solid var(--line-light);
            padding-left: 22px;
            color: rgba(244, 245, 239, 0.68);
        }

        .fact-item:first-child {
            border-left: none;
            padding-left: 0;
        }

        .fact-label {
            display: block;
            font-size: 13px;
            letter-spacing: 0.06em;
            margin-bottom: 6px;
        }

        .fact-value {
            color: var(--paper);
            font-weight: 800;
            font-size: 17px;
            font-family: var(--font-num);
        }

        @media (max-width: 991.98px) {
            .fact-row {
                display: grid;
                grid-template-columns: 1fr 1fr;
                margin: 0;
            }
            .fact-item {
                border-left: none;
                border-top: 1px solid var(--line-light);
                padding-left: 0;
                margin-right: 0;
            }
            .hero-main {
                padding-top: 56px;
            }
        }

        /* ===== Ticker ===== */
        .ticker-bar {
            background: var(--volt);
            color: var(--ink);
            overflow: hidden;
            border-top: 1px solid rgba(17, 20, 15, 0.18);
            border-bottom: 1px solid rgba(17, 20, 15, 0.18);
            padding: 14px 0;
        }

        .ticker-track {
            display: flex;
            width: max-content;
            animation: ticker-move 32s linear infinite;
            will-change: transform;
        }

        .ticker-group {
            display: flex;
            align-items: center;
            gap: 36px;
            padding-right: 36px;
            white-space: nowrap;
            font-weight: 900;
            font-size: 18px;
            letter-spacing: 0.04em;
        }

        .ticker-group span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .ticker-group span::after {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--ink);
            display: inline-block;
            margin-left: 28px;
        }

        @keyframes ticker-move {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* ===== Section base ===== */
        .section-spacing {
            padding-top: 96px;
            padding-bottom: 96px;
        }

        .section-ink {
            background: var(--ink);
            color: var(--paper);
        }

        .section-ink .section-kicker {
            color: var(--volt);
        }

        .section-ink .section-lead {
            color: rgba(244, 245, 239, 0.68);
        }

        .section-paper-deep {
            background: var(--paper-deep);
        }

        .section-paper {
            background: var(--paper);
        }

        /* ===== Timeline ===== */
        .timeline-wrap {
            position: relative;
            padding-top: 24px;
        }

        .timeline-wrap::before {
            content: "";
            position: absolute;
            left: 252px;
            top: 30px;
            bottom: 10px;
            width: 2px;
            background: rgba(244, 245, 239, 0.16);
        }

        .timeline-row {
            display: grid;
            grid-template-columns: 200px 52px 1fr;
            margin-bottom: 30px;
            align-items: flex-start;
        }

        .timeline-time {
            padding-top: 20px;
            text-align: right;
            color: rgba(244, 245, 239, 0.72);
        }

        .tl-main {
            display: block;
            font-size: 28px;
            font-weight: 800;
            color: var(--paper);
            font-family: var(--font-num);
            line-height: 1;
        }

        .tl-date {
            font-size: 13px;
            color: rgba(244, 245, 239, 0.5);
            margin-top: 6px;
            display: block;
            letter-spacing: 0.04em;
        }

        .timeline-dot-wrap {
            display: flex;
            justify-content: center;
            padding-top: 24px;
            position: relative;
            z-index: 1;
        }

        .timeline-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--volt);
            box-shadow: 0 0 0 6px rgba(221, 242, 71, 0.14);
        }

        .timeline-card {
            background: rgba(244, 245, 239, 0.03);
            border: 1px solid rgba(244, 245, 239, 0.12);
            border-left: 3px solid var(--volt);
            border-radius: var(--radius);
            padding: 26px 28px;
            transition: background .25s ease, transform .25s ease;
        }

        .timeline-card:hover {
            background: rgba(244, 245, 239, 0.07);
            transform: translateY(-3px);
        }

        .timeline-card .event-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            background: var(--volt);
            color: var(--ink);
            border-radius: 999px;
            padding: 5px 13px;
            margin-bottom: 12px;
        }

        .timeline-card .event-tag.signal {
            background: var(--signal);
            color: var(--ink);
        }

        .timeline-card h3 {
            font-size: 22px;
            color: var(--paper);
            margin-bottom: 8px;
        }

        .timeline-card p {
            color: rgba(244, 245, 239, 0.68);
            margin: 0;
            font-size: 15px;
            line-height: 1.8;
        }

        @media (max-width: 767.98px) {
            .timeline-wrap::before {
                display: none;
            }
            .timeline-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
            .timeline-time {
                text-align: left;
                padding-top: 0;
                margin-bottom: 8px;
                display: flex;
                align-items: baseline;
                gap: 12px;
            }
            .tl-date {
                margin-top: 0;
            }
            .timeline-dot-wrap {
                padding: 12px 0;
                justify-content: flex-start;
            }
            .timeline-dot-wrap::before {
                content: "";
                width: 100%;
                height: 2px;
                background: rgba(244, 245, 239, 0.16);
                align-self: center;
                margin-top: -6px;
                margin-left: 12px;
            }
            .timeline-dot {
                order: -1;
                flex-shrink: 0;
            }
        }

        /* ===== Guest scroll ===== */
        .guest-scroll {
            display: flex;
            gap: 22px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding: 8px 4px 30px 0;
            scrollbar-width: thin;
        }

        .guest-card {
            flex: 0 0 340px;
            scroll-snap-align: start;
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            overflow: hidden;
            padding: 14px;
            transition: box-shadow .25s ease, transform .25s ease;
        }

        .guest-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-5px);
        }

        .guest-photo {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            aspect-ratio: 4 / 4.5;
            background: var(--paper-deep);
        }

        .guest-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .4s ease;
        }

        .guest-card:hover .guest-photo img {
            transform: scale(1.04);
        }

        .guest-index {
            position: absolute;
            left: 14px;
            bottom: 14px;
            background: var(--ink);
            color: var(--paper);
            font: 800 14px var(--font-num);
            padding: 6px 12px;
            border-radius: 999px;
            letter-spacing: 0.02em;
        }

        .guest-info {
            padding: 18px 8px 8px;
            border-left: 3px solid transparent;
            transition: border-color .25s ease;
        }

        .guest-card:hover .guest-info {
            border-left-color: var(--volt);
        }

        .guest-info h3 {
            font-size: 20px;
            margin-bottom: 4px;
        }

        .guest-role {
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 8px;
        }

        .guest-label {
            font-size: 12px;
            display: inline-flex;
            padding: 4px 12px;
            border-radius: 999px;
            background: rgba(17, 20, 15, 0.05);
            color: var(--ink);
            font-weight: 600;
        }

        /* ===== Ticket rows ===== */
        .ticket-card {
            display: grid;
            grid-template-columns: 240px 1fr 170px;
            align-items: center;
            gap: 30px;
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            padding: 30px 32px;
            margin-bottom: 20px;
            transition: box-shadow .25s ease, transform .25s ease;
            position: relative;
        }

        .ticket-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }

        .ticket-card.featured {
            border: 2px solid var(--volt);
            background: #FBF9EE;
            padding: 38px 36px;
            margin: 28px 0;
            box-shadow: var(--shadow-sm);
        }

        .ticket-card.dark {
            background: var(--ink-soft);
            color: var(--paper);
            border-color: rgba(244, 245, 239, 0.12);
        }

        .ticket-badge {
            position: absolute;
            top: -14px;
            right: 28px;
            background: var(--signal);
            color: #fff;
            padding: 6px 14px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.05em;
        }

        .ticket-main .ticket-name {
            font-size: 18px;
            font-weight: 800;
            color: var(--text-muted);
            display: block;
            margin-bottom: 4px;
        }

        .ticket-main .ticket-name.light-label {
            color: rgba(244, 245, 239, 0.72);
        }

        .ticket-price {
            font-family: var(--font-num);
            font-size: 40px;
            font-weight: 900;
            color: var(--ink);
            line-height: 1;
            margin-bottom: 6px;
            letter-spacing: -0.02em;
        }

        .ticket-card.dark .ticket-price {
            color: var(--paper);
        }

        .ticket-price .cur {
            font-size: 22px;
            vertical-align: super;
            margin-right: 3px;
        }

        .ticket-note {
            font-size: 13px;
            color: var(--text-muted);
        }

        .ticket-card.dark .ticket-note {
            color: rgba(244, 245, 239, 0.58);
        }

        .ticket-benefits ul {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .ticket-benefits li {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-body);
            padding-left: 22px;
            position: relative;
        }

        .ticket-benefits li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--volt-deep);
        }

        .ticket-card.dark .ticket-benefits li {
            color: rgba(244, 245, 239, 0.82);
        }

        .ticket-action {
            text-align: center;
        }

        .ticket-action .btn {
            min-width: 132px;
        }

        @media (max-width: 991.98px) {
            .ticket-card, .ticket-card.featured {
                grid-template-columns: 1fr;
                gap: 18px;
                padding: 26px 24px;
                margin: 18px 0;
            }
            .ticket-action {
                text-align: left;
            }
            .ticket-action .btn {
                width: 100%;
            }
        }

        /* ===== Apply ===== */
        .apply-section {
            background: var(--ink);
            color: var(--paper);
        }

        .apply-info {
            margin: 26px 0;
            display: grid;
            gap: 16px;
        }

        .apply-info-item {
            display: flex;
            gap: 14px;
            align-items: center;
            color: rgba(244, 245, 239, 0.78);
            font-size: 15px;
        }

        .apply-info-item i {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--volt);
            flex-shrink: 0;
        }

        .countdown-title {
            font-size: 14px;
            color: rgba(244, 245, 239, 0.7);
            letter-spacing: 0.04em;
            margin-bottom: 12px;
        }

        .countdown-box {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .cd-item {
            background: rgba(244, 245, 239, 0.05);
            border: 1px solid var(--line-light);
            border-radius: var(--radius);
            padding: 14px 18px;
            text-align: center;
            min-width: 88px;
        }

        .cd-item strong {
            display: block;
            font-size: 30px;
            font-weight: 900;
            color: var(--paper);
            font-family: var(--font-num);
            line-height: 1;
        }

        .cd-item span {
            font-size: 13px;
            color: rgba(244, 245, 239, 0.55);
        }

        .apply-form-wrap {
            background: rgba(244, 245, 239, 0.04);
            border: 1px solid var(--line-light);
            border-radius: 10px;
            padding: 40px 40px 44px;
        }

        .apply-form label {
            display: block;
            font-size: 14px;
            margin: 18px 0 8px;
            color: rgba(244, 245, 239, 0.88);
            font-weight: 600;
        }

        .apply-form label:first-child {
            margin-top: 0;
        }

        .apply-form .form-control,
        .apply-form .form-select {
            background: transparent;
            border: 0;
            border-bottom: 1px solid rgba(244, 245, 239, 0.4);
            border-radius: 0;
            color: var(--paper);
            padding: 12px 0;
            font-size: 16px;
        }

        .apply-form .form-control:focus,
        .apply-form .form-select:focus {
            background: rgba(221, 242, 71, 0.04);
            border-bottom-color: var(--volt);
            box-shadow: 0 1px 0 0 var(--volt);
            color: var(--paper);
            border-radius: 0;
        }

        .apply-form .form-control::placeholder {
            color: rgba(244, 245, 239, 0.35);
        }

        .apply-form select.form-select option {
            color: var(--ink);
            background: var(--paper);
        }

        .apply-submit {
            margin-top: 30px;
            width: 100%;
            background: var(--volt);
            border: 1px solid var(--volt);
            color: var(--ink);
            border-radius: 999px;
            padding: 15px 28px;
            font-size: 17px;
            font-weight: 800;
            transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
            box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
        }

        .apply-submit:hover, .apply-submit:focus {
            background: var(--volt-deep);
            border-color: var(--volt-deep);
            transform: translateY(-2px);
        }

        .form-feedback {
            margin-top: 16px;
            padding: 12px 16px;
            border-radius: 6px;
            background: rgba(221, 242, 71, 0.12);
            border: 1px solid rgba(221, 242, 71, 0.3);
            color: var(--volt);
            font-size: 14px;
        }

        @media (max-width: 575.98px) {
            .apply-form-wrap {
                padding: 26px 20px 30px;
            }
        }

        /* ===== News ===== */
        .news-feed {
            margin-top: 28px;
        }

        .news-feed-item {
            display: grid;
            grid-template-columns: 130px 1fr 110px;
            gap: 26px;
            align-items: center;
            padding: 30px 0;
            border-bottom: 1px solid var(--line);
            transition: background .2s ease;
        }

        .news-feed-item:first-child {
            border-top: 1px solid var(--line);
        }

        .news-feed-item:hover {
            background: rgba(17, 20, 15, 0.02);
        }

        .news-date-col {
            font-family: var(--font-num);
            color: var(--text-muted);
            font-size: 14px;
            letter-spacing: 0.03em;
        }

        .news-date-col strong {
            display: block;
            color: var(--ink);
            font-size: 26px;
            font-weight: 900;
            line-height: 1.1;
        }

        .news-cat {
            display: inline-block;
            background: rgba(17, 20, 15, 0.06);
            padding: 5px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .news-feed-item h3 {
            font-size: 20px;
            margin-bottom: 8px;
        }

        .news-feed-item h3 a {
            color: var(--ink);
            transition: color .2s ease;
        }

        .news-feed-item h3 a:hover {
            color: #4a5a2b;
        }

        .news-summary {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.7;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-more-col {
            text-align: right;
        }

        .news-link-btn {
            font-weight: 800;
            font-size: 14px;
            color: var(--ink);
            border-bottom: 2px solid var(--volt);
            padding-bottom: 2px;
            transition: color .2s ease, border-color .2s ease;
            display: inline-block;
        }

        .news-link-btn:hover {
            color: #4a5a2b;
            border-color: var(--ink);
        }

        .news-empty {
            border: 1px dashed rgba(17, 20, 15, 0.3);
            border-radius: 10px;
            padding: 64px 24px;
            text-align: center;
            color: var(--text-muted);
            background: rgba(244, 245, 239, 0.4);
        }

        .news-empty span {
            display: block;
            font-size: 16px;
            margin-bottom: 6px;
            font-weight: 700;
        }

        .news-empty p {
            margin: 0;
            font-size: 14px;
        }

        @media (max-width: 767.98px) {
            .news-feed-item {
                grid-template-columns: 1fr;
                gap: 12px;
                padding: 24px 0;
            }
            .news-date-col {
                display: flex;
                align-items: baseline;
                gap: 10px;
            }
            .news-date-col strong {
                font-size: 18px;
            }
            .news-more-col {
                text-align: left;
            }
        }

        /* ===== FAQ ===== */
        .faq-section {
            background: var(--paper-deep);
        }

        .faq-wrap {
            max-width: 920px;
            margin: 0 auto;
        }

        .faq-accordion .accordion-item {
            background: transparent;
            border: none;
            border-bottom: 1px solid var(--line);
            border-radius: 0;
        }

        .faq-accordion .accordion-button {
            background: transparent;
            box-shadow: none;
            padding: 24px 0;
            font-size: 17px;
            font-weight: 700;
            color: var(--ink);
            border-radius: 0;
            gap: 16px;
            align-items: center;
        }

        .faq-accordion .accordion-button:not(.collapsed) {
            color: var(--ink);
            background: transparent;
        }

        .faq-accordion .accordion-button:not(.collapsed)::after {
            transform: rotate(45deg);
        }

        .faq-accordion .accordion-button::after {
            background-image: none;
            content: "+";
            width: 28px;
            height: 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            font-weight: 300;
            color: var(--ink);
            transform: none;
            margin-left: auto;
            transition: transform .25s ease;
            line-height: 1;
        }

        .faq-accordion .accordion-button:not(.collapsed)::after {
            background-image: none;
            content: "+";
            transform: rotate(45deg);
        }

        .faq-num {
            font-family: var(--font-num);
            font-weight: 800;
            color: var(--volt-deep);
            letter-spacing: 0;
            flex-shrink: 0;
        }

        .faq-accordion .accordion-body {
            padding: 0 0 28px 42px;
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.85;
            background: transparent;
        }

        @media (max-width: 575.98px) {
            .faq-accordion .accordion-body {
                padding-left: 10px;
            }
        }

        /* ===== Footer ===== */
        .site-footer {
            position: relative;
            background: var(--ink);
            color: var(--paper);
            overflow: hidden;
        }

        .site-footer::after {
            content: "mksports官方";
            position: absolute;
            right: -20px;
            bottom: -30px;
            font-size: clamp(90px, 16vw, 200px);
            font-weight: 900;
            line-height: 1;
            color: var(--paper);
            opacity: 0.045;
            pointer-events: none;
            letter-spacing: -0.05em;
        }

        .footer-main {
            position: relative;
            z-index: 1;
            padding-top: 70px;
            padding-bottom: 50px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 900;
            color: var(--paper);
            margin-bottom: 18px;
        }

        .footer-desc {
            color: rgba(244, 245, 239, 0.62);
            font-size: 14px;
            max-width: 320px;
            line-height: 1.8;
            margin-bottom: 18px;
        }

        .footer-address {
            font-size: 14px;
            color: rgba(244, 245, 239, 0.5);
            line-height: 1.8;
            font-style: normal;
        }

        .footer-title {
            font-size: 15px;
            font-weight: 800;
            color: var(--paper);
            margin-bottom: 18px;
        }

        .footer-link-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-link-list a {
            color: rgba(244, 245, 239, 0.68);
            font-size: 14px;
            transition: color .2s ease;
        }

        .footer-link-list a:hover {
            color: var(--volt);
        }

        .subscribe-form {
            display: flex;
            gap: 10px;
            border-bottom: 1px solid var(--line-light);
            padding-bottom: 14px;
        }

        .subscribe-form input {
            flex: 1;
            background: transparent;
            border: 0;
            outline: none;
            color: var(--paper);
            padding: 10px 0;
            font-size: 15px;
        }

        .subscribe-form input::placeholder {
            color: rgba(244, 245, 239, 0.34);
        }

        .subscribe-form button {
            background: var(--volt);
            border: 0;
            color: var(--ink);
            border-radius: 999px;
            padding: 9px 20px;
            font-weight: 700;
            font-size: 14px;
            transition: background .2s ease;
            white-space: nowrap;
        }

        .subscribe-form button:hover {
            background: var(--volt-deep);
        }

        .footer-bottom {
            position: relative;
            z-index: 1;
            border-top: 1px solid var(--line-light);
            padding: 20px 0;
        }

        .copyright-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 10px;
            font-size: 13px;
            color: rgba(244, 245, 239, 0.52);
        }

        .copyright-inner a {
            color: inherit;
        }

        .copyright-inner a:hover {
            color: var(--volt);
        }

        /* ===== Responsive tweaks ===== */
        @media (max-width: 991.98px) {
            .section-spacing {
                padding-top: 68px;
                padding-bottom: 68px;
            }
            .guest-scroll {
                display: flex;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
            .guest-card {
                flex-basis: 300px;
            }
            .ticket-card {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 575.98px) {
            .section-spacing {
                padding-top: 54px;
                padding-bottom: 54px;
            }
            .btn {
                --bs-btn-padding-x: 1.1rem;
            }
            .hero-main {
                min-height: auto;
                padding-bottom: 32px;
            }
            .hero-btns .btn {
                width: 100%;
                justify-content: center;
            }
            .guest-card {
                flex-basis: 82vw;
            }
            .cd-item {
                min-width: 74px;
                padding: 10px 12px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.001ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.001ms !important;
                scroll-behavior: auto !important;
            }
        }

        .offcanvas.mobile-nav {
            --bs-offcanvas-bg: var(--ink);
            max-width: 100%;
        }

        .offcanvas.mobile-nav .offcanvas-body {
            padding: 24px;
        }

/* roulang page: article */
:root {
    --paper: #F4F5EF;
    --paper-deep: #E9EBE1;
    --ink: #11140F;
    --ink-soft: #1C201A;
    --line: rgba(17,20,15,.14);
    --line-light: rgba(244,245,239,.18);
    --volt: #DDF247;
    --volt-deep: #C4D62B;
    --signal: #FF6B4A;
    --text-body: #1F241C;
    --text-muted: #70786A;
    --radius: 6px;
    --radius-full: 999px;
    --shadow-card: 0 4px 16px rgba(17,20,15,.06);
    --shadow-card-hover: 0 14px 28px rgba(17,20,15,.1);
    --font-cn: system-ui, -apple-system, "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
    --font-num: "Bahnschrift", "DIN Alternate", "Roboto Condensed", "Arial Narrow", sans-serif;
    --bs-body-font-family: var(--font-cn);
    --bs-body-bg: var(--paper);
    --bs-gutter-x: 24px;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-cn);
    background: var(--paper);
    color: var(--text-body);
    line-height: 1.75;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}
img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}
a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease, opacity .2s ease;
}
a:hover {
    color: var(--ink);
}
button,
input,
select {
    font-family: inherit;
    font-size: inherit;
}
:focus-visible {
    outline: 2px solid var(--volt);
    outline-offset: 3px;
}
.container {
    max-width: 1320px;
}
.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--volt);
    color: var(--ink);
    font-weight: 800;
    border: 1px solid var(--volt);
    border-radius: var(--radius-full);
    padding: 10px 22px;
    font-size: 15px;
    line-height: 1.4;
    box-shadow: 3px 3px 0 rgba(17,20,15,.18);
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.btn-main:hover,
.btn-main:focus-visible {
    background: var(--volt-deep);
    border-color: var(--volt-deep);
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 5px 5px 0 rgba(17,20,15,.18);
}
.btn-main:active {
    transform: translateY(0);
    box-shadow: 1px 1px 0 rgba(17,20,15,.24);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--ink);
    font-weight: 700;
    border: 1px solid var(--line);
    border-radius: var(--radius-full);
    padding: 10px 20px;
    font-size: 15px;
}
.btn-outline:hover,
.btn-outline:focus-visible {
    border-color: var(--ink);
    color: var(--ink);
    background: rgba(17,20,15,.03);
}
.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--paper);
    border: 1px solid var(--line-light);
    border-radius: var(--radius-full);
    padding: 10px 20px;
    font-weight: 700;
}
.btn-outline-light:hover {
    border-color: var(--paper);
    color: var(--paper);
}
.btn-lg-cta {
    padding: 16px 34px;
    font-size: 16px;
}
.btn-block {
    width: 100%;
}
.text-muted-sm {
    color: var(--text-muted);
    font-size: 13px;
}
section {
    scroll-margin-top: 80px;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: rgba(17,20,15,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line-light);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 16px;
}
.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}
.logo-badge {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    background: var(--volt);
    color: var(--ink);
    font-family: var(--font-num);
    font-weight: 900;
    font-size: 16px;
    letter-spacing: .02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.brand-name {
    color: var(--paper);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: .02em;
    line-height: 1.1;
    white-space: nowrap;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    color: rgba(244,245,239,.68);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: color .2s ease, background-color .2s ease;
}
.nav-link:hover {
    color: var(--paper);
    background: rgba(244,245,239,.06);
}
.nav-link.active {
    color: var(--paper);
}
.nav-link.active::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 2px;
    height: 3px;
    border-radius: var(--radius-full);
    background: var(--volt);
}
.header-side {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line-light);
    color: var(--paper);
    padding: 7px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    line-height: 1;
    background: rgba(244,245,239,.04);
    white-space: nowrap;
}
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--volt);
    box-shadow: 0 0 0 0 rgba(221,242,71,.55);
    animation: statusPulse 1.8s infinite;
}
@keyframes statusPulse {
    0% { box-shadow: 0 0 0 0 rgba(221,242,71,.5); }
    70% { box-shadow: 0 0 0 8px rgba(221,242,71,0); }
    100% { box-shadow: 0 0 0 0 rgba(221,242,71,0); }
}
.header-cta {
    padding: 9px 20px;
    font-size: 14px;
}
.btn-mobile-cta {
    display: none;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line-light);
    border-radius: var(--radius);
    background: rgba(244,245,239,.05);
    cursor: pointer;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--paper);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}
.site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}
.site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* article hero */
.article-hero-area {
    position: relative;
    background:
        linear-gradient(90deg, rgba(244,245,239,.96) 0%, rgba(244,245,239,.86) 48%, rgba(244,245,239,.72) 100%),
        url('/assets/images/coverpic/cover-1.png') center / cover no-repeat;
    border-bottom: 1px solid var(--line);
    padding: 56px 0 46px;
    overflow: hidden;
}
.article-hero-area::after {
    content: "MKSPORTS";
    position: absolute;
    right: -10px;
    top: 20px;
    font-family: var(--font-num);
    font-weight: 900;
    font-size: clamp(70px, 12vw, 170px);
    line-height: 1;
    color: rgba(17,20,15,.035);
    pointer-events: none;
    letter-spacing: .06em;
    white-space: nowrap;
    z-index: 0;
}
.article-hero-inner {
    position: relative;
    z-index: 1;
}
.breadcrumb-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.breadcrumb-line a {
    color: var(--text-muted);
}
.breadcrumb-line a:hover {
    color: var(--ink);
}
.breadcrumb-sep {
    opacity: .55;
}
.breadcrumb-cat {
    color: var(--ink);
    font-weight: 600;
}
.article-hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -.01em;
    max-width: 980px;
    margin: 0 0 20px;
}
.article-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 28px;
    color: var(--text-muted);
    font-size: 15px;
}
.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.meta-item strong {
    color: var(--ink);
    font-weight: 700;
}
.meta-num {
    font-family: var(--font-num);
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    color: var(--ink);
}
.article-divider-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(17,20,15,.3);
    display: inline-block;
}

/* article body */
.article-main-block {
    padding: 64px 0 96px;
}
.article-inner-pane {
    max-width: 860px;
}
.article-content {
    font-size: 17px;
    line-height: 2;
    color: var(--text-body);
    word-break: break-word;
}
.article-content > * + * {
    margin-top: 1.4em;
}
.article-content p {
    margin: 0 0 1.6em;
    line-height: 1.95;
}
.article-content h2 {
    font-size: 28px;
    line-height: 1.35;
    font-weight: 800;
    color: var(--ink);
    padding-left: 16px;
    border-left: 4px solid var(--volt-deep);
    margin: 44px 0 18px;
}
.article-content h3 {
    font-size: 22px;
    line-height: 1.45;
    font-weight: 700;
    color: var(--ink);
    margin: 32px 0 12px;
    letter-spacing: .01em;
}
.article-content h4 {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    margin: 26px 0 10px;
}
.article-content a {
    color: var(--ink);
    border-bottom: 2px solid var(--volt);
    padding-bottom: 1px;
}
.article-content a:hover {
    border-color: var(--volt-deep);
}
.article-content ul,
.article-content ol {
    margin: 0 0 1.6em;
    padding-left: 1.4em;
}
.article-content li {
    margin-bottom: .55em;
}
.article-content blockquote {
    background: var(--paper-deep);
    border-left: 4px solid var(--ink);
    padding: 24px 20px 24px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 1.8em 0;
}
.article-content blockquote p:last-child {
    margin-bottom: 0;
}
.article-content img {
    border-radius: var(--radius);
    display: block;
    margin: 30px auto;
    box-shadow: var(--shadow-card);
}
.article-content figcaption,
.article-content .wp-caption-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    margin-top: -20px;
    margin-bottom: 28px;
}
.article-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 1.8em 0;
}
.article-content table th,
.article-content table td {
    border: 1px solid var(--line);
    padding: 12px 14px;
}
.article-content table th {
    background: var(--paper-deep);
    font-weight: 700;
}
.article-content code {
    background: var(--paper-deep);
    padding: 3px 7px;
    border-radius: 4px;
    font-size: .9em;
}
.article-content pre {
    background: var(--ink);
    color: var(--paper);
    padding: 24px;
    border-radius: var(--radius);
    overflow-x: auto;
    margin: 1.8em 0;
}
.article-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}
.article-content .aligncenter {
    text-align: center;
}

/* article not found */
.missing-box {
    max-width: 860px;
    margin: 0 auto;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    text-align: center;
    padding: 72px 28px;
    box-shadow: var(--shadow-card);
}
.missing-mark {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border-radius: 50%;
    border: 2px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-num);
    font-weight: 900;
    font-size: 28px;
    color: var(--ink);
    background: transparent;
}
.missing-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
}
.missing-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.9;
    max-width: 580px;
    margin: 0 auto 28px;
}

/* article bottom */
.article-bottom-nav {
    padding-top: 20px;
    margin-top: 44px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.article-tag-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.article-tag-label {
    font-size: 14px;
    color: var(--text-muted);
}
.article-tag {
    display: inline-flex;
    align-items: center;
    background: var(--paper-deep);
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
}
.article-tag:hover {
    border-color: var(--ink);
    background: var(--paper);
}
.article-page-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* footer */
.site-footer {
    background: var(--ink);
    color: var(--paper);
    position: relative;
    overflow: hidden;
}
.site-footer::after {
    content: "mksports官方";
    position: absolute;
    right: -40px;
    bottom: -30px;
    font-size: clamp(80px, 14vw, 200px);
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    color: rgba(244,245,239,.035);
    letter-spacing: .05em;
}
.footer-main {
    padding: 68px 0 44px;
    position: relative;
    z-index: 1;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 900;
    color: var(--paper);
    margin-bottom: 18px;
    letter-spacing: .02em;
}
.footer-brand .logo-badge {
    width: 48px;
    height: 48px;
    font-size: 18px;
}
.footer-desc {
    color: rgba(244,245,239,.62);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 24px;
    max-width: 520px;
}
.footer-address {
    font-style: normal;
    color: rgba(244,245,239,.48);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 0;
}
.footer-title {
    color: var(--paper);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: .04em;
}
.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.footer-link-list a {
    color: rgba(244,245,239,.6);
    font-size: 14px;
    display: inline-flex;
    gap: 6px;
}
.footer-link-list a::before {
    content: "—";
    color: var(--volt);
    opacity: .75;
}
.footer-link-list a:hover {
    color: var(--volt);
}
.subscribe-form {
    display: flex;
    background: rgba(244,245,239,.07);
    border: 1px solid var(--line-light);
    border-radius: var(--radius-full);
    padding: 4px;
}
.subscribe-form input {
    flex: 1 1 auto;
    min-width: 0;
    background: transparent;
    border: none;
    color: var(--paper);
    font-size: 14px;
    padding: 8px 15px;
    outline: none;
}
.subscribe-form input::placeholder {
    color: rgba(244,245,239,.4);
}
.subscribe-form button {
    background: var(--volt);
    border: none;
    color: var(--ink);
    font-weight: 700;
    padding: 9px 18px;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
    transition: background-color .2s ease;
}
.subscribe-form button:hover {
    background: var(--volt-deep);
}
.footer-bottom {
    border-top: 1px solid var(--line-light);
    padding: 22px 0;
    position: relative;
    z-index: 1;
}
.copyright-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px 24px;
    color: rgba(244,245,239,.44);
    font-size: 13px;
}
.copyright-inner a {
    color: rgba(244,245,239,.6);
}
.copyright-inner a:hover {
    color: var(--paper);
}

/* responsive */
@media (max-width:1199.98px) {
    .main-nav {
        gap: 2px;
    }
    .nav-link {
        padding-left: 10px;
        padding-right: 10px;
    }
    .status-pill {
        display: none;
    }
}
@media (max-width:991.98px) {
    .nav-toggle {
        display: inline-flex;
    }
    .main-nav {
        position: fixed;
        inset: 0;
        z-index: 1030;
        background: var(--ink);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 8px;
        padding: 90px 28px 40px;
        transform: translateX(100%);
        transition: transform .32s ease;
        visibility: hidden;
        overflow-y: auto;
    }
    .site-header.nav-open .main-nav {
        transform: translateX(0);
        visibility: visible;
    }
    .main-nav .nav-link {
        width: 100%;
        font-size: 26px;
        font-weight: 800;
        color: var(--paper);
        padding: 14px 6px;
        border-bottom: 1px solid var(--line-light);
        border-radius: 0;
    }
    .main-nav .nav-link.active::after {
        left: 6px;
        right: auto;
        width: 28px;
        bottom: 8px;
    }
    .btn-mobile-cta {
        display: flex;
        width: 100%;
        margin-top: 30px;
        padding: 15px 18px;
    }
    .header-cta-desktop {
        display: none;
    }
    .article-hero-area {
        padding-top: 40px;
    }
}
@media (max-width:767.98px) {
    .header-inner {
        min-height: 64px;
    }
    .brand-name {
        font-size: 18px;
    }
    .logo-badge {
        width: 38px;
        height: 38px;
    }
    .article-main-block {
        padding: 48px 0 64px;
    }
    .article-content {
        font-size: 16px;
    }
    .article-hero-area {
        padding: 30px 0 34px;
    }
    .article-hero h1 {
        font-size: 32px;
        line-height: 1.14;
    }
    .article-meta-row {
        gap: 10px 16px;
        font-size: 13px;
    }
    .footer-main {
        padding-top: 50px;
    }
}
@media (max-width:520px) {
    .header-side .status-pill {
        display: none;
    }
    .header-inner {
        gap: 8px;
    }
    .brand-name {
        font-size: 17px;
    }
    .btn-main {
        padding: 9px 16px;
        font-size: 14px;
    }
    .breadcrumb-line {
        font-size: 13px;
    }
    .missing-box {
        padding: 50px 20px;
    }
    .article-page-actions,
    .article-bottom-nav {
        align-items: stretch;
    }
    .article-page-actions .btn-main,
    .article-page-actions .btn-outline {
        width: 100%;
    }
    .article-tag-list {
        width: 100%;
    }
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* roulang page: category1 */
:root {
            --paper: #F4F5EF;
            --paper-deep: #E9EBE1;
            --ink: #11140F;
            --ink-soft: #1C201A;
            --line: rgba(17, 20, 15, .14);
            --line-light: rgba(244, 245, 239, .18);
            --volt: #DDF247;
            --volt-deep: #C4D62B;
            --signal: #FF6B4A;
            --text-body: #1F241C;
            --text-muted: #70786A;
            --radius-sm: 4px;
            --radius-md: 6px;
            --radius-lg: 14px;
            --radius-pill: 999px;
            --shadow-card: 0 10px 32px rgba(17, 20, 15, .06);
            --shadow-card-lg: 0 20px 44px rgba(17, 20, 15, .1);
            --font-sans: system-ui, -apple-system, "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            --font-num: "Bahnschrift", "DIN Alternate", "Roboto Condensed", "Arial Narrow", sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: var(--font-sans);
            background: var(--paper);
            color: var(--text-body);
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button,
        input,
        select {
            font-family: inherit;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        textarea:focus-visible {
            outline: 2px solid var(--volt);
            outline-offset: 3px;
            border-radius: var(--radius-sm);
        }

        .container {
            max-width: 1320px;
        }

        .btn {
            border-radius: var(--radius-pill);
            border: 0;
            font-weight: 700;
            transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
            letter-spacing: .02em;
        }

        .btn:hover {
            transform: translateY(-2px);
        }

        .btn.btn-volt {
            background: var(--volt) !important;
            color: var(--ink) !important;
            box-shadow: 4px 4px 0 var(--ink);
            border-radius: var(--radius-pill);
            min-height: 44px;
            padding: .72rem 1.4rem;
            line-height: 1.2;
            font-size: 15px;
        }

        .btn.btn-volt:hover {
            background: var(--volt-deep) !important;
            transform: translateY(-3px);
            box-shadow: 6px 6px 0 var(--ink);
        }

        .btn.btn-volt:disabled {
            opacity: .55;
            transform: none;
            box-shadow: none;
        }

        .btn-outline-dark {
            background: transparent;
            color: var(--ink);
            border: 1px solid var(--ink);
            border-radius: var(--radius-pill);
            min-height: 44px;
            padding: .68rem 1.3rem;
        }

        .btn-outline-dark:hover {
            background: var(--ink);
            color: var(--paper);
            border-color: var(--ink);
            transform: translateY(-2px);
        }

        .btn-outline-light {
            background: transparent;
            color: var(--paper);
            border: 1px solid rgba(244, 245, 239, .42);
            border-radius: var(--radius-pill);
            min-height: 44px;
            padding: .68rem 1.3rem;
        }

        .btn-outline-light:hover {
            background: var(--paper);
            color: var(--ink);
            transform: translateY(-2px);
        }

        /* header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1100;
            background: rgba(17, 20, 15, .92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(244, 245, 239, .12);
            min-height: 72px;
            display: flex;
            align-items: center;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            width: 100%;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: var(--volt);
            color: var(--ink);
            font-weight: 900;
            font-size: 14px;
            letter-spacing: .04em;
            flex: none;
        }

        .brand-text {
            color: #F4F5EF;
            font-weight: 800;
            font-size: 19px;
            line-height: 1.2;
            letter-spacing: .01em;
            white-space: nowrap;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 30px;
            margin: 0 auto;
        }

        .main-nav .nav-link {
            position: relative;
            color: rgba(244, 245, 239, .72);
            font-size: 15px;
            font-weight: 600;
            padding: 26px 0 24px;
            letter-spacing: .02em;
            white-space: nowrap;
            transition: color .2s ease;
        }

        .main-nav .nav-link:hover {
            color: var(--volt);
        }

        .main-nav .nav-link.active {
            color: var(--volt);
        }

        .main-nav .nav-link.active::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 14px;
            height: 4px;
            border-radius: var(--radius-pill);
            background: var(--volt);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .status-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: rgba(244, 245, 239, .82);
            font-size: 13px;
            font-weight: 600;
            border: 1px solid rgba(244, 245, 239, .18);
            padding: 7px 14px;
            border-radius: var(--radius-pill);
            white-space: nowrap;
        }

        .status-chip .pulse-dot {
            width: 8px;
            height: 8px;
            background: var(--volt);
            border-radius: 50%;
            position: relative;
        }

        .status-chip .pulse-dot::after {
            content: "";
            position: absolute;
            left: -4px;
            right: -4px;
            top: -4px;
            bottom: -4px;
            border: 2px solid var(--volt);
            border-radius: 50%;
            opacity: .7;
            animation: pulse 1.8s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(.6);
                opacity: .9;
            }
            70% {
                transform: scale(1.4);
                opacity: 0;
            }
            100% {
                opacity: 0;
            }
        }

        .nav-toggle {
            display: none;
            border: 0;
            background: transparent;
            width: 42px;
            height: 42px;
            z-index: 1202;
            position: relative;
            align-items: center;
            justify-content: center;
        }

        .nav-toggle .bar {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--paper);
            margin: 5px auto;
            transition: transform .25s ease, opacity .25s ease;
        }

        .site-header.menu-open .nav-toggle .bar:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .site-header.menu-open .nav-toggle .bar:nth-child(2) {
            opacity: 0;
        }

        .site-header.menu-open .nav-toggle .bar:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-menu {
            position: fixed;
            inset: 0;
            background: var(--ink);
            padding: 110px 32px 34px;
            transform: translateX(100%);
            transition: transform .3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            visibility: hidden;
            z-index: 1200;
        }

        .site-header.menu-open .mobile-menu {
            transform: translateX(0);
            visibility: visible;
        }

        .mobile-nav {
            display: grid;
            gap: 4px;
        }

        .mobile-nav a {
            font-size: 26px;
            font-weight: 800;
            color: rgba(244, 245, 239, .78);
            padding: 8px 0;
            border-bottom: 1px solid rgba(244, 245, 239, .1);
            letter-spacing: .02em;
            transition: color .2s ease, padding .2s ease;
        }

        .mobile-nav a.active {
            color: var(--volt);
            padding-left: 8px;
        }

        .mobile-cta {
            display: grid;
            gap: 12px;
            margin-top: 28px;
        }

        .mobile-cta .btn {
            width: 100%;
            min-height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* main common */
        .page-main {
            overflow: hidden;
        }

        .section-pad {
            padding-top: 92px;
            padding-bottom: 92px;
        }

        .section-pad-sm {
            padding-top: 70px;
            padding-bottom: 70px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 800;
            color: var(--text-muted);
            letter-spacing: .08em;
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        .section-label::before {
            content: "";
            width: 26px;
            height: 3px;
            background: var(--volt-deep);
            border-radius: 999px;
        }

        .section-title {
            font-size: clamp(32px, 4vw, 44px);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.01em;
            margin: 0 0 16px;
            color: var(--ink);
        }

        .section-sub {
            max-width: 760px;
            color: var(--text-muted);
            font-size: 16px;
        }

        /* category hero */
        .cat-hero {
            background: linear-gradient(105deg, var(--paper-deep) 30%, transparent 75%);
            border-bottom: 1px solid var(--line);
            padding-top: 68px;
            padding-bottom: 72px;
            position: relative;
        }

        .cat-hero::before {
            content: "NOTICE";
            position: absolute;
            right: 2%;
            top: 10%;
            font-family: var(--font-num);
            font-size: clamp(120px, 19vw, 300px);
            font-weight: 900;
            color: rgba(17, 20, 15, .045);
            line-height: 1;
            pointer-events: none;
            letter-spacing: .02em;
            white-space: nowrap;
        }

        .cat-hero .row {
            position: relative;
            z-index: 2;
        }

        .breadcrumb-cat {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 24px;
        }

        .breadcrumb-cat a {
            color: var(--text-muted);
            transition: color .2s;
        }

        .breadcrumb-cat a:hover {
            color: var(--ink);
        }

        .breadcrumb-cat .sep {
            opacity: .4;
        }

        .cat-hero h1 {
            font-size: clamp(42px, 6vw, 76px);
            font-weight: 900;
            line-height: 1.04;
            color: var(--ink);
            letter-spacing: -0.02em;
            display: flex;
            align-items: baseline;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 20px;
        }

        .cat-hero h1 .hero-accent {
            color: var(--ink);
            padding: 2px 16px 2px 0;
            position: relative;
            display: inline-block;
        }

        .cat-hero h1 .hero-accent::after {
            content: "";
            position: absolute;
            left: 0;
            right: -6px;
            bottom: 4px;
            height: 12px;
            background: var(--volt);
            z-index: -1;
        }

        .cat-hero .hero-desc {
            font-size: 17px;
            line-height: 2;
            max-width: 690px;
            color: #3A4134;
            margin-bottom: 26px;
        }

        .hero-desc strong {
            color: var(--ink);
            font-weight: 800;
        }

        .hero-meta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 24px 42px;
            margin-top: 28px;
            padding-top: 28px;
            border-top: 1px solid var(--line);
        }

        .hero-meta-item {
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .hero-meta-item .meta-icon {
            width: 28px;
            height: 28px;
            border-radius: 999px;
            background: rgba(17, 20, 15, .08);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            margin-top: 4px;
        }

        .hero-meta-item dt {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 600;
            letter-spacing: .05em;
            text-transform: uppercase;
        }

        .hero-meta-item dd {
            margin: 0;
            color: var(--ink);
            font-weight: 700;
            font-size: 15px;
        }

        .cat-hero-art {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(17, 20, 15, .14);
            background: var(--ink-soft);
            aspect-ratio: 4 / 4.1;
            max-height: 530px;
        }

        .cat-hero-art>img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: saturate(.82) contrast(.98);
            transition: transform .8s ease;
        }

        .cat-hero-art:hover>img {
            transform: scale(1.03);
        }

        .cat-hero-art::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(17, 20, 15, .72), transparent 58%);
        }

        .hero-art-tag {
            position: absolute;
            left: 18px;
            right: 18px;
            bottom: 18px;
            z-index: 2;
            color: var(--paper);
            font-weight: 700;
            font-size: 16px;
            line-height: 1.5;
            padding-left: 12px;
            border-left: 4px solid var(--volt);
        }

        .hero-art-tag small {
            display: block;
            color: rgba(244, 245, 239, .7);
            font-size: 13px;
            font-weight: 500;
            margin-top: 4px;
        }

        /* pinned */
        .pinned-outer {
            margin-top: -28px;
            z-index: 5;
            position: relative;
        }

        .pinned-card {
            background: var(--ink);
            border: 1px solid var(--line-light);
            box-shadow: 0 16px 40px rgba(17, 20, 15, .14);
            border-radius: var(--radius-lg);
            color: var(--paper);
            padding: 32px 36px;
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 28px;
            align-items: center;
        }

        .pin-flag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--signal);
            color: var(--ink);
            font-weight: 800;
            font-size: 14px;
            border-radius: var(--radius-pill);
            padding: 7px 15px;
            letter-spacing: .05em;
            white-space: nowrap;
        }

        .pin-flag::before {
            content: "";
            width: 7px;
            height: 7px;
            background: var(--ink);
            border-radius: 50%;
        }

        .pinned-card .pin-date {
            font-family: var(--font-num);
            color: rgba(244, 245, 239, .5);
            font-size: 14px;
            letter-spacing: .05em;
            display: block;
            margin-top: 4px;
        }

        .pinned-card h2 {
            font-size: 22px;
            font-weight: 800;
            color: var(--paper);
            margin: 0 0 8px;
            line-height: 1.45;
        }

        .pinned-card p {
            color: rgba(244, 245, 239, .62);
            font-size: 15px;
            line-height: 1.75;
            margin: 0;
        }

        .pin-more {
            border: 1px solid rgba(244, 245, 239, .24);
            background: transparent;
            color: var(--paper);
            border-radius: var(--radius-pill);
            padding: 11px 24px;
            font-size: 14px;
            font-weight: 700;
            white-space: nowrap;
            transition: border-color .2s, background .2s, color .2s;
        }

        .pin-more:hover {
            background: var(--volt);
            border-color: var(--volt);
            color: var(--ink);
        }

        /* notice board */
        .notice-board {
            padding-top: 90px;
            padding-bottom: 78px;
            background: var(--paper);
        }

        .notice-board-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 34px;
        }

        .notice-list {
            border-top: 1px solid var(--line);
        }

        .notice-item {
            display: grid;
            grid-template-columns: 158px 96px 1fr auto;
            gap: 28px;
            align-items: center;
            padding: 28px 8px;
            border-bottom: 1px solid var(--line);
            transition: background .2s ease, padding-left .2s ease;
        }

        .notice-item:hover {
            background: rgba(233, 235, 225, .6);
            padding-left: 18px;
        }

        .notice-date {
            display: flex;
            align-items: baseline;
            gap: 8px;
            font-family: var(--font-num);
            color: var(--ink);
        }

        .notice-date .day {
            font-size: 32px;
            font-weight: 800;
            line-height: 1;
        }

        .notice-date .month {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 600;
            letter-spacing: .05em;
        }

        .notice-no {
            font-family: var(--font-num);
            font-size: 12px;
            color: var(--text-muted);
            letter-spacing: .04em;
            border: 1px solid var(--line);
            padding: 5px 10px;
            border-radius: var(--radius-pill);
            white-space: nowrap;
            text-align: center;
            line-height: 1.4;
        }

        .notice-copy h3 {
            font-size: 18px;
            font-weight: 800;
            color: var(--ink);
            margin: 0 0 8px;
            line-height: 1.5;
        }

        .notice-copy .meta-line {
            font-size: 13px;
            color: var(--text-muted);
        }

        .notice-topics {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 12px;
        }

        .mini-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--paper-deep);
            color: #3A4134;
            font-size: 12px;
            border-radius: var(--radius-pill);
            padding: 4px 11px;
            font-weight: 600;
        }

        .notice-arrow {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--line);
            background: transparent;
            color: var(--ink);
            border-radius: var(--radius-pill);
            transition: all .2s ease;
        }

        .notice-item:hover .notice-arrow {
            background: var(--volt);
            border-color: var(--volt);
            transform: translateX(4px);
            box-shadow: 4px 4px 0 var(--ink);
        }

        /* coverage */
        .coverage {
            background: var(--paper-deep);
            padding: 92px 0;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }

        .coverage-card {
            height: 100%;
            background: var(--paper);
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            padding: 30px 28px;
            position: relative;
            transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
        }

        .coverage-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-card-lg);
            border-color: rgba(17, 20, 15, .06);
        }

        .coverage-num {
            font-family: var(--font-num);
            font-size: 44px;
            font-weight: 800;
            line-height: 1;
            color: transparent;
            -webkit-text-stroke: 1.4px rgba(17, 20, 15, .22);
            display: block;
            margin-bottom: 22px;
        }

        .coverage-card h3 {
            font-size: 20px;
            font-weight: 800;
            color: var(--ink);
            margin: 0 0 12px;
        }

        .coverage-card p {
            color: var(--text-muted);
            font-size: 14.5px;
            line-height: 1.85;
            margin: 0;
        }

        .coverage-card .coverage-mark {
            position: absolute;
            right: 18px;
            top: 18px;
            width: 10px;
            height: 10px;
            background: var(--volt-deep);
            border-radius: 50%;
        }

        /* workflow */
        .workflow {
            background: var(--ink);
            color: var(--paper);
            padding: 100px 0;
            position: relative;
        }

        .workflow::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center;
            opacity: .1;
        }

        .workflow .section-title {
            color: var(--paper);
        }

        .workflow .section-sub {
            color: rgba(244, 245, 239, .64);
        }

        .workflow .section-label {
            color: rgba(244, 245, 239, .55);
        }

        .workflow-list {
            margin-top: 48px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            position: relative;
        }

        .workflow-step {
            border: 1px solid var(--line-light);
            background: rgba(17, 20, 15, .66);
            border-radius: var(--radius-md);
            padding: 34px 30px;
            min-height: 220px;
            position: relative;
            transition: border-color .2s, background .2s, transform .2s;
        }

        .workflow-step:hover {
            border-color: var(--volt);
            transform: translateY(-4px);
        }

        .step-index {
            font-family: var(--font-num);
            font-size: 15px;
            font-weight: 800;
            color: var(--volt);
            letter-spacing: .12em;
            display: block;
            margin-bottom: 20px;
        }

        .workflow-step h3 {
            font-size: 20px;
            color: var(--paper);
            font-weight: 800;
            margin-bottom: 12px;
        }

        .workflow-step p {
            color: rgba(244, 245, 239, .62);
            font-size: 14px;
            line-height: 1.9;
            margin: 0;
        }

        .workflow-note {
            margin-top: 32px;
            background: var(--volt);
            color: var(--ink);
            border-radius: var(--radius-md);
            padding: 22px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            position: relative;
        }

        .workflow-note p {
            font-weight: 700;
            margin: 0;
            font-size: 15px;
            line-height: 1.7;
        }

        .workflow-note a {
            color: var(--ink);
            text-decoration: underline;
            text-underline-offset: 4px;
            font-weight: 800;
            white-space: nowrap;
        }

        .workflow-note a:hover {
            text-decoration: none;
        }

        /* faq */
        .faq-section {
            background: var(--paper);
            padding: 96px 0;
        }

        .faq-holder {
            max-width: 920px;
            margin: 34px auto 0;
        }

        .accordion {
            --bs-accordion-border-color: var(--line);
            --bs-accordion-border-width: 0;
            --bs-accordion-bg: transparent;
            --bs-accordion-active-bg: transparent;
        }

        .accordion-item {
            border: 0;
            border-bottom: 1px solid var(--line);
            background: transparent;
            border-radius: 0 !important;
        }

        .accordion-button {
            background: transparent;
            box-shadow: none;
            padding: 24px 8px 22px;
            font-size: 17px;
            font-weight: 700;
            color: var(--ink);
            text-align: left;
            gap: 20px;
            align-items: center;
            border-radius: 0 !important;
        }

        .accordion-button:not(.collapsed) {
            background: transparent;
            color: var(--ink);
            box-shadow: none;
        }

        .accordion-button::after {
            display: none;
        }

        .acc-index {
            font-family: var(--font-num);
            color: var(--text-muted);
            font-size: 14px;
            font-weight: 800;
            width: 28px;
            flex: none;
        }

        .acc-icon {
            position: relative;
            flex: none;
            width: 24px;
            height: 24px;
            border: 1px solid var(--ink);
            border-radius: 50%;
            display: inline-block;
        }

        .acc-icon::before,
        .acc-icon::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            background: var(--ink);
            transform: translate(-50%, -50%);
            transition: transform .2s ease, opacity .2s ease;
        }

        .acc-icon::before {
            width: 10px;
            height: 1.6px;
        }

        .acc-icon::after {
            width: 1.6px;
            height: 10px;
        }

        .accordion-button:not(.collapsed) .acc-icon::after {
            transform: translate(-50%, -50%) rotate(90deg);
            opacity: 0;
        }

        .accordion-button:not(.collapsed) .acc-icon {
            background: var(--volt);
            border-color: var(--volt);
        }

        .accordion-body {
            padding: 0 8px 26px 56px;
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.95;
            max-width: 820px;
        }

        /* cta */
        .cta-band {
            padding: 20px 0 88px;
            background: var(--paper);
        }

        .cta-box {
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            background: linear-gradient(105deg, rgba(17, 20, 15, .88), rgba(17, 20, 15, .6)), url('/assets/images/backpic/back-2.png') center/cover no-repeat;
            padding: 58px 58px;
            color: var(--paper);
            display: grid;
            grid-template-columns: 1.2fr .8fr;
            gap: 48px;
            align-items: center;
        }

        .cta-eyebrow {
            color: var(--volt);
            font-weight: 800;
            font-size: 14px;
            letter-spacing: .06em;
            margin-bottom: 12px;
        }

        .cta-box h2 {
            font-size: clamp(28px, 3.6vw, 42px);
            font-weight: 900;
            line-height: 1.2;
            margin: 0 0 16px;
            color: var(--paper);
        }

        .cta-box p {
            color: rgba(244, 245, 239, .72);
            font-size: 15px;
            margin: 0 0 26px;
        }

        .cta-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .cta-side {
            border: 1px solid var(--line-light);
            background: rgba(244, 245, 239, .06);
            border-radius: var(--radius-md);
            padding: 26px;
        }

        .cta-side .side-title {
            color: var(--paper);
            font-weight: 800;
            font-size: 18px;
            margin-bottom: 14px;
        }

        .contact-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 12px;
        }

        .contact-list li {
            color: rgba(244, 245, 239, .72);
            font-size: 14px;
            padding-left: 24px;
            position: relative;
            line-height: 1.6;
        }

        .contact-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 9px;
            width: 10px;
            height: 2px;
            background: var(--volt);
        }

        /* footer */
        .site-footer {
            background: #0D100B;
            color: var(--paper);
            padding-top: 84px;
            font-size: 14px;
            position: relative;
            overflow: hidden;
        }

        .site-footer::after {
            content: "mksports官方";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -40px;
            text-align: center;
            font-size: clamp(90px, 14vw, 180px);
            font-weight: 900;
            letter-spacing: .02em;
            color: rgba(244, 245, 239, .04);
            pointer-events: none;
            line-height: 1;
        }

        .footer-main {
            position: relative;
            z-index: 2;
            padding-bottom: 56px;
            border-bottom: 1px solid var(--line-light);
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 18px;
            color: var(--paper);
        }

        .footer-brand .logo-badge {
            font-size: 13px;
            width: 42px;
            height: 42px;
        }

        .footer-desc {
            color: rgba(244, 245, 239, .62);
            font-size: 15px;
            line-height: 1.9;
            max-width: 420px;
            margin: 0 0 22px;
        }

        .footer-address {
            color: rgba(244, 245, 239, .44);
            font-size: 14px;
            font-style: normal;
            line-height: 1.9;
        }

        .footer-title {
            color: rgba(244, 245, 239, .92);
            font-size: 15px;
            font-weight: 800;
            letter-spacing: .05em;
            margin-bottom: 22px;
        }

        .footer-link-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 12px;
        }

        .footer-link-list a {
            color: rgba(244, 245, 239, .62);
            font-size: 14px;
            padding: 3px 0;
            transition: color .2s, padding-left .2s;
        }

        .footer-link-list a:hover {
            color: var(--volt);
            padding-left: 4px;
        }

        .subscribe-form {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 8px;
            max-width: 400px;
            margin-top: 12px;
        }

        .subscribe-form input {
            background: transparent;
            border: 1px solid rgba(244, 245, 239, .24);
            border-radius: var(--radius-pill);
            height: 46px;
            padding: 0 16px;
            color: var(--paper);
            font-size: 14px;
            min-width: 0;
            transition: border-color .2s, box-shadow .2s;
        }

        .subscribe-form input::placeholder {
            color: rgba(244, 245, 239, .35);
        }

        .subscribe-form input:focus {
            outline: none;
            border-color: var(--volt);
            box-shadow: 0 0 0 3px rgba(221, 242, 71, .18);
        }

        .subscribe-form button {
            background: var(--volt);
            color: var(--ink);
            border: 0;
            width: 86px;
            border-radius: var(--radius-pill);
            font-weight: 800;
            font-size: 14px;
            transition: background .2s, box-shadow .2s;
        }

        .subscribe-form button:hover {
            background: var(--volt-deep);
            box-shadow: 4px 4px 0 rgba(221, 242, 71, .25);
        }

        .footer-note {
            font-size: 13px;
            color: rgba(244, 245, 239, .36);
            margin-top: 14px;
        }

        .footer-bottom {
            background: rgba(244, 245, 239, .02);
            position: relative;
            z-index: 2;
            border-top: 1px solid rgba(244, 245, 239, .08);
            padding: 0;
        }

        .copyright-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            min-height: 62px;
            font-size: 13px;
            color: rgba(244, 245, 239, .4);
            padding-top: 18px;
            padding-bottom: 18px;
            flex-wrap: wrap;
        }

        .copyright-inner a {
            color: rgba(244, 245, 239, .5);
            text-decoration: none;
        }

        .copyright-inner a:hover {
            color: var(--volt);
        }

        @media (max-width: 991.98px) {
            .main-nav {
                display: none;
            }

            .nav-toggle {
                display: inline-flex;
            }

            .header-actions .btn {
                display: none !important;
            }

            .site-header {
                min-height: 64px;
            }

            .pinned-card {
                grid-template-columns: 1fr;
                gap: 18px;
                padding: 26px;
            }

            .pin-more {
                width: 100%;
                text-align: center;
            }

            .notice-item {
                grid-template-columns: 120px 1fr auto;
                gap: 18px;
                padding: 22px 2px;
            }

            .notice-no {
                grid-column: 1 / 2;
                grid-row: 2;
                justify-self: start;
            }

            .notice-copy {
                grid-column: 2 / 4;
                grid-row: 1;
            }

            .notice-arrow {
                grid-column: 3 / 4;
                grid-row: 2;
            }

            .workflow-list {
                grid-template-columns: 1fr;
            }

            .cta-box {
                grid-template-columns: 1fr;
                padding: 38px 28px;
            }

            .cta-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .cta-actions .btn {
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }

        @media (max-width: 767.98px) {
            .section-pad {
                padding: 60px 0;
            }

            .section-pad-sm {
                padding: 44px 0;
            }

            .cat-hero {
                padding: 44px 0 60px;
            }

            .cat-hero h1 {
                font-size: 38px;
                gap: 4px;
            }

            .cat-hero-art {
                aspect-ratio: 16 / 12;
                max-height: 320px;
            }

            .hero-meta-row {
                gap: 18px;
            }

            .notice-board {
                padding: 62px 0;
            }

            .notice-item {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .notice-date {
                gap: 8px;
            }

            .notice-date .day {
                font-size: 26px;
            }

            .notice-copy {
                grid-column: auto;
                grid-row: auto;
            }

            .notice-no {
                grid-column: auto;
                grid-row: auto;
            }

            .notice-arrow {
                display: none;
            }

            .section-title {
                font-size: 30px;
            }

            .subscribe-form {
                grid-template-columns: 1fr;
            }

            .subscribe-form button {
                width: 100%;
                height: 44px;
            }

            .copyright-inner {
                justify-content: center;
                text-align: center;
            }

            .mobile-menu {
                padding: 96px 24px 28px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: .01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: .01ms !important;
                scroll-behavior: auto !important;
            }
        }

/* roulang page: category2 */
:root {
            --paper: #F4F5EF;
            --paper-deep: #E9EBE1;
            --ink: #11140F;
            --ink-soft: #1C201A;
            --line: rgba(17, 20, 15, .14);
            --line-light: rgba(244, 245, 239, .18);
            --volt: #DDF247;
            --volt-deep: #C4D62B;
            --signal: #FF6B4A;
            --text-body: #1F241C;
            --text-muted: #70786A;
            --radius-card: 6px;
            --radius-pill: 999px;
            --shadow-1: 0 2px 10px rgba(17, 20, 15, .05), 0 12px 30px rgba(17, 20, 15, .04);
            --shadow-2: 0 10px 24px rgba(17, 20, 15, .08), 0 22px 48px rgba(17, 20, 15, .06);
            --shadow-volt: 4px 4px 0 #11140F;
            --font-cn: system-ui, -apple-system, "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            --font-num: "Bahnschrift", "DIN Alternate", "Roboto Condensed", "Arial Narrow", sans-serif;
            --bs-gutter-x: 24px;
            --bs-body-font-family: var(--font-cn);
            --bs-body-bg: var(--paper);
            --bs-body-color: var(--text-body);
            --bs-border-radius: 6px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: var(--font-cn);
            background: var(--paper);
            color: var(--text-body);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.2;
            color: var(--ink);
            font-weight: 800;
            margin: 0 0 12px;
        }

        p {
            margin-top: 0;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
            border: 0;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
        }

        ul,
        ol {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        :focus-visible {
            outline: 2px solid var(--volt);
            outline-offset: 3px;
        }

        .container {
            max-width: 1320px;
            padding-left: 24px;
            padding-right: 24px;
        }

        .section {
            padding-top: 96px;
            padding-bottom: 96px;
        }

        .bg-paper {
            background: var(--paper);
        }

        .bg-paper-deep {
            background: var(--paper-deep);
        }

        .bg-ink {
            background: var(--ink);
            color: rgba(244, 245, 239, .86);
        }

        .bg-ink h2,
        .bg-ink h3,
        .bg-ink h4 {
            color: var(--paper);
        }

        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .12em;
            color: var(--text-muted);
            text-transform: uppercase;
        }

        .eyebrow::before {
            content: "";
            width: 24px;
            height: 2px;
            background: var(--volt-deep);
            display: inline-block;
        }

        .section-heading {
            max-width: 760px;
            margin-bottom: 48px;
        }

        .section-title {
            font-size: clamp(32px, 4vw, 44px);
            margin: 14px 0 16px;
            letter-spacing: -0.01em;
        }

        .section-desc {
            color: var(--text-muted);
            font-size: 16px;
            line-height: 1.9;
            margin: 0;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 13px 26px;
            border-radius: var(--radius-pill);
            font-weight: 800;
            border: 1px solid transparent;
            line-height: 1.4;
            transition: all .25s ease;
            text-decoration: none;
            cursor: pointer;
            min-height: 44px;
        }

        .btn-lg {
            min-height: 54px;
            padding: 16px 34px;
            font-size: 16px;
        }

        .btn-volt {
            background: var(--volt);
            color: var(--ink);
            border-color: var(--ink);
            box-shadow: var(--shadow-volt);
        }

        .btn-volt:hover {
            background: var(--volt-deep);
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0 #11140F;
        }

        .btn-volt:active {
            transform: translate(0, 0);
            box-shadow: 2px 2px 0 #11140F;
        }

        .btn-outline-light {
            background: transparent;
            color: var(--paper);
            border-color: rgba(244, 245, 239, .55);
        }

        .btn-outline-light:hover {
            background: rgba(244, 245, 239, .12);
            border-color: var(--paper);
            color: #fff;
        }

        .btn-outline-dark {
            background: transparent;
            color: var(--ink);
            border-color: rgba(17, 20, 15, .32);
        }

        .btn-outline-dark:hover {
            background: var(--ink);
            color: var(--paper);
            border-color: var(--ink);
        }

        .btn-block {
            width: 100%;
        }

        /* Site header */
        .site-header {
            position: relative;
            z-index: 1040;
            background: rgba(17, 20, 15, .96);
            border-bottom: 1px solid var(--line-light);
            color: var(--paper);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 72px;
            gap: 28px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            flex: 0 0 auto;
        }

        .brand-mark {
            width: 40px;
            height: 40px;
            display: grid;
            place-items: center;
            background: var(--volt);
            color: var(--ink);
            font-weight: 900;
            font-family: var(--font-num);
            font-size: 15px;
            letter-spacing: -0.03em;
            border-radius: 3px;
        }

        .brand-text {
            font-size: 20px;
            font-weight: 900;
            line-height: 1;
            color: var(--paper);
            letter-spacing: .01em;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 2px;
            margin-left: auto;
        }

        .nav-link {
            display: inline-block;
            position: relative;
            padding: 26px 16px 22px;
            color: rgba(244, 245, 239, .76);
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            transition: color .2s ease;
        }

        .nav-link:hover {
            color: #fff;
        }

        .nav-link.active {
            color: #fff;
        }

        .nav-link.active::after {
            content: "";
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 0;
            height: 4px;
            background: var(--volt);
            border-radius: 4px 4px 0 0;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 16px;
            flex: 0 0 auto;
        }

        .status-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(221, 242, 71, .12);
            border: 1px solid rgba(221, 242, 71, .38);
            color: var(--volt);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .04em;
            padding: 7px 14px;
            border-radius: var(--radius-pill);
        }

        .status-dot,
        .dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            background: var(--volt);
            border-radius: 50%;
            animation: pulse 1.8s infinite ease-in-out;
        }

        @keyframes pulse {
            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.4);
                opacity: .55;
            }
        }

        .nav-burger {
            display: none;
            width: 44px;
            height: 44px;
            border: 1px solid rgba(244, 245, 239, .22);
            background: transparent;
            border-radius: 6px;
            padding: 10px 9px;
            cursor: pointer;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
        }

        .nav-burger span {
            display: block;
            height: 2px;
            width: 100%;
            background: var(--paper);
            transition: all .25s ease;
        }

        .nav-cta-mobile {
            display: none;
        }

        .header-cta {
            min-height: 42px;
            padding: 10px 22px;
            font-size: 14px;
        }

        .header-nav-inner {
            margin-left: 40px;
            display: flex;
            align-items: center;
        }

        /* Hero */
        .cat-hero {
            background:
                linear-gradient(98deg, rgba(17, 20, 15, .98) 0%, rgba(17, 20, 15, .86) 36%, rgba(17, 20, 15, .58) 76%, rgba(17, 20, 15, .42) 100%),
                url("/assets/images/backpic/back-1.webp") center / cover no-repeat;
            color: var(--paper);
        }

        .hero-row {
            padding-top: 118px;
            padding-bottom: 76px;
            align-items: end;
        }

        .hero-eyebrow {
            font-family: var(--font-num);
            letter-spacing: .18em;
            font-size: 13px;
            color: var(--volt);
            margin-bottom: 26px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hero-eyebrow::before {
            content: "";
            width: 38px;
            height: 2px;
            background: var(--volt);
        }

        .hero-title {
            font-size: clamp(46px, 5.6vw, 76px);
            color: var(--paper);
            line-height: 1.04;
            letter-spacing: -0.02em;
            margin-bottom: 26px;
            font-weight: 900;
        }

        .hero-title .volt-block {
            color: var(--volt);
            position: relative;
        }

        .hero-lead {
            font-size: 17px;
            line-height: 1.9;
            color: rgba(244, 245, 239, .8);
            max-width: 660px;
            margin-bottom: 40px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .hero-info-card {
            background: rgba(17, 20, 15, .52);
            border: 1px solid rgba(244, 245, 239, .18);
            border-radius: var(--radius-card);
            padding: 28px;
            backdrop-filter: blur(6px);
            box-shadow: var(--shadow-2);
            margin-left: auto;
            max-width: 430px;
        }

        .hi-overline {
            font-size: 12px;
            letter-spacing: .12em;
            color: rgba(244, 245, 239, .55);
            margin-bottom: 8px;
            font-family: var(--font-num);
        }

        .hi-title {
            font-size: 20px;
            color: var(--paper);
            font-weight: 800;
            line-height: 1.55;
            margin-bottom: 22px;
        }

        .hi-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(244, 245, 239, .14);
        }

        .hi-cell span {
            display: block;
            color: rgba(244, 245, 239, .55);
            font-size: 12px;
            margin-bottom: 4px;
        }

        .hi-cell strong {
            font-family: var(--font-num);
            font-size: 15px;
            color: var(--paper);
            font-weight: 700;
        }

        .hero-quick-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border-top: 1px solid rgba(244, 245, 239, .16);
            margin-top: 30px;
            padding: 24px 0 0;
        }

        .hero-quick-cell {
            padding: 10px 26px 10px 0;
            border-right: 1px solid rgba(244, 245, 239, .12);
        }

        .hero-quick-cell+.hero-quick-cell {
            padding-left: 26px;
        }

        .hero-quick-cell:last-child {
            border-right: 0;
        }

        .quick-label {
            display: block;
            font-size: 11px;
            color: rgba(244, 245, 239, .5);
            letter-spacing: .08em;
            margin-bottom: 5px;
        }

        .quick-value {
            display: block;
            font-size: 15px;
            color: var(--paper);
            font-weight: 700;
        }

        /* Marquee */
        .marquee-section {
            background: var(--volt);
            color: var(--ink);
            border-bottom: 2px solid var(--ink);
            overflow: hidden;
            padding: 15px 0;
            position: relative;
        }

        .marquee-track {
            display: flex;
            width: max-content;
            animation: marqueeMove 42s linear infinite;
        }

        .marquee-pane {
            display: inline-flex;
            white-space: nowrap;
            font-weight: 900;
            font-size: 15px;
            letter-spacing: .02em;
            color: var(--ink);
            padding-right: 20px;
        }

        .marquee-pane em {
            font-style: normal;
            display: inline-block;
            padding: 0 36px;
        }

        @keyframes marqueeMove {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(-50%);
            }
        }

        /* Featured event */
        .feature-section {
            background: var(--paper);
        }

        .feature-card {
            height: 100%;
            background: var(--paper);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-1);
            transition: transform .3s ease, box-shadow .3s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-2);
        }

        .feature-media {
            position: relative;
            margin: 0;
            background: var(--paper-deep);
            aspect-ratio: 16 / 10;
            overflow: hidden;
        }

        .feature-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease;
        }

        .feature-card:hover .feature-media img {
            transform: scale(1.03);
        }

        .media-badge {
            position: absolute;
            top: 18px;
            left: 18px;
            z-index: 2;
            background: var(--ink);
            color: var(--volt);
            border: 1px solid rgba(244, 245, 239, .3);
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            font-size: 12px;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .feature-body {
            padding: 28px;
        }

        .mini-line {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 16px;
        }

        .kicker {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .08em;
            color: var(--text-muted);
            font-family: var(--font-num);
        }

        .status-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border-radius: var(--radius-pill);
            background: rgba(221, 242, 71, .34);
            color: var(--ink);
            border: 1px solid rgba(17, 20, 15, .14);
            padding: 4px 12px;
            font-size: 12px;
            font-weight: 800;
        }

        .feature-body h3 {
            font-size: 22px;
            margin-bottom: 14px;
            line-height: 1.45;
        }

        .feature-body p {
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.85;
            margin-bottom: 20px;
        }

        .match-board {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border: 1px solid var(--line);
            background: var(--paper-deep);
            border-radius: var(--radius-card);
            overflow: hidden;
        }

        .match-board div {
            padding: 16px 18px;
            border-right: 1px solid var(--line);
        }

        .match-board div:last-child {
            border-right: 0;
        }

        .match-board span {
            display: block;
            color: var(--text-muted);
            font-size: 12px;
            margin-bottom: 4px;
        }

        .match-board strong {
            font-family: var(--font-num);
            font-size: 15px;
        }

        /* Embedded side cards */
        .side-card-wrap {
            display: flex;
            flex-direction: column;
            gap: 20px;
            height: 100%;
        }

        .embedded-card {
            background: var(--paper);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            overflow: hidden;
            display: grid;
            grid-template-columns: 200px 1fr;
            flex: 1;
            transition: box-shadow .25s ease, transform .25s ease;
            min-height: 220px;
        }

        .embedded-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-2);
        }

        .embedded-media {
            background: var(--paper-deep);
            overflow: hidden;
            min-height: 100%;
        }

        .embedded-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .45s ease;
        }

        .embedded-card:hover .embedded-media img {
            transform: scale(1.04);
        }

        .embedded-copy {
            padding: 24px 24px 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 15px;
        }

        .embedded-copy h3 {
            font-size: 18px;
            line-height: 1.5;
            margin-bottom: 6px;
        }

        .embedded-copy p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 0;
        }

        .copy-meta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 12px;
            font-weight: 700;
            color: var(--text-muted);
        }

        .copy-meta .dot {
            width: 5px;
            height: 5px;
            background: var(--signal);
            animation: none;
        }

        .copy-link {
            color: var(--ink);
            font-weight: 800;
            font-size: 13px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .copy-link:hover {
            color: #000;
        }

        .copy-link i {
            font-style: normal;
            transition: transform .2s ease;
        }

        .copy-link:hover i {
            transform: translateX(4px);
        }

        /* News feed list */
        .feed-section {
            background: var(--paper-deep);
        }

        .feed-head-row {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            margin-bottom: 36px;
        }

        .feed-item {
            display: grid;
            grid-template-columns: 132px 1fr auto;
            align-items: center;
            gap: 28px;
            background: var(--paper);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            padding: 24px 28px;
            margin-bottom: 14px;
            transition: border-color .2s ease, box-shadow .2s ease;
        }

        .feed-item:hover {
            border-color: rgba(17, 20, 15, .28);
            box-shadow: var(--shadow-1);
        }

        .feed-date {
            display: flex;
            flex-direction: column;
            font-family: var(--font-num);
        }

        .feed-date strong {
            font-size: 34px;
            line-height: 1;
            letter-spacing: -0.02em;
        }

        .feed-date span {
            font-size: 12px;
            margin-top: 7px;
            color: var(--text-muted);
            font-weight: 600;
        }

        .feed-content h3 {
            font-size: 19px;
            margin-bottom: 8px;
            line-height: 1.5;
        }

        .feed-content h3 a:hover {
            color: #000;
        }

        .feed-content p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.8;
            margin: 0 0 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .feed-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 8px;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            background: var(--paper-deep);
            border: 1px solid var(--line);
            padding: 4px 11px;
            border-radius: var(--radius-pill);
            font-size: 12px;
            font-weight: 700;
            color: var(--text-muted);
        }

        .tag-dark {
            background: var(--ink);
            color: var(--volt);
            border-color: var(--ink);
        }

        .feed-action {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 10px;
        }

        .arrow-link {
            font-weight: 800;
            font-size: 13px;
            color: var(--ink);
            display: inline-flex;
            align-items: center;
            gap: 5px;
            white-space: nowrap;
        }

        .arrow-link i {
            font-style: normal;
            font-family: var(--font-num);
            transition: transform .2s ease;
        }

        .arrow-link:hover i {
            transform: translateX(4px);
        }

        /* Process section */
        .process-section .section-heading {
            max-width: 820px;
        }

        .process-section .eyebrow {
            color: rgba(244, 245, 239, .55);
        }

        .process-section .section-desc {
            color: rgba(244, 245, 239, .62);
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .process-step {
            background: rgba(244, 245, 239, .035);
            border: 1px solid var(--line-light);
            border-radius: var(--radius-card);
            padding: 28px 24px;
            position: relative;
            transition: border-color .25s ease, background .25s ease;
        }

        .process-step:hover {
            background: rgba(244, 245, 239, .08);
            border-color: rgba(221, 242, 71, .5);
        }

        .step-num {
            font-family: var(--font-num);
            font-size: 30px;
            font-weight: 800;
            color: var(--volt);
            line-height: 1;
            display: block;
            margin-bottom: 54px;
        }

        .process-step h3 {
            color: var(--paper);
            font-size: 20px;
            margin-bottom: 10px;
        }

        .process-step p {
            color: rgba(244, 245, 239, .6);
            font-size: 14px;
            line-height: 1.85;
            margin: 0;
        }

        /* FAQ */
        .faq-wrap {
            max-width: 920px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--paper);
            border: 1px solid var(--line);
            border-left: 5px solid var(--paper-deep);
            border-radius: var(--radius-card);
            margin-bottom: 14px;
            overflow: hidden;
            transition: border-color .25s ease;
        }

        .faq-item[open] {
            border-left-color: var(--volt-deep);
        }

        .faq-item summary {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 22px 24px;
            list-style: none;
            cursor: pointer;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-no {
            flex: 0 0 36px;
            height: 36px;
            display: grid;
            place-items: center;
            background: var(--ink);
            color: var(--volt);
            font-family: var(--font-num);
            font-weight: 800;
            font-size: 14px;
            border-radius: 50%;
        }

        .faq-title {
            flex: 1;
            font-size: 17px;
            color: var(--ink);
            font-weight: 800;
            line-height: 1.5;
        }

        .faq-toggle {
            color: var(--ink);
            font-size: 26px;
            font-weight: 300;
            transition: transform .25s ease;
            font-family: var(--font-num);
        }

        .faq-item[open] .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 24px 24px 78px;
            color: var(--text-muted);
            line-height: 1.9;
            font-size: 15px;
        }

        /* Apply form section */
        .apply-section {
            background:
                linear-gradient(100deg, rgba(233, 235, 225, .96) 0%, rgba(244, 245, 239, .92) 56%, rgba(221, 242, 71, .22) 100%);
        }

        .apply-intro h2 {
            font-size: clamp(30px, 3.8vw, 42px);
            margin-bottom: 18px;
        }

        .apply-intro p {
            color: var(--text-muted);
            font-size: 16px;
            line-height: 1.9;
            margin-bottom: 24px;
        }

        .apply-note {
            background: rgba(17, 20, 15, .045);
            border-left: 4px solid var(--volt-deep);
            padding: 18px 20px;
            border-radius: 0 var(--radius-card) var(--radius-card) 0;
            color: var(--text-body);
            font-size: 14px;
            line-height: 1.85;
        }

        .apply-note strong {
            color: var(--ink);
        }

        .apply-panel {
            background: var(--paper);
            border: 1px solid var(--line);
            box-shadow: var(--shadow-2);
            border-radius: var(--radius-card);
            padding: 36px;
        }

        .apply-panel h3 {
            font-size: 22px;
            margin-bottom: 6px;
        }

        .apply-panel>p {
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 28px;
        }

        .apply-form .form-group {
            margin-bottom: 20px;
        }

        .apply-form label {
            display: inline-block;
            font-size: 13px;
            font-weight: 800;
            color: var(--ink);
            margin-bottom: 8px;
        }

        .form-control,
        .form-select {
            border: 1px solid var(--line);
            background: var(--paper);
            color: var(--text-body);
            border-radius: var(--radius-card);
            padding: 14px 16px;
            font-size: 15px;
            width: 100%;
            min-height: 48px;
            transition: border-color .2s ease, box-shadow .2s ease;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--ink);
            outline: 0;
            box-shadow: 0 0 0 3px rgba(221, 242, 71, .4);
            background: var(--paper);
        }

        .form-check {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 22px;
            font-size: 14px;
        }

        .form-check-input {
            margin-top: 4px;
            width: 18px;
            height: 18px;
            border: 1px solid rgba(17, 20, 15, .35);
            border-radius: 4px;
            background: var(--paper);
            flex: 0 0 auto;
            appearance: none;
        }

        .form-check-input:checked {
            background-color: var(--volt-deep);
            border-color: var(--ink);
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%2311140F' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
        }

        .form-success {
            margin-top: 16px;
            background: rgba(221, 242, 71, .24);
            border: 1px solid rgba(17, 20, 15, .2);
            color: var(--ink);
            border-radius: var(--radius-card);
            padding: 13px 16px;
            font-size: 14px;
            font-weight: 700;
        }

        /* Footer */
        .site-footer {
            background: var(--ink);
            color: rgba(244, 245, 239, .72);
            position: relative;
            overflow: hidden;
        }

        .footer-main {
            padding-top: 72px;
            padding-bottom: 52px;
            position: relative;
            z-index: 2;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 900;
            color: var(--paper);
            margin-bottom: 18px;
        }

        .logo-badge {
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            background: var(--volt);
            color: var(--ink);
            font-family: var(--font-num);
            font-weight: 900;
            font-size: 15px;
            border-radius: 3px;
        }

        .footer-desc {
            color: rgba(244, 245, 239, .58);
            font-size: 14px;
            line-height: 1.9;
            margin-bottom: 22px;
            max-width: 440px;
        }

        .footer-address {
            font-style: normal;
            color: rgba(244, 245, 239, .5);
            font-size: 13px;
            line-height: 2;
            margin-bottom: 0;
        }

        .footer-title {
            color: var(--paper);
            font-size: 15px;
            font-weight: 800;
            letter-spacing: .06em;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 24px;
            height: 2px;
            background: var(--volt);
        }

        .footer-link-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-link-list a {
            color: rgba(244, 245, 239, .62);
            font-size: 14px;
            transition: color .2s ease, padding-left .2s ease;
        }

        .footer-link-list a:hover {
            color: var(--volt);
            padding-left: 4px;
        }

        .subscribe-form {
            display: flex;
            gap: 8px;
            margin-top: 8px;
        }

        .subscribe-form input {
            flex: 1;
            min-width: 0;
            background: rgba(244, 245, 239, .08);
            border: 1px solid rgba(244, 245, 239, .22);
            color: var(--paper);
            border-radius: var(--radius-pill);
            padding: 12px 16px;
            font-size: 14px;
        }

        .subscribe-form input::placeholder {
            color: rgba(244, 245, 239, .4);
        }

        .subscribe-form input:focus {
            outline: 0;
            border-color: var(--volt);
        }

        .subscribe-form button {
            background: var(--volt);
            border: 0;
            color: var(--ink);
            font-weight: 800;
            border-radius: var(--radius-pill);
            padding: 10px 20px;
            cursor: pointer;
            transition: background .2s ease;
        }

        .subscribe-form button:hover {
            background: var(--volt-deep);
        }

        .footer-bottom {
            border-top: 1px solid rgba(244, 245, 239, .1);
            padding: 22px 0;
            position: relative;
            z-index: 2;
        }

        .copyright-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            font-size: 13px;
            color: rgba(244, 245, 239, .42);
        }

        .copyright-inner a {
            color: rgba(244, 245, 239, .62);
        }

        .copyright-inner a:hover {
            color: var(--volt);
        }

        .footer-watermark {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 0;
            text-align: center;
            font-weight: 900;
            font-size: clamp(100px, 18vw, 300px);
            line-height: .8;
            color: rgba(244, 245, 239, .045);
            pointer-events: none;
            user-select: none;
            white-space: nowrap;
        }

        /* Responsive */
        @media (min-width: 1200px) {
            .header-cta {
                display: inline-flex;
            }
        }

        @media (max-width: 1199.98px) {
            .header-inner {
                gap: 16px;
            }

            .nav-link {
                padding-left: 11px;
                padding-right: 11px;
            }

            .status-pill {
                display: none;
            }
        }

        @media (max-width: 991.98px) {
            .section {
                padding-top: 72px;
                padding-bottom: 72px;
            }

            .header-inner {
                min-height: 64px;
            }

            .site-header {
                background: var(--ink);
            }

            .nav-burger {
                display: flex;
            }

            .main-nav {
                position: fixed;
                top: 64px;
                left: 0;
                right: 0;
                bottom: 0;
                background: var(--ink);
                margin: 0;
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                gap: 4px;
                padding: 48px 32px 40px;
                overflow-y: auto;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-18px);
                transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
            }

            .site-header.nav-open .main-nav {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .nav-link {
                font-size: 24px;
                font-weight: 800;
                color: rgba(244, 245, 239, .86);
                padding: 12px 0;
                width: 100%;
            }

            .nav-link.active {
                color: var(--volt);
            }

            .nav-link.active::after {
                content: none;
            }

            .nav-link.active::before {
                content: "";
                display: inline-block;
                width: 8px;
                height: 8px;
                background: var(--volt);
                margin-right: 14px;
                vertical-align: 4px;
            }

            .nav-cta-mobile {
                display: flex;
                width: 100%;
                margin-top: 28px;
                background: var(--volt);
                color: var(--ink);
                border-radius: var(--radius-pill);
                padding: 16px 24px;
                font-size: 16px;
                font-weight: 900;
                border: 0;
                align-items: center;
                justify-content: center;
            }

            .header-cta {
                display: none !important;
            }

            .hero-quick-grid {
                grid-template-columns: repeat(2, 1fr);
                row-gap: 20px;
            }

            .hero-quick-cell {
                border-right: 0;
                padding: 0;
            }

            .hero-quick-cell+.hero-quick-cell {
                padding-left: 16px;
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .process-step .step-num {
                margin-bottom: 30px;
            }

            .embedded-card {
                grid-template-columns: 1fr;
            }

            .embedded-media {
                aspect-ratio: 16 / 8;
                min-height: auto;
            }

            .feed-item {
                grid-template-columns: 118px 1fr;
                padding: 20px;
            }

            .feed-action {
                grid-column: 2 / 3;
                align-items: flex-start;
                flex-direction: row;
                justify-content: space-between;
            }
        }

        @media (max-width: 767.98px) {
            .section {
                padding-top: 58px;
                padding-bottom: 58px;
            }

            .hero-row {
                padding-top: 76px;
                padding-bottom: 44px;
            }

            .hero-title {
                font-size: 44px;
            }

            .hero-lead {
                font-size: 16px;
            }

            .hero-info-card {
                margin-left: 0;
                margin-top: 10px;
                padding: 24px;
            }

            .hero-quick-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px 12px;
                padding-bottom: 12px;
            }

            .hero-quick-cell+.hero-quick-cell {
                padding-left: 0;
            }

            .quick-value {
                font-size: 14px;
            }

            .section-heading {
                margin-bottom: 36px;
            }

            .section-title {
                font-size: 30px;
            }

            .feed-head-row {
                margin-bottom: 24px;
            }

            .feed-item {
                grid-template-columns: 1fr;
                gap: 12px;
                padding: 20px;
            }

            .feed-date {
                flex-direction: row;
                align-items: baseline;
                gap: 8px;
            }

            .feed-date strong {
                font-size: 26px;
            }

            .feed-date span {
                margin-top: 0;
            }

            .feed-action {
                grid-column: auto;
                align-items: flex-start;
                flex-direction: row;
                justify-content: space-between;
            }

            .process-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .process-step {
                padding: 22px;
            }

            .process-step .step-num {
                margin-bottom: 18px;
            }

            .apply-panel {
                padding: 26px 20px;
            }

            .faq-answer {
                padding: 0 18px 22px 18px;
            }

            .faq-item summary {
                padding: 18px;
            }

            .copyright-inner {
                flex-direction: column;
                justify-content: center;
                text-align: center;
            }

            .footer-main {
                padding-top: 48px;
            }

            .subscribe-form {
                flex-direction: column;
                align-items: stretch;
            }

            .subscribe-form button {
                padding: 12px 20px;
            }
        }

        @media (max-width: 420px) {
            .brand-text {
                font-size: 17px;
            }

            .brand-mark {
                width: 36px;
                height: 36px;
            }

            .hero-actions .btn {
                width: 100%;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: .001ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: .01ms !important;
                scroll-behavior: auto !important;
            }
        }

/* roulang page: category3 */
:root {
  --paper: #F4F5EF;
  --paper-deep: #E9EBE1;
  --ink: #11140F;
  --ink-soft: #1C201A;
  --line: rgba(17, 20, 15, 0.14);
  --line-light: rgba(244, 245, 239, 0.18);
  --volt: #DDF247;
  --volt-deep: #C4D62B;
  --signal: #FF6B4A;
  --text-body: #1F241C;
  --text-muted: #70786A;
  --radius-card: 6px;
  --radius-pill: 999px;
  --section-pad: 96px;
  --font-sans: system-ui, -apple-system, "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --font-num: "Bahnschrift", "DIN Alternate", "Roboto Condensed", "Arial Narrow", sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  background: var(--paper);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin: 0 0 12px;
  color: inherit;
}
p {
  margin: 0 0 16px;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
button, input, select, textarea {
  font: inherit;
  color: inherit;
}
input, select, textarea {
  border: 0;
  border-radius: 0;
}
address {
  font-style: normal;
  margin: 0;
}
.container,
.container-lg,
.container-xl {
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}
section {
  position: relative;
}
.main-wrap {
  overflow: hidden;
}
.section {
  padding: var(--section-pad) 0;
}
.section-sm {
  padding: 72px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 4px;
  background: var(--volt);
  border-radius: 2px;
}
.eyebrow.light {
  color: rgba(244, 245, 239, 0.7);
}
.eyebrow.light::before {
  background: var(--volt);
}
.section-title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.section-sub {
  max-width: 720px;
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 42px;
}
.section-title .accent {
  color: #11140F;
  background: linear-gradient(transparent 64%, var(--volt) 0);
}
::selection {
  background: var(--volt);
  color: var(--ink);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 30px;
  line-height: 1.4;
  border: 1px solid transparent;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover,
.btn:active,
.btn:focus {
  box-shadow: none;
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn-volt {
  background: var(--volt);
  border-color: var(--volt);
  color: var(--ink);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.16);
}
.btn-volt:hover,
.btn-volt:focus {
  background: var(--volt-deep);
  border-color: var(--volt-deep);
  color: var(--ink);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.12);
}
.btn-ghost-paper {
  border-color: rgba(244, 245, 239, 0.34);
  color: var(--paper);
  background: transparent;
}
.btn-ghost-paper:hover,
.btn-ghost-paper:focus {
  border-color: var(--paper);
  color: var(--paper);
  background: rgba(244, 245, 239, 0.06);
}
.btn-ghost-ink {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-ghost-ink:hover,
.btn-ghost-ink:focus {
  background: var(--ink);
  color: var(--paper);
}
a,
button,
input,
select,
[tabindex] {
  outline: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--volt);
  outline-offset: 3px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid rgba(244, 245, 239, 0.08);
  min-height: 76px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  flex-shrink: 0;
}
.logo-mark {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--volt);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ink-soft) 0%, var(--ink) 100%);
}
.logo-mark::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 12px;
  border: 2px solid var(--volt);
  border-radius: 50%;
  border-left-color: transparent;
  transform: rotate(-32deg);
}
.logo-mark::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--volt);
  border-radius: 50%;
  top: 6px;
  right: 8px;
}
.brand-name {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--paper);
  line-height: 1.2;
}
.brand-name small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(244, 245, 239, 0.45);
  letter-spacing: 0.08em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(244, 245, 239, 0.72);
  padding: 22px 0 20px;
  transition: color 0.25s ease;
}
.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 4px;
  border-radius: 2px;
  background: var(--volt);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}
.main-nav .nav-link:hover {
  color: var(--paper);
}
.main-nav .nav-link.active {
  color: var(--paper);
}
.main-nav .nav-link.active::after {
  transform: scaleX(1);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-size: 13px;
  color: rgba(244, 245, 239, 0.8);
  background: rgba(244, 245, 239, 0.03);
  white-space: nowrap;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--volt);
  position: relative;
}
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--volt);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.4);
    opacity: 0.8;
  }
  80% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.header-cta {
  padding: 10px 24px;
  box-shadow: none;
  font-size: 14px;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  position: relative;
  z-index: 3005;
  width: 48px;
  height: 48px;
  background: rgba(244, 245, 239, 0.04);
  border: 1px solid var(--line-light);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--paper);
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.active span {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle.active span::after {
  transform: translateY(0) rotate(90deg);
}
.nav-toggle.active span::before {
  opacity: 0;
  transform: translateX(-8px);
}
.mobile-drawer {
  display: none;
}

/* Page hero */
.page-hero {
  position: relative;
  background:
    linear-gradient(94deg, rgba(17, 20, 15, 0.97) 0%, rgba(17, 20, 15, 0.9) 48%, rgba(17, 20, 15, 0.62) 100%),
    url("/assets/images/backpic/back-3.webp") center / cover no-repeat;
  color: var(--paper);
  padding: 88px 0 0;
}
.crumb-list {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(244, 245, 239, 0.56);
  margin-bottom: 26px;
}
.crumb-list a {
  color: rgba(244, 245, 239, 0.72);
  transition: color 0.2s ease;
}
.crumb-list a:hover {
  color: var(--volt);
}
.crumb-list span::before {
  content: "/";
  color: rgba(244, 245, 239, 0.28);
  margin-right: 10px;
}
.hero-title {
  font-size: clamp(46px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin-bottom: 20px;
}
.hero-title .brand-tail {
  color: var(--volt);
}
.hero-lead {
  color: rgba(244, 245, 239, 0.8);
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 30px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-tags .tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 15px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: rgba(244, 245, 239, 0.78);
  background: rgba(244, 245, 239, 0.04);
}
.hero-poster {
  padding: 6px 0 0 6px;
}
.poster-frame {
  position: relative;
  max-width: 430px;
  margin-left: auto;
  background: var(--paper);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.3);
}
.poster-frame::before {
  content: "";
  position: absolute;
  left: -16px;
  top: -16px;
  bottom: -16px;
  width: 120px;
  background: var(--volt);
  transform: rotate(-12deg);
  z-index: 2;
}
.poster-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: saturate(0.85);
}
.poster-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 4px;
  border-left: 4px solid var(--volt);
}
.hero-factbar {
  margin-top: 56px;
  border-top: 1px solid var(--line-light);
  background: rgba(17, 20, 15, 0.42);
  backdrop-filter: blur(6px);
}
.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.fact-item {
  padding: 22px 24px 24px 0;
  border-right: 1px solid var(--line-light);
  padding-right: 28px;
}
.fact-item:last-child {
  border-right: none;
}
.fact-num {
  font-family: var(--font-num);
  font-size: 26px;
  font-weight: 700;
  color: var(--volt);
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.fact-label {
  display: block;
  font-size: 13px;
  color: rgba(244, 245, 239, 0.58);
  margin-top: 4px;
}

/* Fan mosaic */
.fan-mosaic {
  background: var(--paper);
}
.mosaic-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 40px;
}
.mosaic-note {
  max-width: 420px;
  color: var(--text-muted);
  font-size: 15px;
  text-align: right;
}
.fan-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 18px;
}
.fan-tile {
  display: block;
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--ink-soft);
  min-height: 180px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.fan-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(17, 20, 15, 0.26);
}
.fan-tile .tile-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.fan-tile:hover .tile-media img {
  transform: scale(1.04);
}
.tile-bar {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, rgba(17, 20, 15, 0.09) 0%, transparent 30%, rgba(17, 20, 15, 0.7) 68%, rgba(17, 20, 15, 0.92) 100%);
}
.category-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  background: var(--volt);
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
}
.like-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  background: rgba(17, 20, 15, 0.58);
  color: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-size: 12px;
  transition: background 0.2s ease;
}
.like-pill:hover {
  background: rgba(17, 20, 15, 0.8);
}
.fan-tile h3 {
  color: var(--paper);
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 6px;
}
.fan-tile p {
  color: rgba(244, 245, 239, 0.68);
  font-size: 14px;
  margin: 0 0 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.tile-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--volt);
  font-size: 13px;
  font-weight: 700;
}
.tile-link i {
  font-style: normal;
  transition: transform 0.25s ease;
}
.fan-tile:hover .tile-link i {
  transform: translateX(4px);
}
.fan-tile-a { grid-column: 1 / span 7; grid-row: 1 / span 6; }
.fan-tile-b { grid-column: 8 / span 5; grid-row: 1 / span 3; }
.fan-tile-c { grid-column: 8 / span 5; grid-row: 4 / span 3; }
.fan-tile-d { grid-column: 1 / span 5; grid-row: 7 / span 4; }
.fan-tile-e { grid-column: 6 / span 7; grid-row: 7 / span 4; }
.fan-tile-f { grid-column: 1 / span 4; grid-row: 11 / span 4; }
.fan-tile-g { grid-column: 5 / span 5; grid-row: 11 / span 4; }
.fan-tile-h { grid-column: 10 / span 3; grid-row: 11 / span 4; }

/* Activity ways */
.activity-zone {
  background: var(--ink);
  color: var(--paper);
  padding: var(--section-pad) 0;
}
.method-card {
  height: 100%;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-card);
  background: var(--ink-soft);
  padding: 30px;
  position: relative;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.method-card:hover {
  transform: translateY(-4px);
  border-color: rgba(221, 242, 71, 0.55);
  background: #242a20;
}
.method-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.method-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(221, 242, 71, 0.14);
  color: var(--volt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid rgba(221, 242, 71, 0.2);
}
.method-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--volt);
  border: 1px solid rgba(221, 242, 71, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.method-state::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--volt);
}
.method-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--paper);
}
.method-card p {
  color: rgba(244, 245, 239, 0.58);
  font-size: 15px;
  margin-bottom: 22px;
  min-height: 48px;
}
.method-link {
  color: var(--volt);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.method-link i {
  font-style: normal;
  transition: transform 0.25s ease;
}
.method-card:hover .method-link i {
  transform: translateX(5px);
}

/* Timeline */
.timeline-section {
  background: var(--paper);
}
.timeline-wrap {
  margin-top: 40px;
}
.timeline-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.tl-item {
  position: relative;
  border-top: 2px solid rgba(17, 20, 15, 0.15);
  padding-top: 24px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.tl-item::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--volt);
  transition: background 0.25s ease;
}
.tl-item:hover {
  border-top-color: var(--volt);
}
.tl-item:hover::before {
  background: var(--volt);
}
.tl-time {
  font-family: var(--font-num);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  opacity: 0.82;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.tl-place {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.tl-place::before {
  content: "打卡点 ";
  color: var(--signal);
  font-weight: 700;
}
.tl-item h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink);
}
.tl-item p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

/* Poll */
.poll-section {
  background: var(--paper-deep);
}
.poll-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 16px 48px rgba(17, 20, 15, 0.05);
}
.topic-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
}
.topic-topline .topic-num {
  font-family: var(--font-num);
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.05em;
}
.poll-card h3 {
  font-size: 26px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 28px;
}
.poll-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: transparent;
  color: var(--text-body);
  padding: 17px 20px;
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.poll-option:hover {
  border-color: var(--ink);
  background: rgba(221, 242, 71, 0.12);
  transform: translateX(4px);
}
.poll-option.chosen {
  border-color: var(--ink);
  background: var(--volt);
  color: var(--ink);
}
.poll-option .poll-index {
  font-family: var(--font-num);
  font-size: 14px;
  font-weight: 700;
  opacity: 0.7;
}
.poll-option .check-state {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  background: rgba(17, 20, 15, 0.08);
  border-radius: var(--radius-pill);
  padding: 3px 12px;
}
.poll-done-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
  min-height: 24px;
}

/* Signup */
.signup-section {
  position: relative;
  background: linear-gradient(120deg, rgba(17, 20, 15, 0.94) 0%, rgba(17, 20, 15, 0.86) 55%, rgba(28, 32, 26, 0.82) 100%), url("/assets/images/backpic/back-2.png") center / cover no-repeat;
  color: var(--paper);
  padding: var(--section-pad) 0;
}
.signup-points {
  margin-top: 28px;
}
.signup-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: rgba(244, 245, 239, 0.78);
}
.signup-points li::before {
  content: "√";
  color: var(--ink);
  background: var(--volt);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  flex-shrink: 0;
}
.sign-card {
  background: rgba(244, 245, 239, 0.04);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 34px;
  backdrop-filter: blur(6px);
}
.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(244, 245, 239, 0.76);
  margin-bottom: 6px;
}
.form-label i {
  color: var(--signal);
  font-style: normal;
}
.sign-input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(244, 245, 239, 0.28);
  color: var(--paper);
  padding: 11px 0 12px;
  font-size: 15px;
  transition: border-color 0.25s ease, opacity 0.25s ease;
}
.sign-input::placeholder {
  color: rgba(244, 245, 239, 0.28);
}
.sign-input:focus {
  border-color: var(--volt);
}
select.sign-input option {
  color: var(--ink);
  background: var(--paper);
}
.form-field {
  margin-bottom: 22px;
}
.form-note {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(244, 245, 239, 0.5);
}
.sign-form .form-success {
  display: none;
}
.sign-form.submitted .form-interactive {
  display: none;
}
.sign-form.submitted .form-success {
  display: block;
}
.form-success {
  text-align: center;
  padding: 26px 10px;
}
.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--volt);
  color: var(--ink);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
}
.form-success h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--paper);
}
.form-success p {
  color: rgba(244, 245, 239, 0.58);
  font-size: 14px;
}

/* FAQ */
.faq-section {
  background: var(--paper);
}
.accordion-page {
  max-width: 880px;
  margin: 0 auto;
}
.accordion-page .accordion-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}
.accordion-page .accordion-item:first-child {
  border-top: 1px solid var(--line);
}
.accordion-page .accordion-button {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  font-size: 17px;
  font-weight: 700;
  padding: 24px 44px 24px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: color 0.22s ease;
}
.accordion-page .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--ink);
}
.accordion-page .accordion-button:hover {
  color: #506B00;
}
.accordion-page .accordion-button::after {
  background-image: none;
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.accordion-page .accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-num {
  font-family: var(--font-num);
  font-size: 15px;
  color: var(--volt-deep);
  letter-spacing: 0.04em;
  width: 40px;
  flex-shrink: 0;
  font-weight: 700;
}
.accordion-page .accordion-body {
  padding: 0 0 24px 58px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.9;
}

/* Final CTA strip */
.cta-strip {
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 52px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-strip h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 6px;
}
.cta-strip p {
  margin: 0;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.site-footer::after {
  content: "mksports官方";
  position: absolute;
  right: -20px;
  bottom: -34px;
  z-index: 0;
  font-size: clamp(90px, 12vw, 170px);
  font-weight: 900;
  color: rgba(244, 245, 239, 0.04);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.footer-main {
  position: relative;
  z-index: 1;
  padding: 72px 24px 48px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--volt);
  color: var(--ink);
  font-weight: 900;
  font-size: 16px;
}
.footer-brand span:last-child {
  font-size: 22px;
  font-weight: 900;
}
.footer-desc {
  color: rgba(244, 245, 239, 0.58);
  font-size: 15px;
  max-width: 430px;
  margin-bottom: 16px;
}
.footer-address {
  color: rgba(244, 245, 239, 0.38);
  font-size: 13px;
  line-height: 1.9;
}
.footer-title {
  font-size: 15px;
  font-weight: 800;
  color: rgba(244, 245, 239, 0.95);
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}
.footer-link-list li {
  margin-bottom: 12px;
}
.footer-link-list a {
  color: rgba(244, 245, 239, 0.58);
  font-size: 14px;
  transition: color 0.22s ease, padding-left 0.22s ease;
}
.footer-link-list a:hover {
  color: var(--volt);
  padding-left: 4px;
}
.subscribe-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  gap: 6px;
}
.subscribe-form input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--paper);
  padding: 12px 0;
  font-size: 14px;
}
.subscribe-form input::placeholder {
  color: rgba(244, 245, 239, 0.34);
}
.subscribe-form input:focus {
  outline: none;
  border-color: transparent;
}
.subscribe-form button {
  background: var(--volt);
  color: var(--ink);
  border: 0;
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.subscribe-form button:hover {
  background: var(--volt-deep);
}
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line-light);
  padding: 18px 0;
}
.copyright-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(244, 245, 239, 0.46);
  font-size: 13px;
}
.copyright-inner a {
  color: rgba(244, 245, 239, 0.58);
  transition: color 0.2s ease;
}
.copyright-inner a:hover {
  color: var(--volt);
}

/* responsiveness */
@media (max-width: 1199.98px) {
  .main-nav {
    gap: 22px;
  }
  .fact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fact-item {
    border-bottom: 1px solid var(--line-light);
  }
  .fact-item:nth-child(2) {
    border-right: none;
  }
  .fact-item:nth-child(-n+2) {
    border-top: 0;
  }
  .timeline-list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 32px;
  }
}
@media (max-width: 991.98px) {
  :root {
    --section-pad: 72px;
  }
  .main-nav,
  .header-actions {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .mobile-drawer {
    display: none;
  }
  .mobile-drawer.open {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    padding: 72px 40px 40px;
    gap: 8px;
  }
  .mobile-drawer.open nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .mobile-drawer.open .nav-link {
    font-size: 26px;
    line-height: 1.4;
    font-weight: 800;
    color: rgba(244, 245, 239, 0.72);
    padding: 12px 0;
    display: inline-flex;
    gap: 10px;
  }
  .mobile-drawer.open .nav-link.active {
    color: var(--volt);
    border-left: 4px solid var(--volt);
    padding-left: 14px;
  }
  .drawer-cta {
    margin-top: 26px;
    width: 100%;
    padding: 16px 0;
    font-size: 17px;
  }
  .hero-poster {
    max-width: 520px;
    margin: 0 auto;
  }
  .fan-mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
  }
  .fan-tile {
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 4 / 3;
    min-height: 220px;
  }
  .fan-tile-a,
  .fan-tile-d,
  .fan-tile-f {
    grid-column: span 2 !important;
  }
  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .copyright-inner {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .page-hero {
    padding-top: 64px;
  }
  .hero-title {
    font-size: 42px;
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta-row .btn {
    width: 100%;
  }
  .hero-tags {
    gap: 8px;
  }
  .fact-grid {
    grid-template-columns: 1fr;
  }
  .fact-item {
    border-right: none;
    border-bottom: 1px solid var(--line-light);
  }
  .section-title {
    font-size: 30px;
  }
  .mosaic-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .mosaic-note {
    text-align: left;
  }
  .method-card {
    padding: 24px;
  }
  .timeline-list {
    grid-template-columns: 1fr;
  }
  .tl-item {
    padding-bottom: 12px;
  }
  .poll-card {
    padding: 24px;
  }
  .poll-card h3 {
    font-size: 21px;
  }
  .poll-option {
    font-size: 14px;
    padding: 14px 16px;
  }
  .sign-card {
    padding: 24px;
  }
  .signup-section {
    padding: 64px 0;
  }
  .accordion-page .accordion-button {
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 15px;
  }
  .accordion-page .accordion-body {
    padding-left: 0;
    font-size: 14px;
  }
  .footer-main {
    padding-top: 56px;
  }
}
@media (max-width: 575.98px) {
  .container,
  .container-lg,
  .container-xl {
    width: min(100% - 32px, 1320px);
    padding-left: 16px;
    padding-right: 16px;
  }
  .fan-mosaic-grid {
    display: flex;
    flex-direction: column;
  }
  .fan-tile {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 220px;
  }
  .poster-frame img {
    height: 280px;
  }
  .cta-strip h2 {
    font-size: 23px;
  }
  .hero-cta-row .btn {
    font-size: 14px;
  }
  .region option {
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
