* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f4f7fb;
            color: #1a2634;
            line-height: 1.8;
            padding: 0 16px;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
            border-radius: 28px;
            padding: 24px 28px 40px;
            margin-top: 20px;
            margin-bottom: 40px;
        }
        a {
            color: #0d6e9e;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #064a6e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 18px;
            display: block;
            margin: 32px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 1.8em;
            color: #0b1a2a;
        }
        h1 {
            font-size: 2.6rem;
            margin-top: 0.4em;
            margin-bottom: 0.5em;
            border-left: 6px solid #f5a623;
            padding-left: 20px;
        }
        h2 {
            font-size: 2rem;
            margin-bottom: 0.6em;
            border-bottom: 3px solid #eef3f8;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.6rem;
            margin-bottom: 0.5em;
        }
        h4 {
            font-size: 1.3rem;
            margin-bottom: 0.4em;
        }
        p {
            margin-bottom: 1.4em;
            font-size: 1.08rem;
            color: #2c3e4f;
        }
        .header-top {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0 18px;
            border-bottom: 2px solid #e9edf2;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(145deg, #0b1a2a, #1d3b5a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: inline-block;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            background: none;
            border: none;
            color: #0b1a2a;
            padding: 6px 12px;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 24px;
            align-items: center;
            list-style: none;
        }
        .nav-menu li a {
            font-weight: 600;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s;
        }
        .nav-menu li a:hover {
            border-bottom-color: #f5a623;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 18px 0 10px;
            font-size: 0.95rem;
            color: #5f6f7e;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb a {
            color: #0d6e9e;
        }
        .breadcrumb span {
            color: #8a9aa8;
        }
        .search-box {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 30px 0 20px;
            background: #f0f4f9;
            padding: 18px 22px;
            border-radius: 50px;
            align-items: center;
        }
        .search-box input {
            flex: 1;
            min-width: 180px;
            padding: 14px 20px;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .search-box button {
            background: #0b1a2a;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: #1d3b5a;
        }
        .rating-area {
            background: #f8fafc;
            padding: 28px 30px;
            border-radius: 24px;
            margin: 40px 0 30px;
            border: 1px solid #e3eaf0;
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #d0d8e0;
            cursor: pointer;
            flex-wrap: wrap;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f5a623;
            transform: scale(1.12);
        }
        .rating-stars i.selected {
            color: #f5a623;
        }
        .comment-area {
            background: #f8fafc;
            padding: 28px 30px;
            border-radius: 24px;
            margin: 30px 0 40px;
            border: 1px solid #e3eaf0;
        }
        .comment-area textarea {
            width: 100%;
            padding: 16px 20px;
            border-radius: 18px;
            border: 1px solid #d5dfe8;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
            background: #fff;
            outline: none;
            transition: border 0.2s;
        }
        .comment-area textarea:focus {
            border-color: #0d6e9e;
        }
        .comment-area button {
            background: #0d6e9e;
            color: #fff;
            border: none;
            padding: 14px 36px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 14px;
            transition: background 0.25s;
        }
        .comment-area button:hover {
            background: #064a6e;
        }
        .friend-link {
            display: block;
            padding: 28px 0 18px;
            margin-top: 40px;
            border-top: 2px solid #e9edf2;
            font-size: 1rem;
        }
        .friend-link a {
            display: inline-block;
            margin: 6px 18px 6px 0;
            color: #0d6e9e;
            font-weight: 500;
        }
        .footer-bottom {
            padding: 28px 0 10px;
            text-align: center;
            color: #5f6f7e;
            font-size: 0.95rem;
            border-top: 1px solid #e9edf2;
            margin-top: 20px;
        }
        .update-badge {
            display: inline-block;
            background: #eef3f8;
            padding: 6px 20px;
            border-radius: 40px;
            font-size: 0.9rem;
            color: #2c3e4f;
            margin-bottom: 18px;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            background: #f4f8fc;
            padding: 16px 22px;
            border-radius: 20px;
            margin: 24px 0 30px;
            list-style: none;
        }
        .link-list-inline li a {
            font-weight: 500;
        }
        .section-highlight {
            background: #f9fcff;
            padding: 28px 30px;
            border-radius: 24px;
            border-left: 5px solid #f5a623;
            margin: 36px 0;
        }
        .emoji-big {
            font-size: 1.6rem;
            margin-right: 6px;
        }
        @media (max-width: 768px) {
            .wrapper {
                padding: 16px 14px 30px;
                border-radius: 18px;
            }
            h1 {
                font-size: 1.9rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .header-top {
                flex-wrap: nowrap;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 16px 0 8px;
                gap: 8px;
            }
            .nav-menu.open {
                display: flex;
            }
            .search-box {
                flex-direction: column;
                border-radius: 24px;
                padding: 16px;
            }
            .search-box button {
                width: 100%;
                justify-content: center;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.85rem;
            }
            .section-highlight {
                padding: 18px 16px;
            }
            .comment-area {
                padding: 18px 16px;
            }
            .rating-area {
                padding: 18px 16px;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.6rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            p {
                font-size: 1rem;
            }
            .wrapper {
                padding: 12px 10px 24px;
            }
        }
        .table-wrap {
            overflow-x: auto;
            margin: 28px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fafcfd;
            border-radius: 16px;
            overflow: hidden;
        }
        th,
        td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #e3eaf0;
        }
        th {
            background: #eef3f8;
            font-weight: 700;
            color: #0b1a2a;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .btn-submit {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .tagline {
            font-size: 1.1rem;
            color: #3d5366;
            margin-bottom: 24px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin: 32px 0;
        }
        .card {
            background: #fafcfd;
            border-radius: 20px;
            padding: 22px 24px;
            border: 1px solid #e3eaf0;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
        }
        .card i {
            font-size: 2rem;
            color: #f5a623;
            margin-bottom: 12px;
        }
        .card h4 {
            margin-top: 0.2em;
        }
        blockquote {
            background: #f0f5fa;
            padding: 20px 28px;
            border-radius: 20px;
            border-left: 6px solid #f5a623;
            margin: 28px 0;
            font-style: italic;
            color: #1d3b5a;
        }
        .fa-ul li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: #fef9ef;
            padding: 18px 24px;
            border-radius: 18px;
            border: 1px solid #f5e3c4;
            margin: 20px 0;
        }
