        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b0d17;
            color: #e8ecf1;
            line-height: 1.7;
            padding: 0 16px;
            max-width: 1200px;
            margin: 0 auto;
        }
        a {
            color: #f0c24b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.01em;
            color: #ffffff;
        }
        h1 {
            font-size: 2.4rem;
            margin: 0.8rem 0 1.2rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.4rem 0 0.8rem;
            border-left: 5px solid #f0c24b;
            padding-left: 16px;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.8rem 0 0.6rem;
            color: #f5d78e;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.4rem;
            color: #e2c77a;
        }
        p {
            margin: 0.8rem 0 1.2rem;
            font-size: 1.05rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.2rem 1.8rem;
        }
        li {
            margin: 0.4rem 0;
        }
        strong {
            color: #f5d78e;
            font-weight: 700;
        }
        em {
            color: #d4b978;
        }
        hr {
            border: none;
            border-top: 1px solid #2a2d3e;
            margin: 2.4rem 0;
        }
        header {
            padding: 20px 0 12px;
            border-bottom: 2px solid #1e2132;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #f0c24b, #e50914, #f0c24b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.03em;
            display: inline-block;
            text-shadow: 0 0 30px rgba(240, 194, 75, 0.15);
        }
        .my-logo:hover {
            text-decoration: none;
            -webkit-text-fill-color: transparent;
        }
        .my-logo small {
            font-size: 0.75rem;
            display: block;
            -webkit-text-fill-color: #8a8ea0;
            color: #8a8ea0;
            letter-spacing: 0.3px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        nav a {
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #c8cbd8;
            transition: all 0.2s;
            border: 1px solid transparent;
        }
        nav a:hover {
            background: rgba(240, 194, 75, 0.12);
            border-color: #f0c24b;
            color: #f0c24b;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #f0c24b;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(240, 194, 75, 0.1);
        }
        #nav-toggle {
            display: none;
        }
        #nav-toggle:checked~nav {
            display: flex;
            flex-direction: column;
            width: 100%;
            margin-top: 16px;
            gap: 6px;
        }
        #nav-toggle:checked~nav a {
            width: 100%;
            text-align: center;
        }
        .breadcrumb {
            width: 100%;
            margin-top: 12px;
            font-size: 0.85rem;
            color: #8a8ea0;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
        }
        .breadcrumb a {
            color: #b0b4c4;
        }
        .breadcrumb a:hover {
            color: #f0c24b;
        }
        .breadcrumb span {
            color: #f0c24b;
        }
        main {
            padding: 24px 0 40px;
        }
        .hero-img {
            margin: 1.6rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
            background: #151829;
            padding: 8px;
        }
        .hero-img img {
            border-radius: 12px;
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .hero-img figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #8a8ea0;
            padding: 10px 0 4px;
        }
        .search-box {
            background: #1a1d2e;
            padding: 24px 28px;
            border-radius: 16px;
            margin: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            border: 1px solid #2a2d3e;
        }
        .search-box label {
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box input[type="text"] {
            flex: 1 1 220px;
            padding: 12px 18px;
            border-radius: 30px;
            border: 1px solid #3a3d4e;
            background: #0b0d17;
            color: #e8ecf1;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
            min-width: 160px;
        }
        .search-box input[type="text"]:focus {
            border-color: #f0c24b;
        }
        .search-box button {
            padding: 12px 28px;
            border-radius: 30px;
            border: none;
            background: #f0c24b;
            color: #0b0d17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .search-box button i {
            font-size: 0.9rem;
        }
        .rating-section {
            background: #1a1d2e;
            padding: 24px 28px;
            border-radius: 16px;
            margin: 2rem 0;
            border: 1px solid #2a2d3e;
        }
        .rating-section h3 {
            margin-top: 0;
        }
        .stars {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #3a3d4e;
            cursor: pointer;
            margin: 8px 0 12px;
            flex-wrap: wrap;
        }
        .stars i {
            transition: color 0.15s, transform 0.15s;
        }
        .stars i:hover,
        .stars i.active {
            color: #f0c24b;
            transform: scale(1.12);
        }
        .rating-section form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .rating-section input[type="number"] {
            display: none;
        }
        .rating-section button {
            padding: 10px 24px;
            border-radius: 30px;
            border: none;
            background: #f0c24b;
            color: #0b0d17;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-section button:hover {
            background: #ffd966;
        }
        .rating-value {
            font-size: 1.2rem;
            font-weight: 700;
            color: #f0c24b;
            margin-left: 8px;
        }
        .comments-section {
            background: #1a1d2e;
            padding: 24px 28px;
            border-radius: 16px;
            margin: 2rem 0;
            border: 1px solid #2a2d3e;
        }
        .comments-section h3 {
            margin-top: 0;
        }
        .comments-section form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .comments-section input,
        .comments-section textarea {
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #3a3d4e;
            background: #0b0d17;
            color: #e8ecf1;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
        }
        .comments-section input:focus,
        .comments-section textarea:focus {
            border-color: #f0c24b;
        }
        .comments-section textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comments-section button {
            align-self: flex-start;
            padding: 12px 32px;
            border-radius: 30px;
            border: none;
            background: #f0c24b;
            color: #0b0d17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comments-section button:hover {
            background: #ffd966;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a1d2e;
            border-radius: 12px;
            overflow: hidden;
            font-size: 0.95rem;
        }
        th {
            background: #2a2d3e;
            color: #f0c24b;
            padding: 12px 16px;
            text-align: left;
            font-weight: 700;
        }
        td {
            padding: 10px 16px;
            border-bottom: 1px solid #25283a;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .link-list {
            background: #1a1d2e;
            padding: 20px 24px;
            border-radius: 16px;
            margin: 1.6rem 0;
            border: 1px solid #2a2d3e;
        }
        .link-list ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 10px 20px;
        }
        .link-list li {
            margin: 0;
        }
        .link-list a {
            display: inline-block;
            padding: 6px 0;
            font-weight: 500;
        }
        .link-list a i {
            margin-right: 6px;
            font-size: 0.8rem;
            color: #f0c24b;
        }
        footer {
            border-top: 2px solid #1e2132;
            padding: 28px 0 20px;
            margin-top: 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin-bottom: 24px;
        }
        .footer-grid h4 {
            color: #f0c24b;
            margin: 0 0 12px;
            font-size: 1.05rem;
        }
        .footer-grid a {
            display: block;
            padding: 3px 0;
            font-size: 0.9rem;
            color: #b0b4c4;
        }
        .footer-grid a:hover {
            color: #f0c24b;
        }
        friend-link {
            display: block;
            padding: 16px 0;
            border-top: 1px solid #1e2132;
            margin-top: 12px;
            font-size: 0.9rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            color: #b0b4c4;
        }
        friend-link a:hover {
            color: #f0c24b;
        }
        .copyright {
            text-align: center;
            color: #6a6e80;
            font-size: 0.85rem;
            padding: 16px 0 4px;
            border-top: 1px solid #1e2132;
            margin-top: 12px;
        }
        .copyright strong {
            color: #8a8ea0;
        }
        @media (max-width: 780px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            body {
                padding: 0 12px;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
            }
            #nav-toggle:checked~nav {
                display: flex;
            }
            header {
                align-items: flex-start;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .search-box {
                flex-direction: column;
                align-items: stretch;
            }
            .search-box input[type="text"] {
                flex: 1 1 auto;
            }
            .rating-section form {
                flex-direction: column;
                align-items: flex-start;
            }
            .stars {
                font-size: 1.6rem;
            }
            .link-list ul {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            nav a {
                font-size: 0.85rem;
                padding: 6px 12px;
            }
        }
        .badge {
            display: inline-block;
            background: #f0c24b;
            color: #0b0d17;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        .highlight-box {
            background: #1a1d2e;
            border-left: 4px solid #f0c24b;
            padding: 16px 20px;
            border-radius: 0 12px 12px 0;
            margin: 1.2rem 0;
        }
        .emoji-big {
            font-size: 1.6rem;
            vertical-align: middle;
            margin-right: 6px;
        }
        .last-update {
            font-size: 0.85rem;
            color: #8a8ea0;
            text-align: right;
            margin-top: 2rem;
            padding-top: 0.8rem;
            border-top: 1px solid #1e2132;
        }
        .last-update i {
            margin-right: 6px;
        }
