        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #f8f9fc;
            color: #1e2a3a;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #c94b2b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #a1351d;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #0f1a2e;
        }
        h1 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
            margin-bottom: 0.75rem;
            border-bottom: 3px solid #c94b2b;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 1.8rem;
            margin-bottom: 0.5rem;
        }
        h4 {
            font-size: 1.15rem;
            margin-top: 1.2rem;
            margin-bottom: 0.3rem;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        header {
            background: linear-gradient(135deg, #0b1a2e 0%, #1a2d44 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f7971e, #ffd200);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f7971e;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.4);
            color: #fff;
            font-size: 1.5rem;
            padding: 0.3rem 0.7rem;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .nav-toggle:hover {
            border-color: #f7971e;
            color: #f7971e;
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem 0.8rem;
            align-items: center;
        }
        nav a {
            color: #e0e8f0;
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            font-size: 0.95rem;
            transition: all 0.2s;
            white-space: nowrap;
        }
        nav a:hover {
            color: #fff;
            background: rgba(247, 151, 30, 0.2);
            text-decoration: none;
        }
        .breadcrumb {
            background: #eef2f7;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #dce3ed;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #c94b2b;
        }
        .breadcrumb span {
            color: #6a7a8e;
        }
        .breadcrumb .sep {
            color: #b0bcca;
        }
        .search-section {
            background: #fff;
            padding: 1.5rem 0;
            border-bottom: 1px solid #e2e8f0;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            max-width: 600px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1 1 200px;
            padding: 0.7rem 1rem;
            border: 2px solid #dce3ed;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.2s;
            outline: none;
        }
        .search-form input[type="text"]:focus {
            border-color: #c94b2b;
        }
        .search-form button {
            padding: 0.7rem 1.5rem;
            background: #c94b2b;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #a1351d;
        }
        main {
            padding: 2rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media(max-width:860px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body p,
        .article-body li {
            font-size: 1.05rem;
        }
        .article-body strong {
            color: #0f1a2e;
        }
        .article-body .highlight {
            background: #fff7e6;
            padding: 0.1rem 0.3rem;
            border-radius: 3px;
        }
        .info-box {
            background: #eef6ff;
            border-left: 5px solid #c94b2b;
            padding: 1.2rem 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }
        .info-box p:last-child {
            margin-bottom: 0;
        }
        .featured-image-wrap {
            margin: 2rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .featured-image-wrap img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-image-wrap figcaption {
            background: #f1f5f9;
            padding: 0.6rem 1rem;
            font-size: 0.9rem;
            color: #4a5a6e;
            text-align: center;
        }
        .player-quote {
            background: #f9f5f0;
            padding: 1.5rem 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            font-style: italic;
            position: relative;
        }
        .player-quote::before {
            content: '\201C';
            font-size: 3rem;
            color: #c94b2b;
            position: absolute;
            top: -0.2rem;
            left: 0.8rem;
            font-family: Georgia, serif;
            line-height: 1;
        }
        .player-quote .attribution {
            margin-top: 0.8rem;
            font-style: normal;
            font-weight: 600;
            color: #c94b2b;
        }
        .sidebar {
            background: #fff;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #e8edf4;
            height: fit-content;
            position: sticky;
            top: 5.5rem;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 1rem;
            border-bottom: 2px solid #c94b2b;
            padding-bottom: 0.4rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0 0 1.5rem;
        }
        .sidebar li {
            margin-bottom: 0.5rem;
        }
        .sidebar li a {
            display: block;
            padding: 0.4rem 0.6rem;
            background: #f5f7fb;
            border-radius: 6px;
            font-size: 0.95rem;
            transition: all 0.2s;
            border-left: 3px solid transparent;
        }
        .sidebar li a:hover {
            background: #f0e6e0;
            border-left-color: #c94b2b;
            text-decoration: none;
        }
        .rating-area,
        .comment-area {
            background: #fff;
            border-radius: 12px;
            padding: 1.5rem 2rem;
            margin: 2.5rem 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #e8edf4;
        }
        .rating-area h3,
        .comment-area h3 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.2s;
            color: #ddd;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
        }
        .rating-form button,
        .comment-form button {
            padding: 0.6rem 1.8rem;
            background: #c94b2b;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 1rem;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #a1351d;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #dce3ed;
            border-radius: 8px;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
            transition: border 0.2s;
        }
        .comment-form textarea:focus {
            border-color: #c94b2b;
            outline: none;
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 0.7rem;
            border: 2px solid #dce3ed;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.2s;
        }
        .comment-form input[type="text"]:focus {
            border-color: #c94b2b;
            outline: none;
        }
        .comment-form .form-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }
        .comment-form .form-row>* {
            flex: 1 1 200px;
        }
        footer {
            background: #0b1a2e;
            color: #c8d4e0;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        @media(max-width:700px) {
            footer .container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        footer h4 {
            color: #fff;
            margin-top: 0;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
            border-bottom: 2px solid #c94b2b;
            padding-bottom: 0.3rem;
            display: inline-block;
        }
        footer a {
            color: #c8d4e0;
        }
        footer a:hover {
            color: #f7971e;
        }
        friend-link {
            display: block;
            margin: 0.8rem 0;
        }
        friend-link a {
            display: inline-block;
            padding: 0.25rem 0.5rem;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 4px;
            margin: 0.2rem 0.2rem 0.2rem 0;
            font-size: 0.95rem;
        }
        friend-link a:hover {
            background: rgba(247, 151, 30, 0.15);
        }
        .copyright {
            grid-column: 1/-1;
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.9rem;
            color: #8a9aaa;
        }
        .copyright strong {
            color: #e0e8f0;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #6a7a8e;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }
        .last-updated i {
            color: #c94b2b;
        }
        @media(max-width:700px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 0.8rem;
                gap: 0.3rem;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 0.5rem 0.8rem;
                border-radius: 4px;
                border-left: 3px solid transparent;
            }
            nav a:hover {
                border-left-color: #f7971e;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .sidebar {
                position: static;
                margin-top: 2rem;
            }
            .rating-area,
            .comment-area {
                padding: 1rem 1.2rem;
            }
            .star-rating {
                font-size: 1.6rem;
                justify-content: center;
            }
        }
        @media(max-width:480px) {
            .container {
                padding: 0 0.8rem;
            }
            .search-form button span {
                display: none;
            }
            .breadcrumb .container {
                font-size: 0.75rem;
            }
        }
        .text-muted {
            color: #6a7a8e;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .btn-secondary {
            background: transparent;
            border: 2px solid #c94b2b;
            color: #c94b2b;
            padding: 0.5rem 1.2rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-secondary:hover {
            background: #c94b2b;
            color: #fff;
        }
