* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #f4f7fc;
            color: #1e2a3a;
            line-height: 1.7;
        }
        a {
            color: #0066cc;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 16px;
        }
        .header {
            background: linear-gradient(135deg, #0a1f44 0%, #1b3a6b 100%);
            padding: 16px 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 999;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -0.5px;
            font-style: italic;
            text-decoration: none;
            line-height: 1.2;
            display: inline-block;
        }
        .my-logo span {
            color: #ffb347;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #fff;
        }
        .search-box {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 40px;
            padding: 4px 4px 4px 16px;
            flex: 0 1 380px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .search-box input {
            background: transparent;
            border: none;
            outline: none;
            color: #fff;
            font-size: 15px;
            padding: 8px 0;
            width: 100%;
        }
        .search-box input::placeholder {
            color: #ccd6e8;
        }
        .search-box button {
            background: #ffb347;
            border: none;
            color: #0a1f44;
            border-radius: 40px;
            padding: 7px 18px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
        }
        .search-box button:hover {
            background: #ffc76a;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .burger {
            display: none;
            background: transparent;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            padding: 4px 8px;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 4px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu li a {
            color: #dce6f5;
            padding: 8px 16px;
            display: block;
            font-weight: 600;
            border-radius: 20px;
            font-size: 14.5px;
            transition: all 0.25s;
        }
        .nav-menu li a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #ffb347;
            text-decoration: none;
        }
        .nav-menu li a i {
            font-size: 14px;
        }
        .breadcrumb {
            background: #e9eef5;
            font-size: 14px;
            border-bottom: 1px solid #d9e0eb;
            padding: 10px 0;
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: #2a5c8a;
            font-weight: 500;
        }
        .breadcrumb span {
            color: #7b8ca4;
        }
        .breadcrumb .current {
            color: #1e2a3a;
            font-weight: 600;
        }
        .main-wrap {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 32px;
            margin: 32px 0;
            align-items: start;
        }
        article {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
            padding: 32px 36px;
        }
        .hero-img {
            border-radius: 14px;
            width: 100%;
            max-height: 420px;
            object-fit: cover;
            margin-bottom: 20px;
        }
        .updated-box {
            font-size: 14px;
            color: #4e5c6e;
            background: #f0f4f8;
            border-radius: 30px;
            padding: 8px 20px;
            display: inline-block;
            margin-bottom: 20px;
            font-weight: 500;
        }
        h1 {
            font-size: 2.3rem;
            line-height: 1.2;
            margin: 12px 0 16px;
            color: #0a1f44;
            font-weight: 800;
        }
        h2 {
            font-size: 1.7rem;
            color: #0a1f44;
            margin: 40px 0 16px;
            border-left: 4px solid #ffb347;
            padding-left: 16px;
            font-weight: 700;
        }
        h3 {
            font-size: 1.25rem;
            color: #16335a;
            margin: 24px 0 10px;
            font-weight: 700;
        }
        h4 {
            font-size: 1.05rem;
            color: #29507c;
            margin: 18px 0 8px;
            font-weight: 600;
        }
        p {
            margin-bottom: 16px;
            font-size: 16.5px;
            color: #2c3e50;
        }
        .highlight-box {
            background: #f0e8d9;
            border-radius: 10px;
            padding: 18px 22px;
            border-left: 4px solid #ffb347;
            margin: 24px 0;
            font-weight: 500;
        }
        .tip {
            background: #e4f1e8;
            border-radius: 10px;
            padding: 16px 20px;
            border-left: 4px solid #28a745;
            margin: 20px 0;
        }
        .warning {
            background: #fdeaea;
            border-radius: 10px;
            padding: 16px 20px;
            border-left: 4px solid #dc3545;
            margin: 20px 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        .stat-card {
            background: #f7fafd;
            border-radius: 14px;
            padding: 22px;
            text-align: center;
            border: 1px solid #e3eaf2;
        }
        .stat-card i {
            font-size: 32px;
            color: #ffb347;
            margin-bottom: 8px;
        }
        .stat-card .num {
            font-size: 1.9rem;
            font-weight: 800;
            color: #0a1f44;
        }
        .stat-card .label {
            color: #5b6b7f;
            font-size: 14px;
        }
        .player-quote {
            background: #f7f4fb;
            border-radius: 14px;
            padding: 24px;
            margin: 26px 0;
            border: 1px solid #ddd6eb;
            position: relative;
        }
        .player-quote .quote-txt {
            font-style: italic;
            font-size: 17px;
            margin-bottom: 10px;
        }
        .player-quote .player-name {
            font-weight: 700;
            color: #5a31a8;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 15px;
            background: #fafcff;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 16px;
            border: 1px solid #dfe6ef;
            text-align: left;
        }
        th {
            background: #0a1f44;
            color: #fff;
            font-weight: 600;
        }
        td {
            color: #2c3e50;
        }
        blockquote {
            background: #eef5ff;
            border-left: 5px solid #0066cc;
            margin: 20px 0;
            padding: 18px 24px;
            border-radius: 8px;
            font-style: italic;
            color: #16333f;
        }
        .friend-links-wrap {
            background: #f4f7fc;
            border-radius: 14px;
            padding: 18px 20px;
            margin: 30px 0;
        }
        .comment-form,
        .rating-form {
            background: #f7fafd;
            border: 1px solid #e0e9f2;
            border-radius: 14px;
            padding: 22px 26px;
            margin: 24px 0;
        }
        .comment-form h3,
        .rating-form h3 {
            margin-bottom: 14px;
        }
        .comment-form input,
        .comment-form textarea,
        .rating-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 12px;
            border: 1px solid #ccd6e4;
            border-radius: 8px;
            font-size: 15px;
            font-family: inherit;
        }
        .btn-submit {
            background: #0066cc;
            border: none;
            color: #fff;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
        }
        .btn-submit:hover {
            background: #0052a3;
        }
        .sidebar {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
            position: sticky;
            top: 90px;
        }
        .sidebar h3 {
            font-size: 1.1rem;
            border-bottom: 2px solid #f1f4f8;
            padding-bottom: 10px;
            margin-bottom: 14px;
            color: #0a1f44;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 10px;
        }
        .sidebar li a {
            color: #2a5c8a;
            font-weight: 500;
            display: block;
            padding: 4px 0;
            border-bottom: 1px dashed #eaeef5;
        }
        .sidebar li a:hover {
            color: #ff8c00;
            text-decoration: none;
        }
        .footer {
            background: #0d1f3c;
            color: #b0c2d9;
            padding: 32px 0;
            margin-top: 40px;
        }
        .footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 24px;
        }
        .footer a {
            color: #ffb347;
        }
        .copyright {
            text-align: center;
            padding-top: 18px;
            font-size: 14px;
            border-top: 1px solid #1e3454;
            margin-top: 20px;
            color: #7488a3;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 10px;
            padding: 16px;
            margin-top: 10px;
            font-size: 14px;
        }
        friend-link a {
            color: #ffb347;
            text-decoration: underline;
        }
        .rating-stars {
            font-size: 28px;
            color: #ffc107;
            margin-bottom: 10px;
            letter-spacing: 6px;
        }
        .score-info {
            font-size: 14px;
            color: #5b6b7f;
        }
        @media (max-width: 992px) {
            .main-wrap {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                margin-top: 20px;
            }
            .header-inner {
                flex-wrap: wrap;
            }
        }
        @media (max-width: 768px) {
            .burger {
                display: block;
            }
            .nav-wrap {
                display: none;
                width: 100%;
                flex-direction: column;
            }
            .nav-wrap.show {
                display: flex;
            }
            .nav-menu {
                flex-direction: column;
                width: 100%;
                gap: 8px;
                padding: 10px 0;
            }
            .nav-menu li a {
                padding: 12px 16px;
                background: rgba(255, 255, 255, 0.05);
                border-radius: 12px;
            }
            .search-box {
                flex: 1 1 100%;
                margin-top: 10px;
            }
            .header-inner {
                align-items: flex-start;
            }
            article {
                padding: 20px 18px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            .logo-area {
                justify-content: space-between;
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .main-wrap {
                margin: 20px 0;
            }
        }
