* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f4f7fc;
            color: #1a2a3a;
            line-height: 1.7;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
            border-radius: 20px;
            overflow: hidden;
            margin-top: 20px;
            margin-bottom: 20px;
        }
        header {
            background: linear-gradient(135deg, #0a1628, #1a2a5e);
            padding: 20px 30px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            border-bottom: 4px solid #f0b429;
            position: relative;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, #f0b429, #f7d674);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            padding: 4px 0;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #fff;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px 12px;
            border-radius: 8px;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
            align-items: center;
        }
        nav a {
            color: #e0e8f0;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 8px;
            transition: 0.25s;
        }
        nav a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #f0b429;
        }
        .breadcrumb {
            background: #f8faff;
            padding: 12px 30px;
            font-size: 0.85rem;
            color: #4a5a6a;
            border-bottom: 1px solid #e8edf4;
        }
        .breadcrumb a {
            color: #1a2a5e;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #8a9aaa;
        }
        main {
            padding: 30px 30px 40px;
        }
        h1 {
            font-size: 2.4rem;
            color: #0a1628;
            margin-bottom: 10px;
            line-height: 1.2;
            border-left: 6px solid #f0b429;
            padding-left: 20px;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #7a8a9a;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .last-updated i {
            color: #f0b429;
        }
        .featured-img {
            width: 100%;
            border-radius: 16px;
            margin: 20px 0 30px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }
        .featured-img img {
            width: 100%;
            height: auto;
            border-radius: 16px;
            display: block;
        }
        h2 {
            font-size: 1.8rem;
            color: #0a1628;
            margin: 40px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #f0b429;
        }
        h3 {
            font-size: 1.35rem;
            color: #1a2a5e;
            margin: 28px 0 12px;
        }
        h4 {
            font-size: 1.1rem;
            color: #2a3a5e;
            margin: 20px 0 10px;
            font-weight: 600;
        }
        p {
            margin-bottom: 16px;
            color: #2a3a4a;
            font-size: 1rem;
        }
        ul,
        ol {
            margin: 12px 0 20px 24px;
            color: #2a3a4a;
        }
        li {
            margin-bottom: 6px;
        }
        strong {
            color: #0a1628;
        }
        .highlight-box {
            background: #f0f6ff;
            border-left: 5px solid #f0b429;
            padding: 18px 22px;
            border-radius: 12px;
            margin: 24px 0;
        }
        .highlight-box i {
            color: #f0b429;
            margin-right: 8px;
        }
        .emoji-big {
            font-size: 1.3rem;
            margin-right: 4px;
        }
        .inline-link {
            color: #1a2a5e;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px solid #f0b429;
            transition: 0.2s;
        }
        .inline-link:hover {
            background: #f0b42920;
        }
        .search-section {
            background: #f8faff;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 30px 0;
            border: 1px solid #e8edf4;
        }
        .search-section h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 12px 18px;
            border: 2px solid #d0d8e0;
            border-radius: 10px;
            font-size: 1rem;
            outline: none;
            transition: 0.25s;
        }
        .search-form input:focus {
            border-color: #f0b429;
            box-shadow: 0 0 0 3px #f0b42930;
        }
        .search-form button {
            padding: 12px 28px;
            background: #1a2a5e;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.25s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #0a1628;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 30px 0;
        }
        .comment-section,
        .rating-section {
            background: #f8faff;
            border-radius: 16px;
            padding: 24px 28px;
            border: 1px solid #e8edf4;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
        }
        .comment-form textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #d0d8e0;
            border-radius: 10px;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 90px;
            outline: none;
            font-family: inherit;
            transition: 0.25s;
        }
        .comment-form textarea:focus {
            border-color: #f0b429;
            box-shadow: 0 0 0 3px #f0b42930;
        }
        .comment-form input {
            width: 100%;
            padding: 10px 16px;
            border: 2px solid #d0d8e0;
            border-radius: 10px;
            font-size: 0.95rem;
            outline: none;
            margin-top: 10px;
            transition: 0.25s;
        }
        .comment-form input:focus {
            border-color: #f0b429;
            box-shadow: 0 0 0 3px #f0b42930;
        }
        .comment-form button,
        .rating-form button {
            margin-top: 12px;
            padding: 10px 24px;
            background: #1a2a5e;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #0a1628;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin: 12px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #d0d8e0;
            cursor: pointer;
            transition: 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0b429;
        }
        .rating-form select {
            padding: 10px 16px;
            border: 2px solid #d0d8e0;
            border-radius: 10px;
            font-size: 0.95rem;
            outline: none;
            background: #fff;
            width: 100%;
            transition: 0.25s;
        }
        .rating-form select:focus {
            border-color: #f0b429;
        }
        friend-link {
            display: block;
            background: #f0f6ff;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 30px 0 10px;
            border: 1px solid #e0e8f0;
        }
        friend-link h3 {
            margin-top: 0;
            font-size: 1.2rem;
            color: #0a1628;
        }
        friend-link ul {
            list-style: none;
            margin: 12px 0 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
        }
        friend-link li {
            margin: 0;
        }
        friend-link a {
            color: #1a2a5e;
            text-decoration: none;
            font-weight: 500;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            padding: 2px 0;
        }
        friend-link a:hover {
            border-bottom-color: #f0b429;
            color: #0a1628;
        }
        footer {
            background: #0a1628;
            color: #b0c0d0;
            padding: 28px 30px;
            text-align: center;
            border-top: 4px solid #f0b429;
        }
        footer p {
            color: #b0c0d0;
            font-size: 0.9rem;
            margin-bottom: 4px;
        }
        footer a {
            color: #f0b429;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 8px;
            }
            .container {
                margin-top: 10px;
                border-radius: 12px;
            }
            header {
                padding: 14px 16px;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 6px;
                padding-top: 14px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 12px;
            }
            nav.show {
                display: flex;
            }
            nav a {
                padding: 10px 14px;
                font-size: 0.95rem;
                width: 100%;
                border-radius: 6px;
            }
            .breadcrumb {
                padding: 10px 16px;
                font-size: 0.75rem;
                overflow-x: auto;
                white-space: nowrap;
            }
            main {
                padding: 18px 16px 30px;
            }
            h1 {
                font-size: 1.6rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.35rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                min-width: auto;
            }
            .search-form button {
                justify-content: center;
            }
            .star-rating label {
                font-size: 1.5rem;
            }
            friend-link ul {
                flex-direction: column;
                gap: 6px;
            }
            .featured-img {
                margin: 12px 0 20px;
            }
            .highlight-box {
                padding: 14px 16px;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            main {
                padding: 24px 24px 36px;
            }
            h1 {
                font-size: 2rem;
            }
        }
        @media (min-width: 769px) {
            .hamburger {
                display: none !important;
            }
            nav {
                display: flex !important;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .text-muted {
            color: #7a8a9a;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .gap-2 {
            gap: 8px;
        }
        .rounded-full {
            border-radius: 999px;
        }
