        *,
        *::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;
            background: #fafafa;
            color: #1a1a2e;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #e10600;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #b00500;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #0d0d1a;
            font-weight: 700;
        }
        h1 {
            font-size: 2.4rem;
            margin: 0 0 0.75rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
            border-bottom: 3px solid #e10600;
            padding-bottom: 0.35rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.8rem 0 0.75rem;
            color: #1a1a2e;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.5rem;
            color: #2d2d44;
        }
        p {
            margin-bottom: 1.1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
            width: 100%;
        }
        .site-header {
            background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 100%);
            color: #fff;
            padding: 0.75rem 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;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.6rem;
            font-weight: 900;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: -0.5px;
            transition: opacity 0.2s;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
            color: #fff;
        }
        .my-logo .logo-icon {
            font-size: 1.8rem;
            color: #e10600;
        }
        .my-logo .logo-text {
            background: #e10600;
            padding: 0.1rem 0.5rem;
            border-radius: 4px;
            font-size: 1.2rem;
            margin-left: 0.2rem;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .main-nav {
            display: flex;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #ddd;
            padding: 0.45rem 0.9rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(225, 6, 0, 0.2);
            color: #fff;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #e10600;
            color: #fff;
        }
        .hamburger {
            display: none;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb-wrap {
            background: #f0f0f5;
            padding: 0.5rem 0;
            border-bottom: 1px solid #e0e0e8;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.85rem;
            color: #555;
        }
        .breadcrumb a {
            color: #e10600;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .sep {
            color: #999;
            font-size: 0.75rem;
        }
        .hero {
            background: linear-gradient(135deg, #0d0d1a 0%, #2a0a0a 100%);
            color: #fff;
            padding: 3rem 0 2.5rem;
            margin-bottom: 2rem;
            border-bottom: 4px solid #e10600;
        }
        .hero h1 {
            color: #fff;
            font-size: 2.6rem;
            margin-bottom: 0.5rem;
        }
        .hero .subtitle {
            font-size: 1.15rem;
            color: #ccc;
            max-width: 700px;
            margin-bottom: 1.5rem;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            font-size: 0.9rem;
            color: #aaa;
        }
        .hero-meta i {
            color: #e10600;
            margin-right: 0.3rem;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 0 0 2.5rem;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border: 1px solid #f0f0f5;
            transition: box-shadow 0.3s;
        }
        .card:hover {
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
        }
        .card h3 {
            margin-top: 0;
        }
        .featured-image {
            border-radius: 12px;
            overflow: hidden;
            margin: 1.5rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .featured-image figcaption {
            background: #f8f8fc;
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #666;
            border-top: 1px solid #eee;
        }
        .link-group {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            padding: 0.5rem 0;
        }
        .link-group a {
            font-weight: 500;
            padding: 0.2rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s;
        }
        .link-group a:hover {
            border-bottom-color: #e10600;
            text-decoration: none;
        }
        .search-box {
            display: flex;
            gap: 0.5rem;
            margin: 1.2rem 0;
        }
        .search-box input {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: border-color 0.25s;
            outline: none;
        }
        .search-box input:focus {
            border-color: #e10600;
        }
        .search-box button {
            background: #e10600;
            color: #fff;
            border: none;
            padding: 0 1.4rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-box button:hover {
            background: #b00500;
            transform: scale(1.02);
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-top: 0.75rem;
        }
        .comment-form textarea {
            padding: 0.7rem 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 0.95rem;
            min-height: 80px;
            resize: vertical;
            font-family: inherit;
            transition: border-color 0.25s;
            outline: none;
        }
        .comment-form textarea:focus {
            border-color: #e10600;
        }
        .comment-form input,
        .rating-form input {
            padding: 0.6rem 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.25s;
        }
        .comment-form input:focus,
        .rating-form input:focus {
            border-color: #e10600;
        }
        .form-row {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }
        .form-row input {
            flex: 1;
            min-width: 160px;
        }
        .btn-primary {
            background: #e10600;
            color: #fff;
            border: none;
            padding: 0.65rem 1.5rem;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            align-self: flex-start;
        }
        .btn-primary:hover {
            background: #b00500;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 0.25rem;
            font-size: 1.6rem;
            color: #ddd;
            cursor: pointer;
        }
        .rating-stars i.active {
            color: #f5a623;
        }
        .rating-stars i:hover,
        .rating-stars i.active~i {
            color: #ddd;
        }
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: #f5a623;
        }
        .sidebar .card {
            padding: 1.25rem;
        }
        .sidebar .card h4 {
            margin-top: 0;
            border-bottom: 2px solid #e10600;
            padding-bottom: 0.3rem;
        }
        .sidebar-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .sidebar-links a {
            padding: 0.35rem 0;
            border-bottom: 1px solid #f0f0f5;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar-links a i {
            color: #e10600;
            width: 1.2rem;
            text-align: center;
        }
        .site-footer {
            background: #0d0d1a;
            color: #bbb;
            padding: 2.5rem 0 1.5rem;
            margin-top: auto;
            border-top: 4px solid #e10600;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .site-footer h4 {
            color: #fff;
            margin-bottom: 0.75rem;
            font-size: 1.1rem;
            border-bottom: 2px solid #e10600;
            padding-bottom: 0.3rem;
            display: inline-block;
        }
        .site-footer a {
            color: #ccc;
        }
        .site-footer a:hover {
            color: #e10600;
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }
        .footer-bottom {
            border-top: 1px solid #2a2a3e;
            padding-top: 1.2rem;
            text-align: center;
            font-size: 0.85rem;
            color: #888;
        }
        .footer-bottom .copy {
            color: #e10600;
            font-weight: 600;
        }
        friend-link {
            display: block;
            padding: 0.5rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.5rem 0.2rem 0;
            padding: 0.2rem 0.8rem;
            background: rgba(225, 6, 0, 0.1);
            border-radius: 20px;
            font-size: 0.85rem;
            border: 1px solid rgba(225, 6, 0, 0.2);
        }
        friend-link a:hover {
            background: rgba(225, 6, 0, 0.2);
            text-decoration: none;
        }
        @media (max-width: 900px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a2e;
                padding: 0.75rem 0.5rem;
                border-radius: 0 0 12px 12px;
                gap: 0.15rem;
                margin-top: 0.5rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-radius: 6px;
            }
            .header-inner {
                align-items: center;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .hero .subtitle {
                font-size: 1rem;
            }
            .container {
                padding: 0 0.9rem;
            }
            .card {
                padding: 1rem;
            }
            .form-row {
                flex-direction: column;
            }
            .form-row input {
                min-width: unset;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo .logo-text {
                font-size: 1rem;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box button {
                padding: 0.6rem 1rem;
                justify-content: center;
            }
        }
        .text-muted {
            color: #888;
            font-size: 0.9rem;
        }
        .tag {
            display: inline-block;
            background: #f0f0f5;
            color: #1a1a2e;
            padding: 0.15rem 0.6rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-right: 0.3rem;
        }
        .tag-red {
            background: #e10600;
            color: #fff;
        }
        .highlight {
            background: linear-gradient(to top, rgba(225, 6, 0, 0.12) 40%, transparent 40%);
            font-weight: 600;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1rem;
            margin: 1rem 0;
        }
        .stat-item {
            background: #f8f8fc;
            padding: 0.8rem;
            border-radius: 10px;
            text-align: center;
            border-left: 4px solid #e10600;
        }
        .stat-item .num {
            font-size: 1.8rem;
            font-weight: 900;
            color: #e10600;
            display: block;
        }
        .stat-item .label {
            font-size: 0.8rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .emoji-big {
            font-size: 1.8rem;
            line-height: 1;
        }
