* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.7;
            font-size: 16px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #7ec8e3;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #b8e2f2;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #141a24;
            border-bottom: 2px solid #2a3a4a;
            padding: 12px 0;
            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: 700;
            background: linear-gradient(135deg, #f7d875, #f0a050);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 0.5px;
            text-shadow: 0 0 20px rgba(247, 216, 117, 0.2);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f7d875;
            margin-right: 6px;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e8edf5;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
        }
        nav#main-nav ul {
            list-style: none;
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
        }
        nav#main-nav a {
            padding: 6px 12px;
            border-radius: 6px;
            font-weight: 500;
            transition: background 0.2s;
        }
        nav#main-nav a:hover {
            background: #1f2a38;
            text-decoration: none;
        }
        .breadcrumb {
            background: #0f151e;
            padding: 10px 0;
            border-bottom: 1px solid #1e2a36;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #5a7a8a;
        }
        .breadcrumb a {
            color: #8ab4c8;
        }
        .breadcrumb .current {
            color: #c0d0dc;
        }
        main {
            padding: 30px 0 50px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #f7d875, #f0a050);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.0rem;
            font-weight: 700;
            margin: 40px 0 16px;
            color: #e8c06a;
            border-left: 5px solid #f0a050;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 30px 0 12px;
            color: #d4b87a;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 20px 0 10px;
            color: #c8a86a;
        }
        p {
            margin-bottom: 18px;
            color: #d5dee8;
        }
        .hero-img {
            border-radius: 18px;
            margin: 25px 0 30px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
            width: 100%;
        }
        .feature-box {
            background: #151e2a;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0;
            border-left: 6px solid #f0a050;
        }
        .feature-box i {
            color: #f7d875;
            margin-right: 8px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 30px 0;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
            margin: 30px 0;
        }
        .card {
            background: #151e2a;
            border-radius: 16px;
            padding: 20px;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
        }
        .card i {
            font-size: 2rem;
            color: #f7d875;
            margin-bottom: 10px;
        }
        .rating-stars {
            color: #f7b731;
            letter-spacing: 2px;
            font-size: 1.1rem;
        }
        .comment-box,
        .score-box,
        .search-box {
            background: #141c28;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 30px 0;
            border: 1px solid #2a3a4a;
        }
        .comment-box h3,
        .score-box h3,
        .search-box h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 4px;
            color: #c8d8e8;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #2a3a4a;
            background: #0f151e;
            color: #e8edf5;
            font-size: 1rem;
            transition: border 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #f0a050;
            outline: none;
        }
        .btn {
            padding: 12px 30px;
            border: none;
            border-radius: 30px;
            background: linear-gradient(135deg, #f7d875, #f0a050);
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .btn:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 24px rgba(240, 160, 80, 0.3);
        }
        .btn i {
            margin-right: 6px;
        }
        .score-select {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .score-select select {
            width: auto;
            padding: 10px 18px;
        }
        .friend-link {
            display: block;
            background: #141c28;
            padding: 14px 20px;
            border-radius: 12px;
            margin: 8px 0;
            transition: background 0.2s;
        }
        .friend-link:hover {
            background: #1f2e3e;
            text-decoration: none;
        }
        .friend-link i {
            color: #f7d875;
            margin-right: 8px;
        }
        footer {
            background: #0b1018;
            border-top: 2px solid #1e2a36;
            padding: 30px 0 20px;
            text-align: center;
            color: #8a9aa8;
            font-size: 0.9rem;
        }
        footer .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 24px;
            margin-bottom: 20px;
        }
        footer .copyright {
            border-top: 1px solid #1a2632;
            padding-top: 18px;
            margin-top: 12px;
        }
        .last-update {
            color: #7a9aaa;
            font-size: 0.9rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .last-update i {
            color: #f7d875;
        }
        @media (max-width: 900px) {
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.0rem;
            }
            h2 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav#main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 12px 0 6px;
                gap: 6px;
            }
            nav#main-nav ul.show {
                display: flex;
            }
            nav#main-nav a {
                padding: 10px 16px;
                display: block;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
                gap: 4px 8px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.7rem;
            }
            .feature-box {
                padding: 16px 18px;
            }
            .comment-box,
            .score-box,
            .search-box {
                padding: 16px 18px;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0e14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a3a4a;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a4a5a;
        }
        .schema-hidden {
            display: none;
        }
