        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; font-size: 16px; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.7;
            color: #1a1a2e;
            background: #f8f9fc;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        a { color: #0f4c81; text-decoration: none; transition: color 0.2s; }
        a:hover, a:focus { color: #e85d04; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; border-radius: 12px; }
        ul, ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
        li { margin-bottom: 0.4rem; }
        h1, h2, h3, h4, h5, h6 { line-height: 1.3; color: #0d1b2a; margin-top: 1.8rem; margin-bottom: 0.8rem; font-weight: 700; }
        h1 { font-size: 2.4rem; margin-top: 0.6rem; }
        h2 { font-size: 1.8rem; border-bottom: 3px solid #0f4c81; padding-bottom: 0.3rem; }
        h3 { font-size: 1.4rem; color: #1b3a4b; }
        h4 { font-size: 1.15rem; color: #2c3e50; font-weight: 600; }
        p { margin-bottom: 1.2rem; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .site-header {
            background: linear-gradient(135deg, #0d1b2a 0%, #1b3a4b 100%);
            color: #fff;
            padding: 16px 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: 1px;
            background: linear-gradient(90deg, #f9c74f, #f8961e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 40px rgba(248,150,30,0.2);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i { margin-right: 6px; -webkit-text-fill-color: #f9c74f; }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover { background: rgba(255,255,255,0.1); }
        .main-nav { display: flex; gap: 8px 18px; flex-wrap: wrap; align-items: center; }
        .main-nav a {
            color: #e0e7f0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.2s;
        }
        .main-nav a:hover, .main-nav a:focus {
            color: #f9c74f;
            border-bottom-color: #f9c74f;
            text-decoration: none;
        }
        .main-nav a i { margin-right: 5px; font-size: 0.85rem; }
        .breadcrumb {
            background: #fff;
            padding: 10px 0;
            border-bottom: 1px solid #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: #adb5bd;
        }
        .breadcrumb a { color: #0f4c81; }
        .breadcrumb .current { color: #6c757d; font-weight: 500; }
        .hero {
            background: linear-gradient(145deg, #0d1b2a 0%, #1a3a4a 100%);
            color: #fff;
            padding: 50px 0 40px;
            text-align: center;
            border-radius: 0 0 40px 40px;
            margin-bottom: 30px;
        }
        .hero h1 {
            color: #fff;
            font-size: 2.8rem;
            margin-bottom: 12px;
            text-shadow: 0 2px 20px rgba(0,0,0,0.3);
        }
        .hero h1 i { color: #f9c74f; margin-right: 10px; }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0 auto 18px;
            color: #cbd5e1;
        }
        .hero .badge {
            display: inline-block;
            background: rgba(249,199,79,0.2);
            color: #f9c74f;
            padding: 4px 18px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 1px solid rgba(249,199,79,0.3);
        }
        .search-section {
            background: #fff;
            border-radius: 16px;
            padding: 24px 28px;
            margin-bottom: 30px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #dee2e6;
            border-radius: 12px;
            font-size: 1rem;
            transition: border 0.2s;
            outline: none;
        }
        .search-form input:focus {
            border-color: #0f4c81;
            box-shadow: 0 0 0 4px rgba(15,76,129,0.1);
        }
        .search-form button {
            padding: 14px 32px;
            background: #0f4c81;
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-form button:hover {
            background: #1b3a4b;
            transform: translateY(-2px);
        }
        .search-form button i { margin-right: 8px; }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 32px;
            margin-bottom: 40px;
        }
        .main-content {
            background: #fff;
            border-radius: 20px;
            padding: 32px 36px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.04);
        }
        .sidebar {
            background: #fff;
            border-radius: 20px;
            padding: 24px 20px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.04);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 16px;
            border-bottom: 2px solid #e9ecef;
            padding-bottom: 8px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar ul li {
            padding: 6px 0;
            border-bottom: 1px solid #f1f3f5;
        }
        .sidebar ul li a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }
        .sidebar ul li a i { color: #f8961e; width: 18px; text-align: center; }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 40px 0;
        }
        .comment-box, .rating-box {
            background: #fff;
            border-radius: 16px;
            padding: 24px 28px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }
        .comment-box h3, .rating-box h3 { margin-top: 0; }
        .comment-form textarea {
            width: 100%;
            padding: 14px;
            border: 2px solid #dee2e6;
            border-radius: 12px;
            font-size: 1rem;
            min-height: 100px;
            resize: vertical;
            font-family: inherit;
            transition: border 0.2s;
            outline: none;
        }
        .comment-form textarea:focus {
            border-color: #0f4c81;
            box-shadow: 0 0 0 4px rgba(15,76,129,0.1);
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #dee2e6;
            border-radius: 12px;
            font-size: 1rem;
            margin: 8px 0 14px;
            outline: none;
            transition: border 0.2s;
        }
        .comment-form input[type="text"]:focus {
            border-color: #0f4c81;
            box-shadow: 0 0 0 4px rgba(15,76,129,0.1);
        }
        .comment-form button, .rating-form button {
            padding: 12px 28px;
            background: #0f4c81;
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .comment-form button:hover, .rating-form button:hover {
            background: #1b3a4b;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin: 10px 0 16px;
        }
        .star-rating input { display: none; }
        .star-rating label {
            font-size: 2rem;
            color: #dee2e6;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #f9c74f;
        }
        friend-link {
            display: block;
            background: #fff;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 30px 0 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }
        friend-link::before {
            content: "🔗 Friendly Links";
            display: block;
            font-size: 1.2rem;
            font-weight: 700;
            color: #0d1b2a;
            margin-bottom: 12px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 0;
            font-weight: 500;
        }
        friend-link a::after {
            content: " ·";
            color: #adb5bd;
            margin-left: 6px;
        }
        friend-link a:last-child::after { content: ""; }
        .site-footer {
            background: #0d1b2a;
            color: #cbd5e1;
            padding: 30px 0 20px;
            border-radius: 30px 30px 0 0;
            margin-top: 40px;
            text-align: center;
        }
        .site-footer .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        .site-footer a { color: #f9c74f; }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
            .sidebar {
                position: static;
                order: 2;
            }
            .feedback-section { grid-template-columns: 1fr; }
            .hero h1 { font-size: 2.2rem; }
        }
        @media (max-width: 768px) {
            .nav-toggle { display: block; }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 6px;
                padding: 16px 0 8px;
                border-top: 1px solid rgba(255,255,255,0.1);
                margin-top: 8px;
            }
            .main-nav.open { display: flex; }
            .main-nav a { padding: 8px 0; font-size: 1.05rem; }
            .hero { padding: 30px 0 24px; }
            .hero h1 { font-size: 1.8rem; }
            .main-content { padding: 20px 16px; }
            .search-form input { min-width: 100%; }
            .search-form button { width: 100%; justify-content: center; }
            .header-inner { gap: 8px; }
            .my-logo { font-size: 1.4rem; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 12px; }
            .hero h1 { font-size: 1.5rem; }
            h2 { font-size: 1.4rem; }
            h3 { font-size: 1.15rem; }
            .main-content { padding: 16px 12px; }
            .comment-box, .rating-box { padding: 16px; }
        }
        .highlight-box {
            background: #f0f4f8;
            border-left: 5px solid #0f4c81;
            padding: 16px 20px;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        .highlight-box.success { border-left-color: #2d6a4f; background: #e8f5e9; }
        .highlight-box.warning { border-left-color: #f8961e; background: #fff8e1; }
        .highlight-box.info { border-left-color: #0f4c81; background: #e3f2fd; }
        .emoji-big { font-size: 1.6rem; line-height: 1; }
        .last-updated {
            display: inline-block;
            background: #e9ecef;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #495057;
            margin-bottom: 16px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th, td {
            padding: 10px 14px;
            border: 1px solid #dee2e6;
            text-align: left;
        }
        th { background: #0f4c81; color: #fff; font-weight: 600; }
        tr:nth-child(even) { background: #f8f9fc; }
        .tag {
            display: inline-block;
            background: #e3f2fd;
            color: #0f4c81;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin: 2px 0;
        }
        .btn-small {
            display: inline-block;
            background: #0f4c81;
            color: #fff !important;
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            transition: background 0.2s;
        }
        .btn-small:hover { background: #1b3a4b; text-decoration: none; }
        .section-icon { margin-right: 8px; color: #f8961e; }
        .img-caption { font-size: 0.9rem; color: #6c757d; text-align: center; margin-top: 6px; }
