        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0f0e17;
            color: #fffffe;
            line-height: 1.8;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #ff8906;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #f25f4c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: #1a1a2e;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
            border-bottom: 3px solid #ff8906;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: #ff8906;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #ff8906, #f25f4c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(255, 137, 6, 0.3);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
            -webkit-text-fill-color: transparent;
        }
        .nav-menu {
            display: flex;
            gap: 1.2rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #fffffe;
            font-weight: 600;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            transition: background 0.3s ease, color 0.3s ease;
            font-size: 0.95rem;
        }
        .nav-menu a:hover {
            background: #ff8906;
            color: #0f0e17;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: #ff8906;
            background: none;
            border: none;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.3s ease;
        }
        .hamburger:hover {
            background: rgba(255, 137, 6, 0.15);
        }
        .breadcrumb {
            background: #1a1a2e;
            padding: 0.7rem 0;
            border-bottom: 1px solid #2a2a4a;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.8rem;
            color: #ff8906;
        }
        .breadcrumb a {
            color: #a7a9be;
        }
        .breadcrumb a:hover {
            color: #ff8906;
        }
        .breadcrumb .current {
            color: #fffffe;
            font-weight: 600;
        }
        .hero {
            padding: 3rem 0 2rem;
            text-align: center;
            background: linear-gradient(145deg, #0f0e17 0%, #1a1a2e 100%);
            border-bottom: 2px solid #2a2a4a;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ff8906, #f25f4c, #ff8906);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            letter-spacing: 1px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            color: #a7a9be;
            max-width: 800px;
            margin: 0 auto 1.5rem;
        }
        .hero .last-updated {
            display: inline-block;
            background: #2a2a4a;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #ff8906;
            border: 1px solid #ff8906;
        }
        section {
            padding: 2.5rem 0;
            border-bottom: 1px solid #2a2a4a;
        }
        section:last-of-type {
            border-bottom: none;
        }
        h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #ff8906;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #f25f4c;
            display: inline-block;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #f25f4c;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #fffffe;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
            border-left: 4px solid #ff8906;
            padding-left: 1rem;
        }
        p {
            margin-bottom: 1.2rem;
            color: #e0e0e0;
        }
        .highlight {
            background: rgba(255, 137, 6, 0.12);
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
            color: #ff8906;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 0.3rem;
        }
        .feature-box {
            background: #1a1a2e;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 1.5rem 0;
            border-left: 6px solid #ff8906;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }
        .feature-box p:last-child {
            margin-bottom: 0;
        }
        .grid-2,
        .grid-3 {
            display: grid;
            gap: 1.8rem;
            margin: 1.5rem 0;
        }
        .grid-2 {
            grid-template-columns: 1fr 1fr;
        }
        .grid-3 {
            grid-template-columns: 1fr 1fr 1fr;
        }
        .card {
            background: #1a1a2e;
            border-radius: 14px;
            padding: 1.5rem;
            border: 1px solid #2a2a4a;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(255, 137, 6, 0.15);
            border-color: #ff8906;
        }
        .card h4 {
            margin-top: 0;
            border-left-color: #f25f4c;
        }
        .card i {
            color: #ff8906;
            font-size: 1.8rem;
            margin-bottom: 0.8rem;
            display: inline-block;
        }
        .content-img {
            margin: 2rem 0;
            border-radius: 16px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            border: 2px solid #2a2a4a;
            transition: transform 0.4s ease;
        }
        .content-img:hover {
            transform: scale(1.01);
        }
        .img-caption {
            text-align: center;
            font-size: 0.9rem;
            color: #a7a9be;
            margin-top: 0.6rem;
            font-style: italic;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #1a1a2e;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2a2a4a;
        }
        .data-table th {
            background: #ff8906;
            color: #0f0e17;
            padding: 0.8rem 1.2rem;
            text-align: left;
            font-weight: 700;
        }
        .data-table td {
            padding: 0.7rem 1.2rem;
            border-bottom: 1px solid #2a2a4a;
            color: #e0e0e0;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: rgba(255, 137, 6, 0.08);
        }
        .search-box {
            display: flex;
            gap: 0.5rem;
            max-width: 600px;
            margin: 1.5rem 0;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            min-width: 180px;
            padding: 0.9rem 1.2rem;
            border: 2px solid #2a2a4a;
            border-radius: 8px;
            background: #1a1a2e;
            color: #fffffe;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s ease;
        }
        .search-box input:focus {
            border-color: #ff8906;
        }
        .search-box button {
            padding: 0.9rem 2rem;
            background: #ff8906;
            color: #0f0e17;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
        }
        .search-box button:hover {
            background: #f25f4c;
            transform: scale(1.02);
        }
        .comment-form,
        .rating-form {
            background: #1a1a2e;
            padding: 1.8rem 2rem;
            border-radius: 16px;
            margin: 1.5rem 0;
            border: 1px solid #2a2a4a;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form select,
        .rating-form input {
            width: 100%;
            padding: 0.8rem 1rem;
            margin-bottom: 1rem;
            border: 2px solid #2a2a4a;
            border-radius: 8px;
            background: #0f0e17;
            color: #fffffe;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s ease;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form select:focus,
        .rating-form input:focus {
            border-color: #ff8906;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            padding: 0.8rem 2.2rem;
            background: #ff8906;
            color: #0f0e17;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #f25f4c;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #2a2a4a;
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .rating-stars .star.active {
            color: #ff8906;
        }
        .rating-stars .star:hover,
        .rating-stars .star.hover {
            color: #f25f4c;
        }
        friend-link {
            display: block;
            padding: 2rem 0;
            border-top: 2px solid #2a2a4a;
            margin-top: 2rem;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            padding: 0;
        }
        friend-link ul li a {
            color: #a7a9be;
            font-size: 0.95rem;
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            background: #1a1a2e;
            border: 1px solid #2a2a4a;
            transition: all 0.3s ease;
        }
        friend-link ul li a:hover {
            color: #ff8906;
            border-color: #ff8906;
            background: rgba(255, 137, 6, 0.1);
            text-decoration: none;
        }
        .site-footer {
            background: #1a1a2e;
            padding: 2rem 0;
            text-align: center;
            border-top: 3px solid #ff8906;
        }
        .site-footer p {
            color: #a7a9be;
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
        }
        .site-footer .copyright {
            color: #ff8906;
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.6rem;
                padding: 1rem 0 0.5rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.6rem 1rem;
                width: 100%;
                text-align: center;
                background: #2a2a4a;
                border-radius: 8px;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
            }
            .search-box input {
                min-width: 140px;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .feature-box {
                padding: 1.2rem 1.2rem;
            }
            .comment-form,
            .rating-form {
                padding: 1.2rem 1.2rem;
            }
            .search-box button {
                padding: 0.8rem 1.2rem;
            }
        }
        .scroll-offset {
            scroll-margin-top: 90px;
        }
        .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;
        }
        .inline-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
        }
        .inline-list li::before {
            content: "●";
            color: #ff8906;
            margin-right: 0.5rem;
        }
