        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.75;
            color: #1e1e2a;
            background: #f8f7f4;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #c0392b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #e74c3c;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #fff;
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: #f39c12;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            color: #e74c3c;
            font-size: 2rem;
        }
        .my-logo span {
            color: #fff;
            font-weight: 300;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 6px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #ddd;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.25s;
            white-space: nowrap;
        }
        .nav-menu a:hover {
            background: rgba(243, 156, 18, 0.2);
            color: #f39c12;
            text-decoration: none;
        }
        .nav-menu a.active {
            background: #f39c12;
            color: #1a1a2e;
        }
        .breadcrumb {
            background: #f0ede8;
            padding: 10px 20px;
            font-size: 0.85rem;
            border-bottom: 1px solid #e0dbd2;
        }
        .breadcrumb-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb a {
            color: #7f8c8d;
        }
        .breadcrumb a:hover {
            color: #c0392b;
        }
        .breadcrumb span {
            color: #2c3e50;
            font-weight: 500;
        }
        .breadcrumb i {
            font-size: 0.7rem;
            color: #bdc3c7;
            margin: 0 4px;
        }
        .hero {
            background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
            color: #fff;
            padding: 60px 20px 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "💥⚡🔥";
            position: absolute;
            bottom: 10px;
            right: 30px;
            font-size: 4rem;
            opacity: 0.15;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            letter-spacing: -1px;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero h1 i {
            color: #f39c12;
            margin-right: 10px;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 750px;
            margin: 0 auto 20px;
            color: #ccc;
            font-weight: 300;
        }
        .hero .last-updated {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #f39c12;
            border: 1px solid rgba(243, 156, 18, 0.3);
        }
        .search-section {
            background: #fff;
            padding: 30px 20px;
            border-bottom: 1px solid #e0dbd2;
        }
        .search-form {
            max-width: 650px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid #ddd;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input:focus {
            border-color: #f39c12;
        }
        .search-form button {
            padding: 14px 32px;
            background: #e74c3c;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #c0392b;
            transform: scale(1.02);
        }
        .main-content {
            padding: 40px 20px 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .content-body h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #1a1a2e;
            margin: 50px 0 16px;
            padding-bottom: 8px;
            border-bottom: 4px solid #f39c12;
            display: inline-block;
        }
        .content-body h2 i {
            color: #e74c3c;
            margin-right: 10px;
        }
        .content-body h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin: 36px 0 12px;
        }
        .content-body h3 i {
            color: #f39c12;
            margin-right: 8px;
            font-size: 1.3rem;
        }
        .content-body h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #34495e;
            margin: 24px 0 10px;
        }
        .content-body p {
            margin-bottom: 18px;
            color: #2d2d3a;
            font-size: 1.05rem;
        }
        .content-body ul,
        .content-body ol {
            margin: 16px 0 24px 24px;
        }
        .content-body li {
            margin-bottom: 10px;
            font-size: 1.05rem;
        }
        .content-body .highlight-box {
            background: #fef9e7;
            border-left: 5px solid #f39c12;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .content-body .highlight-box strong {
            color: #c0392b;
        }
        .content-body .stat-badge {
            display: inline-block;
            background: #1a1a2e;
            color: #f39c12;
            padding: 2px 12px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9rem;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            position: relative;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.4s;
        }
        .featured-image:hover img {
            transform: scale(1.02);
        }
        .featured-image figcaption {
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 10px 18px;
            font-size: 0.85rem;
            text-align: center;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin-bottom: 28px;
            border: 1px solid #eee;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card h3 i {
            color: #f39c12;
        }
        .sidebar-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-links li {
            border-bottom: 1px solid #f0ede8;
            padding: 8px 0;
        }
        .sidebar-links li:last-child {
            border-bottom: none;
        }
        .sidebar-links a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #2c3e50;
            font-weight: 500;
            font-size: 0.95rem;
        }
        .sidebar-links a:hover {
            color: #c0392b;
            text-decoration: none;
        }
        .sidebar-links a i {
            color: #e74c3c;
            font-size: 0.8rem;
            width: 18px;
        }
        .rating-section {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin-bottom: 28px;
            border: 1px solid #eee;
        }
        .rating-section h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .rating-section h3 i {
            color: #f1c40f;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin: 12px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f1c40f;
            transform: scale(1.1);
        }
        .rating-form button {
            background: #f39c12;
            color: #1a1a2e;
            border: none;
            padding: 10px 28px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            font-size: 0.95rem;
            margin-top: 8px;
        }
        .rating-form button:hover {
            background: #e67e22;
            transform: scale(1.02);
        }
        .comments-section {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin-bottom: 28px;
            border: 1px solid #eee;
        }
        .comments-section h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comments-section h3 i {
            color: #3498db;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px;
            border: 2px solid #ddd;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border 0.3s;
        }
        .comment-form textarea:focus {
            border-color: #3498db;
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 12px 14px;
            border: 2px solid #ddd;
            border-radius: 12px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
            margin: 10px 0;
        }
        .comment-form input[type="text"]:focus {
            border-color: #3498db;
        }
        .comment-form button {
            background: #3498db;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover {
            background: #2980b9;
            transform: scale(1.02);
        }
        friend-link {
            display: block;
            padding: 40px 20px;
            background: #1a1a2e;
            color: #fff;
            text-align: center;
        }
        friend-link .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        friend-link h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #f39c12;
        }
        friend-link .friend-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 20px;
            list-style: none;
            padding: 0;
        }
        friend-link .friend-list a {
            color: #ccc;
            font-size: 0.95rem;
            padding: 6px 16px;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.3s;
        }
        friend-link .friend-list a:hover {
            color: #f39c12;
            border-color: #f39c12;
            text-decoration: none;
            background: rgba(243, 156, 18, 0.08);
        }
        .site-footer {
            background: #0f0f1a;
            color: #aaa;
            padding: 30px 20px;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .site-footer .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .site-footer p {
            font-size: 0.9rem;
            margin-bottom: 6px;
        }
        .site-footer a {
            color: #f39c12;
        }
        .site-footer a:hover {
            color: #e67e22;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .hero h1 {
                font-size: 2.4rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 16px 0 8px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 12px 18px;
                border-radius: 8px;
                text-align: center;
            }
            .header-inner {
                padding: 12px 16px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .content-body h2 {
                font-size: 1.6rem;
            }
            .content-body h3 {
                font-size: 1.3rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 8px 16px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero {
                padding: 40px 16px 36px;
            }
            .container {
                padding: 0 12px;
            }
            .main-content {
                padding: 24px 12px 40px;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
        }
        .sidebar-card,
        .rating-section,
        .comments-section,
        .featured-image {
            transition: box-shadow 0.3s;
        }
        .sidebar-card:hover,
        .rating-section:hover,
        .comments-section:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .content-body table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 0.95rem;
        }
        .content-body th {
            background: #1a1a2e;
            color: #f39c12;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .content-body td {
            padding: 10px 16px;
            border-bottom: 1px solid #eee;
        }
        .content-body tr:nth-child(even) {
            background: #faf9f7;
        }
        .content-body tr:hover {
            background: #fef9e7;
        }
        .content-body blockquote {
            background: #f0ede8;
            border-left: 5px solid #e74c3c;
            padding: 18px 24px;
            margin: 24px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #2c3e50;
        }
        .content-body blockquote strong {
            color: #c0392b;
        }
