        * {
            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: #0d0d0d;
            color: #e8e8e8;
            line-height: 1.8;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            color: #f5a623;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 1.8em;
            margin-bottom: 0.6em;
            color: #ffffff;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #f5a623;
            padding-bottom: 0.3em;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #f5a623;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.4rem;
            color: #f0c27a;
        }
        h4 {
            font-size: 1.15rem;
            color: #ccc;
        }
        p {
            margin-bottom: 1.2em;
            font-size: 1.05rem;
        }
        ul,
        ol {
            margin: 0.8em 0 1.4em 2em;
        }
        li {
            margin-bottom: 0.4em;
        }
        strong {
            color: #ffd700;
        }
        .container {
            background: #1a1a1a;
            border-radius: 16px;
            padding: 30px 28px;
            margin: 20px 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0;
            border-bottom: 2px solid #2a2a2a;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5a623, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 0 20px rgba(245, 166, 35, 0.3);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #888;
            color: #888;
            letter-spacing: 1px;
            font-weight: 400;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            padding: 8px 16px;
            border-radius: 30px;
            background: #2a2a2a;
            color: #ddd;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .nav-list li a:hover {
            background: #f5a623;
            color: #0d0d0d;
            border-color: #f5a623;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #f5a623;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.3s;
        }
        .hamburger:hover {
            background: #2a2a2a;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 14px 0 8px 0;
            font-size: 0.85rem;
            color: #999;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 10px;
            color: #f5a623;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #f5a623;
        }
        .breadcrumb .current {
            color: #f5a623;
            font-weight: 600;
        }
        .search-wrap {
            display: flex;
            max-width: 500px;
            margin: 20px auto 30px auto;
            background: #2a2a2a;
            border-radius: 60px;
            overflow: hidden;
            border: 1px solid #3a3a3a;
            transition: border 0.3s;
        }
        .search-wrap:focus-within {
            border-color: #f5a623;
        }
        .search-wrap input {
            flex: 1;
            padding: 14px 22px;
            border: none;
            background: transparent;
            color: #fff;
            font-size: 1rem;
            outline: none;
        }
        .search-wrap input::placeholder {
            color: #777;
        }
        .search-wrap button {
            background: #f5a623;
            border: none;
            padding: 0 26px;
            color: #0d0d0d;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-wrap button:hover {
            background: #ffd700;
        }
        .hero-img {
            margin: 20px 0 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 30px rgba(245, 166, 35, 0.2);
        }
        .hero-img img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
        }
        .img-caption {
            text-align: center;
            font-size: 0.85rem;
            color: #999;
            margin-top: 8px;
            font-style: italic;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 10px;
        }
        .main-article {
            min-width: 0;
        }
        .sidebar {
            border-left: 1px solid #2a2a2a;
            padding-left: 30px;
        }
        .sidebar-section {
            background: #222;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 24px;
        }
        .sidebar-section h4 {
            margin-top: 0;
            border-bottom: 2px solid #f5a623;
            padding-bottom: 8px;
        }
        .sidebar-section ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .sidebar-section ul li {
            padding: 6px 0;
            border-bottom: 1px solid #2a2a2a;
        }
        .sidebar-section ul li a {
            color: #ccc;
        }
        .sidebar-section ul li a:hover {
            color: #f5a623;
        }
        .rating-box {
            background: #1e1e1e;
            border-radius: 12px;
            padding: 24px;
            margin: 30px 0;
            text-align: center;
            border: 1px solid #2a2a2a;
        }
        .rating-box h3 {
            margin-top: 0;
            color: #fff;
        }
        .stars {
            display: inline-flex;
            gap: 8px;
            font-size: 2.2rem;
            cursor: pointer;
            direction: rtl;
        }
        .stars input {
            display: none;
        }
        .stars label {
            color: #555;
            transition: color 0.3s, transform 0.2s;
            cursor: pointer;
        }
        .stars label:hover,
        .stars label:hover~label,
        .stars input:checked~label {
            color: #f5a623;
            transform: scale(1.1);
        }
        .rating-result {
            margin-top: 12px;
            font-weight: 600;
            color: #f5a623;
        }
        .comment-section {
            background: #1e1e1e;
            border-radius: 12px;
            padding: 28px;
            margin: 30px 0;
            border: 1px solid #2a2a2a;
        }
        .comment-section h3 {
            margin-top: 0;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 16px;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid #333;
            background: #2a2a2a;
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #f5a623;
            outline: none;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button {
            align-self: flex-start;
            padding: 12px 32px;
            background: #f5a623;
            border: none;
            border-radius: 30px;
            color: #0d0d0d;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .comment-form button:hover {
            background: #ffd700;
            transform: translateY(-2px);
        }
        .comment-list {
            margin-top: 24px;
            max-height: 400px;
            overflow-y: auto;
        }
        .comment-item {
            background: #2a2a2a;
            padding: 14px 18px;
            border-radius: 10px;
            margin-bottom: 12px;
            border-left: 4px solid #f5a623;
        }
        .comment-item .author {
            font-weight: 700;
            color: #f5a623;
        }
        .comment-item .time {
            font-size: 0.8rem;
            color: #888;
            margin-left: 12px;
        }
        friend-link {
            display: block;
            background: #1e1e1e;
            border-radius: 12px;
            padding: 24px 28px;
            margin: 30px 0 20px 0;
            border: 1px solid #2a2a2a;
        }
        friend-link::before {
            content: "🔗 Friends & Resources";
            display: block;
            font-size: 1.3rem;
            font-weight: 700;
            color: #f5a623;
            margin-bottom: 14px;
        }
        friend-link a {
            display: inline-block;
            padding: 6px 16px;
            margin: 4px 6px;
            background: #2a2a2a;
            border-radius: 20px;
            color: #ddd;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        friend-link a:hover {
            background: #f5a623;
            color: #0d0d0d;
            text-decoration: none;
        }
        .site-footer {
            border-top: 2px solid #2a2a2a;
            padding: 30px 0 20px 0;
            text-align: center;
            color: #888;
            font-size: 0.9rem;
            margin-top: 40px;
        }
        .site-footer .copyright {
            margin-top: 12px;
            color: #666;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: #222;
            border-radius: 12px;
            overflow: hidden;
        }
        .data-table th {
            background: #f5a623;
            color: #0d0d0d;
            padding: 12px 16px;
            text-align: left;
            font-weight: 700;
        }
        .data-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #2a2a2a;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #2a2a2a;
        }
        @media (max-width: 900px) {
            .content-area {
                grid-template-columns: 1fr;
            }
            .sidebar {
                border-left: none;
                padding-left: 0;
                margin-top: 30px;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            body {
                padding: 0 14px;
            }
            .container {
                padding: 18px 14px;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a1a;
                padding: 16px 0;
                border-radius: 0 0 12px 12px;
                position: absolute;
                top: 100%;
                left: 0;
                z-index: 100;
                box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
                gap: 2px;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                display: block;
                padding: 12px 20px;
                border-radius: 0;
                background: transparent;
                border: none;
            }
            .nav-list li a:hover {
                background: #2a2a2a;
                color: #f5a623;
            }
            .hamburger {
                display: block;
            }
            .site-header {
                position: relative;
            }
            .hero-img img {
                max-height: 220px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .stars {
                font-size: 1.8rem;
            }
            .search-wrap {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-wrap button {
                padding: 12px;
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 12px 10px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            .rating-box {
                padding: 16px;
            }
            .comment-section {
                padding: 16px;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #f5a623;
            border-radius: 10px;
        }
        .last-updated {
            color: #999;
            font-size: 0.85rem;
            text-align: right;
            margin-top: 6px;
            padding-top: 6px;
            border-top: 1px solid #2a2a2a;
        }
        .highlight-box {
            background: #2a1f0a;
            border-left: 5px solid #f5a623;
            padding: 18px 22px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(12px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
