        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #0f0e17;
            color: #fffffe;
            line-height: 1.7;
            padding: 0 1rem;
            max-width: 1200px;
            margin: 0 auto;
            min-height: 100vh;
        }
        a {
            color: #ff8906;
            text-decoration: none;
            transition: color 0.2s ease, transform 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #f25f4c;
            transform: translateY(-1px);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
        }
        ul,
        ol {
            padding-left: 1.75rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: #fffffe;
            font-weight: 700;
            line-height: 1.3;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.6rem;
            border-left: 6px solid #ff8906;
            padding-left: 1rem;
            margin-top: 1rem;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid #ff8906;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #ff8906;
        }
        h4 {
            font-size: 1.2rem;
            color: #f25f4c;
        }
        p {
            margin: 1rem 0;
            font-size: 1.05rem;
        }
        strong {
            color: #ff8906;
        }
        em {
            color: #eaddcf;
        }
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(90deg, #ff8906, #f25f4c, transparent);
            margin: 2.5rem 0;
        }
        header {
            padding: 1.5rem 0;
            border-bottom: 1px solid #2d2a3e;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff8906, #f25f4c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            transition: opacity 0.3s ease;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
            transform: none;
        }
        .my-logo small {
            font-size: 0.8rem;
            -webkit-text-fill-color: #a7a9be;
            background: none;
            display: block;
            font-weight: 400;
            letter-spacing: 0.2px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fffffe;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2d2a3e;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.25rem 1.2rem;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li a {
            padding: 0.4rem 0.8rem;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: background 0.2s, color 0.2s;
        }
        .nav-menu li a:hover {
            background: #2d2a3e;
            color: #ff8906;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            font-size: 0.9rem;
            padding: 0.8rem 0;
            color: #a7a9be;
            list-style: none;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #ff8906;
            margin-right: 0.6rem;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #a7a9be;
        }
        .breadcrumb a:hover {
            color: #ff8906;
        }
        .breadcrumb .active {
            color: #fffffe;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.5rem 0;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.75rem 1.2rem;
            border: 2px solid #2d2a3e;
            border-radius: 40px;
            background: #1a1932;
            color: #fffffe;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #ff8906;
            box-shadow: 0 0 0 3px rgba(255, 137, 6, 0.2);
        }
        .search-form button {
            padding: 0.75rem 1.8rem;
            border: none;
            border-radius: 40px;
            background: #ff8906;
            color: #0f0e17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #f25f4c;
            transform: scale(1.02);
        }
        .rating-area {
            background: #1a1932;
            border-radius: 16px;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.5rem 2.5rem;
            border: 1px solid #2d2a3e;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 2rem;
            color: #ff8906;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: transform 0.15s, color 0.2s;
        }
        .rating-stars .star:hover {
            transform: scale(1.2);
            color: #f25f4c;
        }
        .rating-stars .star.active {
            color: #ff8906;
        }
        .rating-stars .star.inactive {
            color: #3d3a5c;
        }
        .rating-info {
            font-size: 0.95rem;
            color: #a7a9be;
        }
        .rating-info strong {
            color: #fffffe;
        }
        .rating-form button {
            padding: 0.6rem 1.6rem;
            border: none;
            border-radius: 40px;
            background: #ff8906;
            color: #0f0e17;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-form button:hover {
            background: #f25f4c;
        }
        .comment-section {
            background: #1a1932;
            border-radius: 16px;
            padding: 2rem;
            margin: 2.5rem 0;
            border: 1px solid #2d2a3e;
        }
        .comment-section h3 {
            margin-top: 0;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.2rem;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 0.8rem 1.2rem;
            border: 2px solid #2d2a3e;
            border-radius: 12px;
            background: #0f0e17;
            color: #fffffe;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #ff8906;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button {
            align-self: flex-start;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 40px;
            background: #ff8906;
            color: #0f0e17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .comment-form button:hover {
            background: #f25f4c;
            transform: scale(1.02);
        }
        main {
            padding: 1rem 0 3rem;
        }
        .hero-img {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
        }
        .hero-img img {
            width: 100%;
            display: block;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .card {
            background: #1a1932;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            border: 1px solid #2d2a3e;
            transition: transform 0.2s, box-shadow 0.3s;
        }
        .card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(255, 137, 6, 0.08);
        }
        .card h3 {
            margin-top: 0;
        }
        .link-list {
            list-style: none;
            padding: 0;
        }
        .link-list li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #2d2a3e;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .link-list li:last-child {
            border-bottom: none;
        }
        .link-list li i {
            color: #ff8906;
            width: 1.2rem;
            text-align: center;
        }
        footer {
            border-top: 1px solid #2d2a3e;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
        }
        footer h4 {
            color: #ff8906;
            margin-top: 0;
            font-size: 1.1rem;
        }
        footer ul {
            list-style: none;
            padding: 0;
            margin: 0.5rem 0 0;
        }
        footer ul li {
            margin-bottom: 0.3rem;
        }
        footer ul li a {
            color: #a7a9be;
            font-size: 0.95rem;
        }
        footer ul li a:hover {
            color: #ff8906;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #2d2a3e;
            color: #a7a9be;
            font-size: 0.9rem;
        }
        .copyright strong {
            color: #fffffe;
        }
        friend-link {
            display: block;
            background: #1a1932;
            border-radius: 12px;
            padding: 1.2rem 1.8rem;
            margin: 1.5rem 0 0.5rem;
            border: 1px solid #2d2a3e;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
            padding: 0.2rem 0.6rem;
            background: #2d2a3e;
            border-radius: 20px;
            color: #fffffe;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
        }
        friend-link a:hover {
            background: #ff8906;
            color: #0f0e17;
            text-decoration: none;
        }
        .last-updated {
            display: inline-block;
            background: #2d2a3e;
            padding: 0.3rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #a7a9be;
            margin: 0.5rem 0 1.5rem;
        }
        .last-updated i {
            color: #ff8906;
            margin-right: 0.4rem;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.75rem;
            }
            h1 {
                font-size: 1.8rem;
                padding-left: 0.75rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1932;
                border-radius: 16px;
                padding: 1.2rem;
                margin-top: 0.5rem;
                border: 1px solid #2d2a3e;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 0.6rem 0.8rem;
                display: block;
                width: 100%;
            }
            header {
                flex-wrap: wrap;
            }
            .rating-area {
                flex-direction: column;
                align-items: flex-start;
                padding: 1.2rem;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            .card {
                padding: 1.2rem 1.2rem;
            }
            .search-form button {
                padding: 0.7rem 1.2rem;
            }
            .comment-section {
                padding: 1.2rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            footer .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo small {
                font-size: 0.65rem;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
            footer .footer-grid {
                grid-template-columns: 1fr;
            }
            .search-form input[type="text"] {
                min-width: 120px;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none;
            }
            .nav-menu {
                display: flex;
            }
            .content-grid {
                grid-template-columns: 1fr 1fr;
            }
            .content-grid .full-width {
                grid-column: 1 / -1;
            }
        }
        @media (min-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr 1fr 1fr;
            }
            .content-grid .full-width {
                grid-column: 1 / -1;
            }
        }
        .text-muted {
            color: #a7a9be;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .rounded-full {
            border-radius: 40px;
        }
        .bg-dark {
            background: #1a1932;
        }
        .p-2 {
            padding: 1.2rem;
        }
        .border-accent {
            border: 1px solid #2d2a3e;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #0f0e17;
        }
        ::-webkit-scrollbar-thumb {
            background: #2d2a3e;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ff8906;
        }
        ::selection {
            background: #ff8906;
            color: #0f0e17;
        }
