        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #0b0e14;
            color: #e8edf2;
            line-height: 1.7;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #ffdd77;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 600;
            line-height: 1.3;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            color: #f0f4fa;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #f5c542;
            padding-left: 1.2rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #2a313c;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #e0e7ef;
        }
        h4 {
            font-size: 1.15rem;
            color: #d0d9e3;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.5rem 1.8rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        strong {
            color: #f5c542;
            font-weight: 600;
        }
        .container {
            background: #12171f;
            border-radius: 20px;
            padding: 1.5rem 2rem 2.5rem;
            margin: 1.5rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
        }
        .badge {
            display: inline-block;
            background: #f5c542;
            color: #0b0e14;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 0 0.6rem;
            border-bottom: 1px solid #2a313c;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5c542, #e6a800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #8a9bb5;
            display: block;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .nav-links {
            display: flex;
            gap: 1rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-links li a {
            padding: 0.4rem 1rem;
            border-radius: 30px;
            font-size: 0.92rem;
            font-weight: 500;
            color: #c8d2e0;
            transition: background 0.2s, color 0.2s;
        }
        .nav-links li a:hover,
        .nav-links li a.active {
            background: #f5c542;
            color: #0b0e14;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #e8edf2;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1f2835;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            font-size: 0.85rem;
            color: #8a9bb5;
            padding: 0.8rem 0 0.2rem;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #5a6a7e;
        }
        .breadcrumb a {
            color: #a0b3cc;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .search-wrap {
            display: flex;
            gap: 0.6rem;
            margin: 1.6rem 0 0.8rem;
            flex-wrap: wrap;
        }
        .search-wrap input {
            flex: 1;
            min-width: 200px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #2a313c;
            border-radius: 60px;
            background: #1a212b;
            color: #e8edf2;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-wrap input:focus {
            border-color: #f5c542;
        }
        .search-wrap button {
            padding: 0.8rem 1.8rem;
            background: #f5c542;
            color: #0b0e14;
            border: none;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-wrap button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .rating-area {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.8rem 1.6rem;
            background: #1a212b;
            padding: 1rem 1.6rem;
            border-radius: 60px;
            margin: 1.2rem 0;
        }
        .rating-area .stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #3a4553;
            cursor: pointer;
        }
        .rating-area .stars i {
            transition: color 0.2s, transform 0.1s;
        }
        .rating-area .stars i:hover,
        .rating-area .stars i.active {
            color: #f5c542;
            transform: scale(1.1);
        }
        .rating-area .score-text {
            font-weight: 600;
            color: #f0f4fa;
        }
        .rating-area button {
            padding: 0.5rem 1.4rem;
            background: #2a313c;
            border: none;
            border-radius: 40px;
            color: #e8edf2;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-area button:hover {
            background: #f5c542;
            color: #0b0e14;
        }
        .comment-box {
            background: #1a212b;
            border-radius: 20px;
            padding: 1.6rem 2rem;
            margin: 1.8rem 0;
        }
        .comment-box textarea {
            width: 100%;
            min-height: 110px;
            padding: 1rem;
            border: 2px solid #2a313c;
            border-radius: 16px;
            background: #0b0e14;
            color: #e8edf2;
            font-size: 1rem;
            resize: vertical;
            outline: none;
            transition: border 0.2s;
        }
        .comment-box textarea:focus {
            border-color: #f5c542;
        }
        .comment-box .comment-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
            margin-top: 0.8rem;
        }
        .comment-box .comment-meta input {
            flex: 1;
            min-width: 160px;
            padding: 0.6rem 1rem;
            border: 2px solid #2a313c;
            border-radius: 40px;
            background: #0b0e14;
            color: #e8edf2;
            outline: none;
        }
        .comment-box .comment-meta input:focus {
            border-color: #f5c542;
        }
        .comment-box button {
            padding: 0.7rem 2rem;
            background: #f5c542;
            color: #0b0e14;
            border: none;
            border-radius: 60px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-box button:hover {
            background: #ffdd77;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0 0.6rem;
            border-top: 1px solid #2a313c;
            margin-top: 2rem;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1rem 0.3rem 0;
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
            background: #1a212b;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #2a313c;
            text-decoration: none;
        }
        friend-link .fl-title {
            font-weight: 700;
            color: #a0b3cc;
            margin-right: 0.6rem;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            font-size: 0.95rem;
        }
        .data-table th,
        .data-table td {
            padding: 0.7rem 1rem;
            border: 1px solid #2a313c;
            text-align: left;
        }
        .data-table th {
            background: #1a212b;
            color: #f5c542;
            font-weight: 600;
        }
        .data-table tr:nth-child(even) {
            background: rgba(26, 33, 43, 0.4);
        }
        footer {
            padding: 1.5rem 0 2.5rem;
            border-top: 1px solid #2a313c;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: #8a9bb5;
            text-align: center;
        }
        footer .copyright {
            margin-top: 0.6rem;
            letter-spacing: 0.3px;
        }
        @media (max-width: 820px) {
            body {
                padding: 0 0.6rem;
            }
            .container {
                padding: 1rem 1.2rem 1.8rem;
            }
            h1 {
                font-size: 1.8rem;
                padding-left: 0.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            header {
                flex-direction: column;
                align-items: stretch;
                gap: 0.6rem;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                gap: 0.4rem;
                padding: 0.8rem 0 0.2rem;
            }
            .nav-links.open {
                display: flex;
            }
            .hamburger {
                display: block;
                align-self: flex-end;
            }
            .rating-area {
                border-radius: 20px;
                justify-content: center;
            }
            .search-wrap input {
                min-width: 140px;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.4rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0.8rem 0.8rem 1.2rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .rating-area .stars {
                font-size: 1.3rem;
            }
            .comment-box {
                padding: 1rem;
            }
        }
        .highlight-box {
            background: #1a212b;
            border-left: 4px solid #f5c542;
            padding: 1rem 1.6rem;
            border-radius: 0 16px 16px 0;
            margin: 1.2rem 0;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 0.4rem;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.6rem;
        }
        @media (max-width: 680px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
        }
        .img-caption {
            font-size: 0.85rem;
            color: #8a9bb5;
            margin-top: 0.4rem;
            text-align: center;
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f5c542;
            line-height: 1.2;
        }
