        *,
        *::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, sans-serif;
            background: #f5f7fc;
            color: #1a1d29;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #004d99;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #cc0000;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #0b1a2e;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #cc0000;
            padding-left: 1.2rem;
            margin-top: 0.8rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #cc0000;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #1f3a5f;
        }
        h4 {
            font-size: 1.15rem;
            color: #2c4a6e;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 20px;
            padding: 1.2rem 1.8rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 0.6rem 0 1rem 0;
            border-bottom: 1px solid #e0e5ed;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #003366, #cc0000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #cc0000;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.2rem 1.2rem;
        }
        .main-nav a {
            font-weight: 500;
            padding: 0.3rem 0.2rem;
            font-size: 0.95rem;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            border-bottom-color: #cc0000;
            color: #cc0000;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: #1a1d29;
            padding: 0.2rem 0.6rem;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.6rem 0 0.2rem 0;
            font-size: 0.9rem;
            color: #5a6270;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.6rem;
            color: #9aa3b0;
        }
        .breadcrumb a {
            color: #004d99;
        }
        .breadcrumb a:hover {
            color: #cc0000;
        }
        .hero {
            background: linear-gradient(145deg, #eef3fa, #dce3ef);
            border-radius: 18px;
            padding: 2rem 2.2rem;
            margin: 1.2rem 0 2rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
        }
        .hero-text {
            flex: 2;
            min-width: 260px;
        }
        .hero-text h1 {
            border-left-color: #cc0000;
            margin-top: 0;
        }
        .hero-text p {
            font-size: 1.1rem;
            max-width: 650px;
        }
        .hero-img {
            flex: 1;
            min-width: 200px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin: 1.6rem 0 2.2rem 0;
            background: #f0f4fa;
            padding: 1.2rem 1.6rem;
            border-radius: 14px;
            align-items: center;
        }
        .search-form label {
            font-weight: 600;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            border: 1px solid #cbd5e1;
            border-radius: 30px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #004d99;
        }
        .search-form button {
            background: #004d99;
            color: white;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #003366;
            transform: scale(1.02);
        }
        section {
            margin-bottom: 3rem;
        }
        .section-inner {
            padding: 0.4rem 0;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 0.8rem 1.2rem;
            list-style: none;
            padding: 0;
            margin: 1rem 0 1.6rem 0;
        }
        .link-grid li a {
            display: block;
            background: #f8faff;
            border-left: 4px solid #004d99;
            padding: 0.6rem 1rem;
            border-radius: 8px;
            font-weight: 500;
            transition: background 0.2s, border-color 0.2s;
        }
        .link-grid li a:hover {
            background: #e6edf8;
            border-left-color: #cc0000;
            text-decoration: none;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
            border-radius: 12px;
            border: 1px solid #e0e5ed;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e8ecf3;
        }
        th {
            background: #002b4f;
            color: white;
            font-weight: 600;
            white-space: nowrap;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f0f6ff;
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin-top: 1.6rem;
        }
        .interact-card {
            background: #f9fbfe;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 1.4rem 1.6rem;
        }
        .interact-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .interact-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.6rem;
        }
        .interact-card input,
        .interact-card textarea,
        .interact-card select {
            padding: 0.65rem 1rem;
            border: 1px solid #cbd5e1;
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            font-family: inherit;
            transition: border 0.2s;
        }
        .interact-card textarea {
            border-radius: 16px;
            min-height: 80px;
            resize: vertical;
        }
        .interact-card input:focus,
        .interact-card textarea:focus,
        .interact-card select:focus {
            border-color: #004d99;
        }
        .interact-card button {
            align-self: flex-start;
            background: #cc0000;
            color: white;
            border: none;
            padding: 0.6rem 1.8rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .interact-card button:hover {
            background: #990000;
            transform: scale(1.02);
        }
        .star-select {
            display: flex;
            gap: 0.4rem;
            font-size: 1.6rem;
            color: #f5b342;
            cursor: pointer;
        }
        .star-select i {
            transition: transform 0.15s, color 0.15s;
        }
        .star-select i:hover {
            transform: scale(1.2);
            color: #e09d00;
        }
        .site-footer {
            border-top: 2px solid #e0e5ed;
            padding: 2rem 0 1.2rem 0;
            margin-top: 2.6rem;
        }
        friend-link {
            display: block;
            background: #f0f4fa;
            border-radius: 14px;
            padding: 1.2rem 1.6rem;
            margin-bottom: 1.8rem;
            font-style: normal;
        }
        friend-link::before {
            content: "🌐 Friend Links";
            display: block;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.6rem;
            color: #0b1a2e;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1.2rem 0.2rem 0;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            font-size: 0.9rem;
            color: #5a6270;
            padding-top: 0.8rem;
            border-top: 1px solid #e0e5ed;
        }
        .copyright strong {
            color: #1a1d29;
        }
        @media (max-width: 820px) {
            .container {
                padding: 1rem 1rem;
            }
            h1 {
                font-size: 1.8rem;
                padding-left: 0.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .hero {
                padding: 1.4rem 1.2rem;
                flex-direction: column;
            }
            .hero-text h1 {
                font-size: 1.6rem;
            }
            .interact-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #ffffff;
                padding: 1rem 0 0.6rem 0;
                gap: 0.6rem;
                border-top: 1px solid #e0e5ed;
                margin-top: 0.6rem;
            }
            .main-nav a {
                font-size: 1.05rem;
                padding: 0.4rem 0;
            }
            .hamburger {
                display: inline-block;
            }
            #nav-toggle:checked+.hamburger+.main-nav {
                display: flex;
            }
            .search-form {
                flex-direction: column;
                align-items: stretch;
            }
            .search-form input[type="text"] {
                min-width: auto;
            }
            .link-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.4rem;
            }
            .container {
                padding: 0.6rem 0.8rem;
                border-radius: 12px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .link-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .hero {
                padding: 1rem 0.8rem;
                gap: 1rem;
            }
            .hero-text p {
                font-size: 1rem;
            }
            .interact-card {
                padding: 1rem;
            }
            .star-select {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
        }
        .badge {
            display: inline-block;
            background: #cc0000;
            color: white;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.15rem 0.7rem;
            border-radius: 30px;
            letter-spacing: 0.5px;
        }
        .highlight-box {
            background: #fcf4e8;
            border-left: 5px solid #f5b342;
            padding: 1rem 1.4rem;
            border-radius: 10px;
            margin: 1.2rem 0;
        }
        .data-card {
            background: #f5faff;
            border-radius: 14px;
            padding: 1.2rem 1.6rem;
            border: 1px solid #dce6f2;
            margin: 1rem 0;
        }
        .flex-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2.4rem;
            justify-content: space-around;
            text-align: center;
        }
        .flex-stats .stat {
            font-size: 1.8rem;
            font-weight: 800;
            color: #003366;
        }
        .flex-stats .stat-label {
            font-size: 0.9rem;
            color: #5a6270;
        }
        .updated {
            font-size: 0.85rem;
            color: #6b7585;
            text-align: right;
            border-top: 1px dashed #d0d8e3;
            padding-top: 0.6rem;
            margin-top: 1.6rem;
        }
        .player-quote {
            font-style: italic;
            background: #eef3fa;
            padding: 1rem 1.6rem;
            border-radius: 12px;
            position: relative;
            margin: 1rem 0;
        }
        .player-quote::before {
            content: "“";
            font-size: 2.4rem;
            color: #cc0000;
            position: absolute;
            left: 0.6rem;
            top: -0.2rem;
        }
        .player-quote footer {
            font-style: normal;
            font-weight: 600;
            margin-top: 0.4rem;
            color: #1f3a5f;
        }
