* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f4f7fb;
            color: #1a1a2e;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #1e3c72;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover {
            color: #e94560;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #0f1b2d 0%, #1a2a4a 100%);
            padding: 16px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: #fff;
            letter-spacing: -0.5px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f5af19, #f12711);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.3s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.03);
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            color: #e0e8f0;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.25s;
            display: block;
        }
        .nav-list li a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #f5af19;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
        }
        .nav-mobile {
            display: none;
            width: 100%;
            background: #0f1b2d;
            margin-top: 12px;
            border-radius: 16px;
            padding: 16px 8px;
        }
        .nav-mobile.open {
            display: block;
        }
        .nav-mobile ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .nav-mobile ul li a {
            color: #e0e8f0;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 500;
            display: block;
        }
        .nav-mobile ul li a:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #f5af19;
            text-decoration: none;
        }
        .breadcrumb {
            background: #e9edf4;
            padding: 12px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #d0d8e4;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 12px;
            color: #6c7a8d;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #1e3c72;
        }
        .breadcrumb .current {
            color: #6c7a8d;
            font-weight: 500;
        }
        main {
            padding: 30px 0 50px;
        }
        h1 {
            font-size: 2.5rem;
            font-weight: 900;
            color: #0f1b2d;
            margin-bottom: 12px;
            line-height: 1.2;
            border-left: 6px solid #e94560;
            padding-left: 20px;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a2a4a;
            margin-top: 48px;
            margin-bottom: 16px;
            border-bottom: 3px solid #e94560;
            padding-bottom: 8px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1e3c72;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #2c3e6b;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
            color: #2d3748;
        }
        .last-updated {
            display: inline-block;
            background: #e9edf4;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #555;
            margin-bottom: 20px;
        }
        .featured-image {
            margin: 28px 0 32px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .highlight-box {
            background: linear-gradient(135deg, #eef3f9, #dfe8f2);
            border-left: 6px solid #e94560;
            padding: 24px 28px;
            border-radius: 16px;
            margin: 28px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .search-section {
            background: #e9edf4;
            padding: 30px 28px;
            border-radius: 20px;
            margin: 40px 0;
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            max-width: 640px;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 14px 20px;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }
        .search-section button {
            padding: 14px 32px;
            border: none;
            border-radius: 40px;
            background: #1e3c72;
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-section button:hover {
            background: #e94560;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0;
        }
        .comment-section,
        .rating-section {
            background: #fff;
            padding: 28px 30px;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-section form,
        .rating-section form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 14px;
        }
        .comment-section textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #dce3ed;
            border-radius: 14px;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
            background: #fafcff;
        }
        .comment-section input[type="text"],
        .rating-select {
            width: 100%;
            padding: 12px 18px;
            border: 2px solid #dce3ed;
            border-radius: 14px;
            font-size: 0.95rem;
            background: #fafcff;
        }
        .comment-section button,
        .rating-section button {
            padding: 12px 28px;
            border: none;
            border-radius: 40px;
            background: #1e3c72;
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s;
            align-self: flex-start;
        }
        .comment-section button:hover,
        .rating-section button:hover {
            background: #e94560;
        }
        .rating-select {
            max-width: 200px;
        }
        .links-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 12px;
            margin: 24px 0 32px;
            background: #f0f4fa;
            padding: 20px 24px;
            border-radius: 18px;
        }
        .links-list a {
            display: block;
            padding: 8px 12px;
            border-radius: 10px;
            background: #fff;
            font-weight: 500;
            border-left: 4px solid #e94560;
            transition: all 0.2s;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
        }
        .links-list a:hover {
            background: #1e3c72;
            color: #fff;
            text-decoration: none;
            transform: translateX(4px);
            border-left-color: #f5af19;
        }
        .site-footer {
            background: #0f1b2d;
            color: #c8d4e3;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        .footer-inner h4 {
            color: #f5af19;
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 2px solid #2a3f5a;
            padding-bottom: 8px;
            margin-bottom: 16px;
        }
        .footer-inner a {
            color: #a0b8d0;
        }
        .footer-inner a:hover {
            color: #f5af19;
        }
        .friend-link {
            display: block;
            margin-top: 20px;
        }
        .friend-link a {
            display: inline-block;
            padding: 6px 14px;
            background: #1a2a4a;
            border-radius: 20px;
            margin: 4px 6px 4px 0;
            font-size: 0.85rem;
            color: #c8d4e3;
        }
        .friend-link a:hover {
            background: #e94560;
            color: #fff;
            text-decoration: none;
        }
        .copyright {
            border-top: 1px solid #1e3050;
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            font-size: 0.85rem;
            color: #7a8aa0;
        }
        .copyright strong {
            color: #c8d4e3;
        }
        @media (max-width: 820px) {
            .nav-list {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            h1 {
                font-size: 1.8rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .links-list {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .header-inner {
                flex-wrap: nowrap;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section button {
                width: 100%;
                justify-content: center;
            }
            .comment-section button,
            .rating-section button {
                width: 100%;
                text-align: center;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .content-section {
            max-width: 1000px;
        }
        .emoji-big {
            font-size: 1.4em;
        }
        .badge {
            background: #e94560;
            color: #fff;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-block;
        }
