        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #f0f2f5;
            color: #1a1a2e;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #0f4c81;
            text-decoration: none;
            transition: color 0.2s ease, border-color 0.2s ease;
        }
        a:hover {
            color: #e63946;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 1.8em;
            margin-bottom: 0.6em;
            color: #0d1b2a;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4em;
            border-bottom: 4px solid #e63946;
            padding-bottom: 0.3em;
            display: inline-block;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #0f4c81;
            padding-left: 0.7em;
        }
        h3 {
            font-size: 1.35rem;
            color: #1b3a5c;
        }
        h4 {
            font-size: 1.1rem;
            color: #2a4a6e;
        }
        p {
            margin-bottom: 1.2em;
            font-size: 1.05rem;
        }
        ul,
        ol {
            margin-bottom: 1.4em;
            padding-left: 1.8em;
        }
        li {
            margin-bottom: 0.5em;
        }
        strong {
            color: #0d1b2a;
        }
        blockquote {
            border-left: 5px solid #e63946;
            padding: 0.8em 1.2em;
            margin: 1.5em 0;
            background: #f8f9fa;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #2c3e50;
        }
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(90deg, #0f4c81, #e63946, transparent);
            margin: 2.5em 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0d1b2a 0%, #1b3a5c 100%);
            color: #fff;
            padding: 0.6rem 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: 10px 20px;
        }
        .my-logo {
            display: flex;
            flex-direction: column;
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        .my-logo .logo-sub {
            font-size: 0.7rem;
            font-weight: 400;
            color: #aaccff;
            letter-spacing: 0.5px;
        }
        .my-logo:hover {
            color: #f0c040;
            text-decoration: none;
        }
        .my-logo:hover .logo-sub {
            color: #ffe082;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px 16px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e0e8f0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #f0c040;
            text-decoration: none;
        }
        .main-nav a i {
            font-size: 0.9rem;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px 4px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #fff;
            border-radius: 4px;
            transition: transform 0.3s, opacity 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        .breadcrumb {
            background: #fff;
            padding: 12px 0;
            border-bottom: 1px solid #e0e0e0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            margin: 0;
            padding: 0;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "▸";
            color: #999;
            font-size: 0.8rem;
        }
        .breadcrumb a {
            color: #0f4c81;
        }
        .breadcrumb .current {
            color: #555;
            font-weight: 600;
        }
        main {
            flex: 1;
            padding: 30px 0 50px;
        }
        .section-card {
            background: #fff;
            border-radius: 16px;
            padding: 30px 28px;
            margin-bottom: 30px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
            transition: box-shadow 0.25s ease;
        }
        .section-card:hover {
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
        }
        .featured-image-wrapper {
            margin: 1.8em 0 2em;
            text-align: center;
        }
        .featured-image-wrapper img {
            max-width: 100%;
            max-height: 520px;
            object-fit: cover;
            border-radius: 16px;
        }
        .featured-image-wrapper figcaption {
            font-size: 0.85rem;
            color: #666;
            margin-top: 8px;
            font-style: italic;
        }
        .search-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin: 1.2em 0 0.5em;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border: 2px solid #d0d7de;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
            background: #f8f9fa;
        }
        .search-form input[type="text"]:focus {
            border-color: #0f4c81;
            box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.12);
            background: #fff;
        }
        .search-form button {
            padding: 12px 28px;
            background: #0f4c81;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #0a3a63;
            transform: scale(1.02);
        }
        .search-form button i {
            font-size: 0.9rem;
        }
        .rating-area {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px 24px;
            margin: 1.2em 0 0.6em;
        }
        .rating-stars {
            display: flex;
            flex-direction: row-reverse;
            gap: 4px;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #f5b342;
        }
        .rating-stars label:hover {
            transform: scale(1.2);
        }
        .rating-score-display {
            font-weight: 700;
            font-size: 1.2rem;
            color: #0d1b2a;
        }
        .rating-score-display span {
            color: #e63946;
        }
        .rating-form button {
            padding: 10px 22px;
            background: #e63946;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
        }
        .rating-form button:hover {
            background: #c1121f;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 100px;
            padding: 14px 18px;
            border: 2px solid #d0d7de;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
            background: #f8f9fa;
        }
        .comment-form textarea:focus {
            border-color: #0f4c81;
            box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.1);
            background: #fff;
        }
        .comment-form .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 10px;
            align-items: center;
        }
        .comment-form input[type="text"] {
            flex: 1;
            min-width: 160px;
            padding: 10px 16px;
            border: 2px solid #d0d7de;
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            background: #f8f9fa;
        }
        .comment-form input[type="text"]:focus {
            border-color: #0f4c81;
            background: #fff;
        }
        .comment-form button {
            padding: 10px 28px;
            background: #0f4c81;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover {
            background: #0a3a63;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 12px 16px;
            margin: 1.2em 0 0.8em;
        }
        .link-grid a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background: #f0f4f8;
            border-radius: 10px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: background 0.2s, transform 0.15s;
            border: 1px solid transparent;
        }
        .link-grid a:hover {
            background: #e2eaf1;
            transform: translateX(4px);
            text-decoration: none;
            border-color: #0f4c8122;
        }
        .link-grid a i {
            color: #0f4c81;
            font-size: 0.8rem;
        }
        .site-footer {
            background: #0d1b2a;
            color: #c8d6e5;
            padding: 40px 0 20px;
            margin-top: 30px;
            border-top: 4px solid #e63946;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px 40px;
        }
        .footer-inner h4 {
            color: #f0c040;
            margin-top: 0;
            font-size: 1.1rem;
        }
        friend-link {
            display: block;
            margin-top: 10px;
        }
        friend-link a {
            color: #aaccff;
            font-weight: 500;
        }
        friend-link a:hover {
            color: #f0c040;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #2a3a4e;
            font-size: 0.9rem;
            color: #8a9bb0;
        }
        .copyright strong {
            color: #d4e0f0;
        }
        @media (max-width: 820px) {
            .hamburger {
                display: flex;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 12px 0 6px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 10px 12px;
                border-radius: 8px;
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .section-card {
                padding: 20px 16px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .rating-area {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .section-card {
                padding: 16px 12px;
            }
            .search-form input[type="text"] {
                min-width: 120px;
            }
            .link-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 0;
            background: #e63946;
            color: #fff;
            padding: 8px 18px;
            z-index: 9999;
            font-weight: 700;
            border-radius: 0 0 8px 0;
        }
        .skip-link:focus {
            top: 0;
        }
        .emoji-big {
            font-size: 1.6rem;
            margin-right: 4px;
        }
        .tag {
            display: inline-block;
            background: #eef2f7;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #0f4c81;
        }
        .last-update {
            font-size: 0.9rem;
            color: #777;
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 1em;
        }
        .last-update i {
            color: #e63946;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2em 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        table th {
            background: #0d1b2a;
            color: #fff;
            padding: 10px 14px;
            text-align: left;
            font-weight: 600;
        }
        table td {
            padding: 9px 14px;
            border-bottom: 1px solid #e0e4e8;
        }
        table tr:nth-child(even) {
            background: #f8f9fb;
        }
        table tr:hover {
            background: #eef2f7;
        }
        @media print {
            .site-header,
            .breadcrumb,
            .search-form,
            .rating-form,
            .comment-form,
            .site-footer {
                display: none;
            }
            .section-card {
                box-shadow: none;
                border: 1px solid #ddd;
                break-inside: avoid;
            }
            body {
                background: #fff;
                color: #000;
            }
        }
