        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0d0f14;
            color: #e8edf0;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #f5a623;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffc857;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.01em;
            color: #fff;
        }
        h1 {
            font-size: 2.6rem;
            margin: 0.75rem 0 1.5rem;
            background: linear-gradient(135deg, #f5a623, #f7c948);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            margin: 2.8rem 0 1rem;
            border-left: 5px solid #f5a623;
            padding-left: 1rem;
            -webkit-text-fill-color: #fff;
        }
        h3 {
            font-size: 1.5rem;
            margin: 2rem 0 0.75rem;
            color: #f5c542;
            -webkit-text-fill-color: #f5c542;
        }
        h4 {
            font-size: 1.2rem;
            margin: 1.5rem 0 0.5rem;
            color: #e0b84c;
            -webkit-text-fill-color: #e0b84c;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .text-muted {
            color: #9aa5b5;
        }
        .text-small {
            font-size: 0.9rem;
        }
        .site-header {
            background: #14181f;
            border-bottom: 2px solid #2a2f3a;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(8px);
            background: rgba(13, 15, 20, 0.95);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #f5a623, #f7d56a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5a623;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f5a623;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #1f2530;
        }
        .nav-menu {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #cfd8e3;
            transition: background 0.2s, color 0.2s;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            background: #1f2530;
            color: #f5a623;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 0.4rem;
        }
        .breadcrumb {
            padding: 0.8rem 0 0.2rem;
            font-size: 0.9rem;
            color: #7f8a99;
        }
        .breadcrumb a {
            color: #f5a623;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #7f8a99;
        }
        .hero-image {
            margin: 1.8rem 0 2.5rem;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
            background: #1a1f28;
            position: relative;
        }
        .hero-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 14px;
        }
        .hero-image .img-credit {
            position: absolute;
            bottom: 8px;
            right: 12px;
            background: rgba(0, 0, 0, 0.65);
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            color: #ccc;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 2rem 0 1.2rem;
            max-width: 580px;
        }
        .search-form input {
            flex: 1;
            padding: 0.75rem 1.2rem;
            border: 2px solid #2a2f3a;
            border-radius: 30px;
            background: #1a1f28;
            color: #e8edf0;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            border-color: #f5a623;
        }
        .search-form button {
            padding: 0.75rem 1.8rem;
            border: none;
            border-radius: 30px;
            background: linear-gradient(135deg, #f5a623, #e08e0e);
            color: #0d0f14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
        }
        .rating-area {
            background: #1a1f28;
            border-radius: 14px;
            padding: 1.8rem 2rem;
            margin: 2.5rem 0 1.8rem;
            border: 1px solid #2a2f3a;
        }
        .rating-area h3 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #444;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5a623;
        }
        .rating-form button {
            margin-top: 1rem;
            padding: 0.6rem 2rem;
            border: none;
            border-radius: 30px;
            background: #f5a623;
            color: #0d0f14;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-form button:hover {
            background: #ffc857;
        }
        .comment-area {
            background: #1a1f28;
            border-radius: 14px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border: 1px solid #2a2f3a;
        }
        .comment-area textarea {
            width: 100%;
            padding: 0.8rem 1.2rem;
            border: 2px solid #2a2f3a;
            border-radius: 10px;
            background: #0d0f14;
            color: #e8edf0;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
            outline: none;
            transition: border-color 0.3s;
        }
        .comment-area textarea:focus {
            border-color: #f5a623;
        }
        .comment-area button {
            margin-top: 0.8rem;
            padding: 0.6rem 2rem;
            border: none;
            border-radius: 30px;
            background: #f5a623;
            color: #0d0f14;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-area button:hover {
            background: #ffc857;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0 2rem;
            background: #1a1f28;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #2a2f3a;
        }
        .data-table th {
            background: #252b36;
            color: #f5a623;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #252b36;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #1f2530;
        }
        friend-link {
            display: block;
            margin: 2rem 0 0.5rem;
            padding: 1.2rem 0;
            border-top: 2px solid #2a2f3a;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1.2rem 0.3rem 0;
            padding: 0.3rem 0.8rem;
            background: #1a1f28;
            border-radius: 20px;
            font-size: 0.9rem;
            border: 1px solid #2a2f3a;
            transition: background 0.2s, border-color 0.2s;
        }
        friend-link a:hover {
            background: #252b36;
            border-color: #f5a623;
            text-decoration: none;
        }
        .site-footer {
            background: #0a0c10;
            border-top: 2px solid #2a2f3a;
            padding: 2rem 0 1.5rem;
            margin-top: 3rem;
            text-align: center;
            font-size: 0.9rem;
            color: #7f8a99;
        }
        .site-footer .copyright {
            margin-top: 1rem;
            font-size: 0.85rem;
            color: #5a6577;
        }
        .badge {
            display: inline-block;
            background: #f5a623;
            color: #0d0f14;
            font-weight: 700;
            font-size: 0.75rem;
            padding: 0.15rem 0.7rem;
            border-radius: 20px;
            letter-spacing: 0.02em;
        }
        .highlight-box {
            background: #1a1f28;
            border-left: 4px solid #f5a623;
            padding: 1.2rem 1.5rem;
            margin: 1.8rem 0;
            border-radius: 0 10px 10px 0;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 1.5rem 0;
        }
        .emoji-big {
            font-size: 1.8rem;
            line-height: 1;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #14181f;
                border-radius: 10px;
                padding: 0.8rem 0.5rem;
                margin-top: 0.5rem;
                border: 1px solid #2a2f3a;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.6rem 1rem;
                border-radius: 6px;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .two-col {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .rating-area,
            .comment-area {
                padding: 1.2rem 1rem;
            }
            .star-rating {
                font-size: 1.6rem;
                justify-content: center;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
            .hero-image img {
                max-height: 260px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.25rem;
                padding-left: 0.6rem;
            }
            p {
                font-size: 0.95rem;
            }
            .rating-area h3,
            .comment-area h3 {
                font-size: 1.1rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0f14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2f3a;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a4050;
        }
        @media print {
            .site-header {
                position: static;
                background: #fff;
                color: #000;
            }
            body {
                background: #fff;
                color: #000;
            }
            .search-form,
            .rating-area,
            .comment-area,
            .nav-toggle {
                display: none !important;
            }
            .hero-image img {
                max-height: 300px;
            }
        }
