        *,
        *::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: #f4f7fa;
            color: #1e2a3a;
            line-height: 1.75;
            padding: 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #7c3aed;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.75rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .wrapper {
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
            padding: 1.5rem 2rem 2rem;
            margin-top: 1rem;
        }
        @media (max-width: 600px) {
            body {
                padding: 0.5rem;
            }
            .wrapper {
                padding: 1rem 1.25rem 1.5rem;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 1rem;
            border-bottom: 2px solid #e9edf2;
            margin-bottom: 0.75rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #1e3a5f, #b45309);
            -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: #b45309;
            font-size: 2rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: #1e3a5f;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #e9edf2;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.25rem 1.2rem;
            list-style: none;
            padding: 0;
            margin: 0.5rem 0 0;
            align-items: center;
        }
        .nav-links li a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.3rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
            color: #1e3a5f;
        }
        .nav-links li a:hover {
            background: #f0f2f5;
            color: #b45309;
            text-decoration: none;
        }
        .nav-links li a i {
            margin-right: 0.3rem;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.5rem 0 0.75rem;
            font-size: 0.85rem;
            color: #5a6a7a;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 0.6rem;
            color: #b45309;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #1e3a5f;
        }
        .breadcrumb a:hover {
            color: #b45309;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: inline-block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0 0.5rem;
                border-top: 1px solid #e9edf2;
                margin-top: 0.75rem;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links li a {
                display: block;
                padding: 0.6rem 0.8rem;
                border-radius: 8px;
            }
        }
        h1 {
            font-size: 2.4rem;
            line-height: 1.2;
            margin: 1.2rem 0 0.6rem;
            color: #1e3a5f;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.4rem 0 0.8rem;
            padding-bottom: 0.3rem;
            border-bottom: 3px solid #e9edf2;
            color: #1e3a5f;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.8rem 0 0.6rem;
            color: #2c3e50;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.4rem;
            color: #34495e;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #5a6a7a;
            background: #f0f2f5;
            display: inline-block;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            margin-bottom: 1.2rem;
        }
        .last-updated i {
            margin-right: 0.3rem;
        }
        .hero-figure {
            margin: 1.5rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            background: #e9edf2;
            position: relative;
        }
        .hero-figure img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
        }
        .hero-figure figcaption {
            padding: 0.6rem 1rem;
            background: rgba(30, 58, 95, 0.08);
            font-size: 0.9rem;
            color: #2c3e50;
            font-style: italic;
        }
        .insight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .insight-card {
            background: #f9fafc;
            border-radius: 16px;
            padding: 1.5rem 1.2rem;
            border-left: 4px solid #b45309;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .insight-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        .insight-card i {
            font-size: 2rem;
            color: #b45309;
            margin-bottom: 0.6rem;
        }
        .insight-card h4 {
            margin-top: 0;
        }
        .player-quote {
            background: #f0f4fa;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border-left: 6px solid #b45309;
            font-style: italic;
            font-size: 1.1rem;
            position: relative;
        }
        .player-quote::before {
            content: "\201C";
            font-size: 4rem;
            color: #b45309;
            opacity: 0.25;
            position: absolute;
            top: 0.2rem;
            left: 0.8rem;
            line-height: 1;
        }
        .player-quote cite {
            display: block;
            margin-top: 0.8rem;
            font-style: normal;
            font-weight: 600;
            color: #1e3a5f;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
            background: #fafbfc;
            border-radius: 12px;
            overflow: hidden;
        }
        .data-table th {
            background: #1e3a5f;
            color: #fff;
            padding: 0.8rem 1rem;
            text-align: left;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #e9edf2;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f0f2f5;
        }
        .form-section {
            background: #f9fafc;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin: 2.5rem 0;
            border: 1px solid #e9edf2;
        }
        .form-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            font-weight: 600;
            display: block;
            margin-bottom: 0.3rem;
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #d0d7de;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background: #fff;
            transition: border 0.2s, box-shadow 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #b45309;
            box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #1e3a5f;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background: #b45309;
            transform: scale(1.01);
            text-decoration: none;
        }
        .btn-secondary {
            background: #e9edf2;
            color: #1e3a5f;
        }
        .btn-secondary:hover {
            background: #d0d7de;
            color: #1e3a5f;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 1.8rem;
            color: #d0d7de;
            cursor: pointer;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.15s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f59e0b;
        }
        friend-link {
            display: block;
            padding: 1.5rem 0 0.5rem;
            border-top: 2px solid #e9edf2;
            margin-top: 2.5rem;
            font-weight: 600;
            color: #1e3a5f;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1.2rem 0.3rem 0;
            font-weight: 500;
        }
        .site-footer {
            margin-top: 2rem;
            padding-top: 1.2rem;
            border-top: 1px solid #e9edf2;
            font-size: 0.9rem;
            color: #5a6a7a;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .site-footer .copyright {
            font-weight: 500;
        }
        .text-muted {
            color: #5a6a7a;
        }
        .flex-between {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .gap-1 {
            gap: 0.5rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .emoji-big {
            font-size: 1.6rem;
            vertical-align: middle;
        }
        @media (max-width: 600px) {
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .form-section {
                padding: 1.2rem;
            }
            .player-quote {
                padding: 1.2rem 1.2rem;
            }
            .insight-grid {
                grid-template-columns: 1fr;
            }
        }
        :target {
            scroll-margin-top: 1.5rem;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 1.2rem;
            list-style: none;
            padding: 0;
            margin: 0.5rem 0 1rem;
        }
        .link-list-inline li a {
            background: #f0f2f5;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
        }
        .link-list-inline li a:hover {
            background: #e9edf2;
            text-decoration: none;
        }
