        *,
        *::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, Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.7;
            padding: 0 1rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f7c948;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #ffdd77;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f0f4fe;
        }
        h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            margin-bottom: 0.5rem;
        }
        h2 {
            font-size: clamp(1.5rem, 3.5vw, 2.2rem);
            margin-top: 2.8rem;
            margin-bottom: 0.8rem;
            border-left: 5px solid #f7c948;
            padding-left: 1rem;
        }
        h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            margin-top: 2rem;
            margin-bottom: 0.5rem;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.5rem;
            margin-bottom: 0.3rem;
            color: #cfddee;
        }
        p {
            margin-bottom: 1.2rem;
            max-width: 75ch;
        }
        ul,
        ol {
            margin-bottom: 1.2rem;
            padding-left: 1.6rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        strong {
            color: #f7c948;
            font-weight: 600;
        }
        em {
            color: #b0c6dd;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0.5rem;
            width: 100%;
        }
        header {
            padding: 1rem 0 0.5rem;
            border-bottom: 1px solid #1e293b;
            position: relative;
            background: #0b0e14;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f7c948;
            letter-spacing: -0.5px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f7c948 0%, #f5a623 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #8a9bb5;
            color: #8a9bb5;
            display: block;
            letter-spacing: 1px;
            text-transform: none;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 0.2rem 1.2rem;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.4rem 0.2rem;
            color: #cbd5e1;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-list li a:hover,
        .nav-list li a.active {
            color: #f7c948;
            border-bottom-color: #f7c948;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0f4fe;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            transition: 0.2s;
        }
        .hamburger:hover {
            color: #f7c948;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            font-size: 0.85rem;
            color: #8a9bb5;
            padding: 0.6rem 0 0.2rem;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #4a5a72;
        }
        .breadcrumb a {
            color: #8a9bb5;
        }
        .breadcrumb a:hover {
            color: #f7c948;
        }
        .breadcrumb .current {
            color: #e8edf5;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #6a7b94;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin: 0.4rem 0 1.2rem;
            padding: 0.3rem 0.8rem;
            background: #141a24;
            border-radius: 20px;
            width: fit-content;
        }
        .last-updated i {
            color: #f7c948;
        }
        .search-box {
            display: flex;
            max-width: 480px;
            margin: 1.5rem 0 1rem;
            border-radius: 40px;
            overflow: hidden;
            border: 1px solid #2a3648;
            background: #141a24;
            transition: 0.3s;
        }
        .search-box:focus-within {
            border-color: #f7c948;
            box-shadow: 0 0 0 3px rgba(247, 201, 72, 0.15);
        }
        .search-box input {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border: none;
            background: transparent;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
            min-width: 0;
        }
        .search-box input::placeholder {
            color: #5a6a82;
        }
        .search-box button {
            background: #f7c948;
            border: none;
            padding: 0.8rem 1.4rem;
            color: #0b0e14;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-box button:hover {
            background: #f5bd2e;
        }
        .hero-image {
            margin: 1.5rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            background: #141a24;
            position: relative;
        }
        .hero-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .hero-image figcaption {
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #8a9bb5;
            background: #141a24;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem 3rem;
        }
        @media(min-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr 300px;
            }
            .content-grid .main {
                order: 1;
            }
            .content-grid .sidebar {
                order: 2;
            }
        }
        .card {
            background: #141a24;
            border-radius: 16px;
            padding: 1.5rem 1.8rem;
            margin-bottom: 1.8rem;
            border: 1px solid #1e293b;
            transition: 0.2s;
        }
        .card:hover {
            border-color: #2a3648;
        }
        .card h3 {
            margin-top: 0;
        }
        .stat-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            margin: 1.2rem 0;
        }
        .stat-item {
            background: #0b0e14;
            padding: 0.8rem 1.4rem;
            border-radius: 12px;
            border-left: 4px solid #f7c948;
            flex: 1 1 140px;
        }
        .stat-item .num {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f7c948;
            display: block;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #8a9bb5;
        }
        .rating-area {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem 2rem;
            margin: 1rem 0;
            padding: 1rem 0;
            border-top: 1px solid #1e293b;
            border-bottom: 1px solid #1e293b;
        }
        .stars {
            display: flex;
            gap: 0.2rem;
            font-size: 1.6rem;
            color: #3a4a5e;
            cursor: pointer;
        }
        .stars i {
            transition: 0.15s;
        }
        .stars i.active,
        .stars i:hover {
            color: #f7c948;
        }
        .stars i:hover~i {
            color: #3a4a5e;
        }
        .rating-form {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.8rem 1.2rem;
            width: 100%;
        }
        .rating-form input[type="number"] {
            width: 80px;
            padding: 0.4rem 0.6rem;
            border-radius: 8px;
            border: 1px solid #2a3648;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 1rem;
        }
        .rating-form button {
            background: #f7c948;
            border: none;
            padding: 0.4rem 1.2rem;
            border-radius: 20px;
            font-weight: 600;
            color: #0b0e14;
            cursor: pointer;
            transition: 0.2s;
        }
        .rating-form button:hover {
            background: #f5bd2e;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin: 1rem 0 1.5rem;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 0.7rem 1rem;
            border-radius: 10px;
            border: 1px solid #2a3648;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 0.95rem;
            font-family: inherit;
            transition: 0.2s;
            width: 100%;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #f7c948;
            outline: none;
            box-shadow: 0 0 0 3px rgba(247, 201, 72, 0.1);
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button {
            align-self: flex-start;
            background: #f7c948;
            border: none;
            padding: 0.6rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            color: #0b0e14;
            cursor: pointer;
            transition: 0.2s;
            font-size: 1rem;
        }
        .comment-form button:hover {
            background: #f5bd2e;
        }
        .sidebar-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-links li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #1a2332;
        }
        .sidebar-links li a {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: #cbd5e1;
        }
        .sidebar-links li a:hover {
            color: #f7c948;
            text-decoration: none;
        }
        .sidebar-links li a i {
            width: 1.2rem;
            color: #f7c948;
            font-size: 0.9rem;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0;
            border-top: 1px solid #1e293b;
            margin-top: 1.5rem;
        }
        friend-link .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.8rem;
            list-style: none;
            padding: 0;
            margin: 0.6rem 0 0;
        }
        friend-link .friend-list li a {
            color: #8a9bb5;
            font-size: 0.9rem;
        }
        friend-link .friend-list li a:hover {
            color: #f7c948;
        }
        footer {
            padding: 1.5rem 0 2.5rem;
            border-top: 1px solid #1e293b;
            margin-top: 2rem;
            font-size: 0.85rem;
            color: #6a7b94;
            text-align: center;
        }
        footer .copyright {
            margin-top: 0.8rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.3rem 1.2rem;
        }
        @media(max-width: 767px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #141a24;
                padding: 1rem 1.2rem;
                border-radius: 0 0 16px 16px;
                gap: 0.6rem 0;
                margin-top: 0.8rem;
                border: 1px solid #1e293b;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                display: block;
                padding: 0.5rem 0;
            }
            .header-inner {
                align-items: center;
            }
            .card {
                padding: 1.2rem 1rem;
            }
            .stat-item {
                flex: 1 1 100%;
            }
            .rating-area {
                flex-direction: column;
                align-items: stretch;
            }
            .search-box {
                max-width: 100%;
            }
            .hero-image img {
                max-height: 240px;
            }
        }
        @media(min-width: 768px) and (max-width: 991px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0e14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a3648;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a4a5e;
        }
        ::selection {
            background: #f7c948;
            color: #0b0e14;
        }
