        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f8fafc;
            color: #1e293b;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #0d6efd;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #0b5ed7;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            color: #0f172a;
            font-weight: 700;
            line-height: 1.3;
            margin-top: 1.6em;
            margin-bottom: 0.6em;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4em;
            border-bottom: 4px solid #e11d48;
            display: inline-block;
            padding-bottom: 0.2em;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 6px solid #e11d48;
            padding-left: 0.7rem;
        }
        h3 {
            font-size: 1.35rem;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2em;
        }
        ul,
        ol {
            margin: 0.8em 0 1.4em 1.8em;
        }
        li {
            margin-bottom: 0.4em;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .badge {
            background: #e11d48;
            color: #fff;
            font-size: 0.75rem;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-weight: 600;
            display: inline-block;
        }
        .site-header {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            background: linear-gradient(135deg, #facc15, #e11d48);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
            -webkit-text-fill-color: transparent;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            color: #94a3b8;
            -webkit-text-fill-color: #94a3b8;
            letter-spacing: 0.3px;
        }
        .nav-menu {
            display: flex;
            gap: 1.2rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #e2e8f0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu a:hover {
            color: #facc15;
            border-bottom-color: #facc15;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
        }
        .nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #e9edf2;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d1d9e6;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            margin: 0;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.6rem;
            color: #64748b;
        }
        .breadcrumb a {
            color: #0d6efd;
        }
        .breadcrumb .current {
            color: #475569;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            color: #fff;
            padding: 3rem 0 2.5rem;
            border-radius: 0 0 40px 40px;
            margin-bottom: 2rem;
        }
        .hero h1 {
            color: #fff;
            border-bottom-color: #facc15;
            font-size: 2.6rem;
        }
        .hero p {
            font-size: 1.2rem;
            color: #cbd5e1;
            max-width: 800px;
        }
        .hero .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 1.2rem;
            font-size: 0.95rem;
            color: #94a3b8;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            background: #ffffff;
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            border: 1px solid #e9edf2;
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px solid #e11d48;
            padding-bottom: 0.4rem;
        }
        .sidebar ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .sidebar li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #f1f5f9;
        }
        .sidebar li:last-child {
            border-bottom: none;
        }
        .sidebar a {
            font-weight: 500;
        }
        .card {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #e9edf2;
            margin-bottom: 2rem;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }
        .card-icon {
            font-size: 2.2rem;
            color: #e11d48;
            margin-bottom: 0.6rem;
        }
        .match-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            margin: 1.2rem 0;
        }
        .match-table th {
            background: #1e293b;
            color: #fff;
            padding: 0.7rem 0.8rem;
            text-align: left;
            font-weight: 600;
        }
        .match-table td {
            padding: 0.7rem 0.8rem;
            border-bottom: 1px solid #e2e8f0;
        }
        .match-table tr:hover td {
            background: #f8fafc;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 0.9rem;
            border: 1px solid #d1d9e6;
            border-radius: 10px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.2s;
            background: #fff;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #e11d48;
            box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.12);
        }
        .btn {
            display: inline-block;
            padding: 0.7rem 1.8rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            background: #e11d48;
            color: #fff;
        }
        .btn:hover {
            background: #be123c;
            transform: scale(1.02);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #e11d48;
            color: #e11d48;
        }
        .btn-outline:hover {
            background: #e11d48;
            color: #fff;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #d1d9e6;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.2s;
            color: #d1d9e6;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #facc15;
        }
        .comment-item {
            padding: 1rem 0;
            border-bottom: 1px solid #e9edf2;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: 700;
            color: #0f172a;
        }
        .comment-date {
            font-size: 0.8rem;
            color: #64748b;
            margin-left: 0.8rem;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0;
            border-top: 1px solid #e2e8f0;
            margin-top: 1rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.6rem 0.3rem 0;
            padding: 0.3rem 1rem;
            background: #f1f5f9;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: 0.2s;
        }
        friend-link a:hover {
            background: #e11d48;
            color: #fff;
            text-decoration: none;
        }
        .site-footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 2rem 0;
            margin-top: 3rem;
            font-size: 0.9rem;
            border-radius: 40px 40px 0 0;
        }
        .site-footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem;
            align-items: center;
        }
        .site-footer a {
            color: #94a3b8;
        }
        .site-footer a:hover {
            color: #facc15;
        }
        .copyright {
            text-align: center;
            padding-top: 1.2rem;
            border-top: 1px solid #1e293b;
            margin-top: 1.2rem;
            color: #64748b;
            font-size: 0.85rem;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                margin-top: 1rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.4rem;
                padding: 1rem 0 0.4rem;
                border-top: 1px solid #334155;
                margin-top: 0.6rem;
            }
            .nav-toggle:checked~.nav-menu {
                display: flex;
            }
            .header-inner {
                align-items: center;
            }
            .hero {
                padding: 2rem 0 1.5rem;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .match-table {
                font-size: 0.8rem;
            }
            .match-table th,
            .match-table td {
                padding: 0.4rem 0.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.3rem;
            }
            .star-rating {
                font-size: 1.4rem;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
        }
        .text-accent {
            color: #e11d48;
        }
        .text-warning {
            color: #facc15;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .gap-1 {
            gap: 1rem;
        }
