        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f4f7fb;
            color: #1e2a3a;
            line-height: 1.7;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #004d7a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #e67e22;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 1.8rem;
            margin-bottom: 0.75rem;
            color: #0b2a3b;
        }
        h1 {
            font-size: 2.2rem;
            border-left: 6px solid #e67e22;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.7rem;
            border-bottom: 2px solid #dce6ef;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.3rem;
        }
        h4 {
            font-size: 1.1rem;
            color: #2c3e50;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.4rem 1.8rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        strong {
            color: #003b5c;
        }
        header {
            background: #ffffff;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
            padding: 1.2rem 1.8rem;
            margin-bottom: 1.2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #004d7a, #e67e22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }
        .my-logo i {
            -webkit-text-fill-color: #e67e22;
            margin-right: 0.3rem;
        }
        .logo-sub {
            font-size: 0.75rem;
            color: #5f7d9c;
            display: block;
            margin-top: -2px;
            letter-spacing: 1px;
        }
        .logo-wrap {
            display: flex;
            flex-direction: column;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        nav a {
            padding: 0.5rem 1rem;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #1e2a3a;
            transition: background 0.25s, color 0.25s;
        }
        nav a:hover {
            background: #eef4fa;
            color: #004d7a;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #004d7a;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
        }
        .hamburger:hover {
            background: #eef4fa;
        }
        .breadcrumb {
            width: 100%;
            margin-top: 0.6rem;
            font-size: 0.85rem;
            color: #5f7d9c;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #004d7a;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #8aa0b8;
        }
        main {
            background: #ffffff;
            border-radius: 24px;
            padding: 2rem 2.2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            margin-bottom: 1.8rem;
        }
        .featured-figure {
            margin: 2rem 0 2.4rem;
            text-align: center;
        }
        .featured-figure img {
            width: 100%;
            max-width: 900px;
            border-radius: 18px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        .featured-figure figcaption {
            font-size: 0.9rem;
            color: #5f7d9c;
            margin-top: 0.5rem;
            font-style: italic;
        }
        .search-block {
            background: #f0f5fc;
            border-radius: 18px;
            padding: 1.8rem 2rem;
            margin: 2.4rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
        }
        .search-block label {
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #004d7a;
        }
        .search-block form {
            display: flex;
            flex: 1 1 280px;
            gap: 0.5rem;
        }
        .search-block input[type="text"] {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 2px solid #dce6ef;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
        }
        .search-block input[type="text"]:focus {
            border-color: #004d7a;
        }
        .search-block button {
            background: #004d7a;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-block button:hover {
            background: #e67e22;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.6rem 0 1.8rem;
        }
        .comment-box,
        .rating-box {
            background: #f8fafc;
            border-radius: 18px;
            padding: 1.6rem 1.8rem;
            border: 1px solid #e6edf4;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-box textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #dce6ef;
            border-radius: 12px;
            font-size: 1rem;
            resize: vertical;
            min-height: 90px;
            outline: none;
            transition: border 0.25s;
            font-family: inherit;
        }
        .comment-box textarea:focus {
            border-color: #004d7a;
        }
        .comment-box input[type="text"] {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #dce6ef;
            border-radius: 12px;
            font-size: 1rem;
            outline: none;
            margin: 0.5rem 0 0.8rem;
            transition: border 0.25s;
        }
        .comment-box input[type="text"]:focus {
            border-color: #004d7a;
        }
        .comment-box button,
        .rating-box button {
            background: #004d7a;
            color: #fff;
            border: none;
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .comment-box button:hover,
        .rating-box button:hover {
            background: #e67e22;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin: 0.8rem 0 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ccd8e6;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f1c40f;
        }
        .rating-box .score-value {
            font-weight: 700;
            font-size: 1.2rem;
            color: #004d7a;
        }
        .standings-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.6rem 0 2rem;
            font-size: 0.95rem;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
        }
        .standings-table thead {
            background: #004d7a;
            color: #fff;
        }
        .standings-table th {
            padding: 0.8rem 0.6rem;
            text-align: left;
            font-weight: 600;
        }
        .standings-table td {
            padding: 0.7rem 0.6rem;
            border-bottom: 1px solid #e6edf4;
        }
        .standings-table tbody tr:hover {
            background: #f4f9ff;
        }
        .standings-table .pos {
            font-weight: 700;
            color: #004d7a;
        }
        .standings-table .team-name {
            font-weight: 600;
        }
        .standings-table .pts {
            font-weight: 700;
            color: #e67e22;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1rem;
            padding: 0.6rem 0 0.2rem;
            list-style: none;
        }
        .link-list-inline li a {
            font-weight: 500;
            font-size: 0.95rem;
        }
        .link-list-inline li a i {
            margin-right: 0.3rem;
            font-size: 0.8rem;
            color: #e67e22;
        }
        footer {
            background: #0b2a3b;
            color: #dce6ef;
            border-radius: 24px 24px 0 0;
            padding: 2.2rem 2.2rem 1.8rem;
            margin-top: 0.8rem;
        }
        footer a {
            color: #b8d0e5;
        }
        footer a:hover {
            color: #e67e22;
        }
        friend-link {
            display: block;
            margin-bottom: 1.6rem;
            font-weight: 500;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.4rem;
            padding: 0.3rem 0;
        }
        .copyright {
            border-top: 1px solid #1f405a;
            padding-top: 1.4rem;
            font-size: 0.9rem;
            color: #8aa0b8;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 0.6rem;
        }
        @media (max-width: 820px) {
            body {
                padding: 0 0.6rem;
            }
            header {
                padding: 1rem 1.2rem;
            }
            main {
                padding: 1.4rem 1.2rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .search-block {
                padding: 1.4rem 1.2rem;
                flex-direction: column;
                align-items: stretch;
            }
            .search-block form {
                flex: 1 1 auto;
            }
            .standings-table {
                font-size: 0.8rem;
            }
            .standings-table th,
            .standings-table td {
                padding: 0.5rem 0.3rem;
            }
            footer {
                padding: 1.6rem 1.2rem 1.2rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            nav a {
                padding: 0.4rem 0.8rem;
                font-size: 0.8rem;
            }
        }
        @media (max-width: 640px) {
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #ffffff;
                padding: 0.8rem 0 0.4rem;
                border-top: 1px solid #e6edf4;
                margin-top: 0.8rem;
                gap: 0.1rem;
            }
            nav.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            header {
                flex-wrap: wrap;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .standings-table {
                font-size: 0.7rem;
            }
            .standings-table th,
            .standings-table td {
                padding: 0.35rem 0.2rem;
            }
            .star-rating label {
                font-size: 1.6rem;
            }
            .link-list-inline {
                flex-direction: column;
                gap: 0.2rem;
            }
        }
        @media (min-width: 641px) {
            nav {
                display: flex !important;
            }
            .hamburger {
                display: none !important;
            }
        }
        .highlight-card {
            background: #faf5ef;
            border-left: 5px solid #e67e22;
            padding: 1.2rem 1.6rem;
            border-radius: 14px;
            margin: 1.6rem 0;
        }
        .badge {
            display: inline-block;
            background: #e67e22;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.15rem 0.7rem;
            border-radius: 40px;
            letter-spacing: 0.5px;
        }
        .section-icon {
            margin-right: 0.4rem;
            color: #e67e22;
        }
        .interview-block {
            background: #edf3f9;
            border-radius: 16px;
            padding: 1.4rem 1.8rem;
            margin: 1.8rem 0;
        }
        .interview-block .quote {
            font-style: italic;
            font-size: 1.05rem;
            border-left: 4px solid #004d7a;
            padding-left: 1.2rem;
            margin: 0.6rem 0;
        }
        .stat-highlight {
            display: inline-block;
            background: #004d7a;
            color: #fff;
            padding: 0.1rem 0.6rem;
            border-radius: 6px;
            font-weight: 700;
            font-size: 0.9rem;
        }
