        *,
        *::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, sans-serif;
            background: #0b0e14;
            color: #e4e8ee;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #ff6a33;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus-visible {
            color: #ff9366;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff6a33, #ffb347);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 0.75rem;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #ffb347;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            border-left: 5px solid #ff6a33;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #f0c27a;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #e4b074;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }
        p {
            margin-bottom: 1.25rem;
        }
        .lead {
            font-size: 1.25rem;
            color: #cfd8e3;
            font-weight: 400;
        }
        strong {
            color: #ffb347;
            font-weight: 700;
        }
        em {
            color: #f0c27a;
        }
        hr {
            border: none;
            height: 1px;
            background: linear-gradient(90deg, transparent, #ff6a3366, transparent);
            margin: 2.5rem 0;
        }
        .site-header {
            background: #11171f;
            border-bottom: 2px solid #ff6a3322;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 0 20px;
        }
        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            min-height: 68px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff6a33, #ffb347);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #ff6a33;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e4e8ee;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #1f2a36;
        }
        .primary-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .primary-nav a {
            padding: 8px 16px;
            border-radius: 8px;
            color: #cfd8e3;
            font-weight: 500;
            font-size: 0.95rem;
            transition: background 0.25s, color 0.25s;
        }
        .primary-nav a:hover,
        .primary-nav a:focus-visible {
            background: #1f2a36;
            color: #ffb347;
            text-decoration: none;
        }
        .primary-nav a i {
            margin-right: 6px;
            color: #ff6a33;
        }
        .breadcrumb {
            padding: 14px 0 8px;
            font-size: 0.9rem;
            color: #8a9aa8;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            list-style: none;
            background: transparent;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #ff6a3366;
            font-size: 1.2rem;
            margin-right: 6px;
        }
        .breadcrumb a {
            color: #8a9aa8;
        }
        .breadcrumb a:hover {
            color: #ffb347;
        }
        .breadcrumb .active {
            color: #ffb347;
        }
        .hero {
            padding: 3rem 0 2rem;
            text-align: center;
        }
        .hero .meta {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 18px 30px;
            color: #8a9aa8;
            font-size: 0.95rem;
            margin: 1.2rem 0 0.5rem;
        }
        .hero .meta i {
            color: #ff6a33;
            margin-right: 6px;
        }
        .search-section {
            background: #151e28;
            border-radius: 16px;
            padding: 28px 32px;
            margin: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px 24px;
            border: 1px solid #ff6a3318;
        }
        .search-section label {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #f0c27a;
            font-size: 1.1rem;
        }
        .search-section label i {
            color: #ff6a33;
        }
        .search-form {
            flex: 1;
            display: flex;
            gap: 10px;
            min-width: 200px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border-radius: 10px;
            border: 1px solid #2a3a4a;
            background: #0d141c;
            color: #e4e8ee;
            font-size: 1rem;
            transition: border 0.3s, box-shadow 0.3s;
            outline: none;
        }
        .search-form input:focus {
            border-color: #ff6a33;
            box-shadow: 0 0 0 3px #ff6a3322;
        }
        .search-form button {
            padding: 12px 28px;
            border-radius: 10px;
            border: none;
            background: linear-gradient(135deg, #ff6a33, #e8552a);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 24px #ff6a3344;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
        }
        .card {
            background: #151e28;
            border-radius: 16px;
            padding: 24px;
            border: 1px solid #1f2a36;
            transition: border-color 0.3s, transform 0.2s;
        }
        .card:hover {
            border-color: #ff6a3344;
            transform: translateY(-4px);
        }
        .card h3,
        .card h4 {
            margin-top: 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            margin: 1.5rem 0;
        }
        .stat-item {
            background: #0d141c;
            border-radius: 12px;
            padding: 18px 16px;
            text-align: center;
            border: 1px solid #1f2a36;
        }
        .stat-item .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ff6a33;
            display: block;
        }
        .stat-item .label {
            font-size: 0.9rem;
            color: #8a9aa8;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .img-wrapper {
            margin: 2rem 0;
            border-radius: 14px;
            overflow: hidden;
            background: #151e28;
            border: 1px solid #1f2a36;
            position: relative;
        }
        .img-wrapper img {
            width: 100%;
            height: auto;
            max-height: 480px;
            object-fit: cover;
        }
        .img-wrapper .caption {
            padding: 12px 18px;
            font-size: 0.9rem;
            color: #8a9aa8;
            background: #0d141c;
            border-top: 1px solid #1f2a36;
        }
        .comment-section,
        .rating-section {
            background: #151e28;
            border-radius: 16px;
            padding: 28px 32px;
            margin: 2rem 0;
            border: 1px solid #1f2a36;
        }
        .comment-section h2,
        .rating-section h2 {
            margin-top: 0;
            border-left-color: #ff6a33;
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 1rem;
        }
        .comment-form input,
        .comment-form textarea,
        .rating-form select,
        .rating-form input {
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #2a3a4a;
            background: #0d141c;
            color: #e4e8ee;
            font-size: 1rem;
            transition: border 0.3s;
            outline: none;
            font-family: inherit;
        }
        .comment-form input:focus,
        .comment-form textarea:focus,
        .rating-form select:focus,
        .rating-form input:focus {
            border-color: #ff6a33;
            box-shadow: 0 0 0 3px #ff6a3322;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            align-self: flex-start;
            padding: 12px 32px;
            border-radius: 10px;
            border: none;
            background: linear-gradient(135deg, #ff6a33, #e8552a);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 24px #ff6a3344;
        }
        .comment-list {
            margin-top: 2rem;
            list-style: none;
        }
        .comment-list li {
            padding: 16px 0;
            border-bottom: 1px solid #1f2a36;
        }
        .comment-list li:last-child {
            border-bottom: none;
        }
        .comment-list .author {
            font-weight: 600;
            color: #ffb347;
        }
        .comment-list .date {
            font-size: 0.8rem;
            color: #6a7a88;
            margin-left: 12px;
        }
        .comment-list .text {
            margin-top: 6px;
            color: #cfd8e3;
        }
        .rating-display {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 0.5rem 0 1rem;
        }
        .rating-display .stars {
            color: #ffb347;
            font-size: 1.3rem;
            letter-spacing: 2px;
        }
        .rating-display .avg {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ff6a33;
        }
        .site-footer {
            background: #0a0f16;
            border-top: 2px solid #1f2a36;
            padding: 2.5rem 20px 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        .site-footer h4 {
            color: #ffb347;
            margin-top: 0;
            margin-bottom: 0.75rem;
        }
        .site-footer a {
            color: #8a9aa8;
        }
        .site-footer a:hover {
            color: #ffb347;
        }
        .friend-link {
            display: flex;
            flex-direction: column;
            gap: 6px;
            padding: 0;
            margin: 0;
            list-style: none;
        }
        .friend-link a {
            padding: 4px 0;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            color: #5a6a78;
            font-size: 0.9rem;
            border-top: 1px solid #1a2532;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
        }
        @media (max-width: 900px) {
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 12px 0 16px;
                gap: 4px;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 10px 16px;
                border-radius: 8px;
                width: 100%;
            }
            .header-inner {
                align-items: center;
            }
            .hero .meta {
                flex-direction: column;
                gap: 6px;
            }
            .search-section {
                flex-direction: column;
                padding: 20px;
            }
            .search-form {
                width: 100%;
            }
            .search-form input {
                min-width: 0;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .friend-link {
                align-items: center;
            }
            .comment-section,
            .rating-section {
                padding: 20px;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.7rem;
            }
            .container {
                padding: 0 14px;
            }
            .search-form button {
                padding: 12px 18px;
                font-size: 0.9rem;
            }
        }
        .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;
        }
        .list-styled {
            padding-left: 24px;
            margin-bottom: 1.25rem;
            color: #cfd8e3;
        }
        .list-styled li {
            margin-bottom: 6px;
        }
        .highlight-box {
            background: #1a2532;
            border-left: 4px solid #ff6a33;
            padding: 18px 22px;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .tag {
            display: inline-block;
            background: #ff6a3318;
            color: #ffb347;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid #ff6a3322;
        }
