        *,
        *::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, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0f1923;
            color: #ece8e1;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #ff4655;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ff7b85;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f0eae3;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.8rem;
            margin-bottom: 0.8rem;
            border-bottom: 2px solid #ff4655;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 2rem;
            margin-bottom: 0.6rem;
            color: #ffd7a0;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.4rem;
            margin-bottom: 0.4rem;
            color: #bdbfc4;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #1a2a3a;
            background: linear-gradient(145deg, #0b1a2a 0%, #1f2e3f 100%);
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
            border-bottom: 2px solid #ff4655;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #ff4655;
            letter-spacing: -0.5px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #ff4655, #ff7b85);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.65rem;
            -webkit-text-fill-color: #aab;
            color: #aab;
            display: block;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #ece8e1;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 70, 85, 0.2);
        }
        .primary-nav {
            display: flex;
            gap: 1.2rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .primary-nav a {
            color: #d0cdc8;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
        }
        .primary-nav a:hover {
            background: rgba(255, 70, 85, 0.15);
            color: #ff4655;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 0.6rem 0 0.2rem 0;
            font-size: 0.85rem;
            color: #8899aa;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #8899aa;
        }
        .breadcrumb a:hover {
            color: #ff4655;
        }
        .breadcrumb span {
            color: #556;
        }
        .hero-section {
            background: linear-gradient(135deg, #0b1926 0%, #1a2f42 100%);
            padding: 3rem 0 2.5rem;
            border-radius: 0 0 40px 40px;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .hero-section h1 {
            font-size: 2.8rem;
            margin-bottom: 0.6rem;
            background: linear-gradient(135deg, #ff4655, #ffb347);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-section p {
            font-size: 1.2rem;
            max-width: 760px;
            margin: 0 auto 1.2rem;
            color: #cbd5e0;
        }
        .hero-badge {
            display: inline-block;
            background: #ff4655;
            color: #fff;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 0.8rem;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #7a8a9a;
            margin-top: 0.8rem;
        }
        .last-updated i {
            margin-right: 0.3rem;
        }
        .search-wrap {
            background: #1e2d3d;
            border-radius: 60px;
            padding: 0.4rem 0.4rem 0.4rem 1.5rem;
            display: flex;
            align-items: center;
            max-width: 520px;
            margin: 1.5rem auto 0;
            border: 1px solid #2a3f55;
            transition: border-color 0.3s;
        }
        .search-wrap:focus-within {
            border-color: #ff4655;
        }
        .search-wrap input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 0.7rem 0;
            font-size: 1rem;
            color: #ece8e1;
            outline: none;
            min-width: 0;
        }
        .search-wrap input::placeholder {
            color: #6a7a8a;
        }
        .search-wrap button {
            background: #ff4655;
            border: none;
            color: #fff;
            padding: 0.6rem 1.6rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-wrap button:hover {
            background: #e03340;
            transform: scale(0.97);
        }
        .content-area {
            padding: 1.2rem 0 2rem;
        }
        .content-area .container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .main-article {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #1a2a3a;
            border-radius: 16px;
            padding: 1.4rem;
            margin-bottom: 1.6rem;
            border: 1px solid #2a3f55;
        }
        .sidebar-card h4 {
            color: #ff4655;
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 1px solid #2a3f55;
            padding-bottom: 0.5rem;
            margin-bottom: 0.8rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 0.5rem;
        }
        .sidebar-card a {
            color: #c8d0d8;
            font-size: 0.95rem;
            display: block;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
        }
        .sidebar-card a:hover {
            background: rgba(255, 70, 85, 0.1);
            color: #ff4655;
            text-decoration: none;
        }
        .featured-image-wrap {
            margin: 1.8rem 0 2.2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        }
        .featured-image-wrap img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image-wrap figcaption {
            background: #1a2a3a;
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            color: #8a9aaa;
            text-align: center;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1rem;
            background: #1a2a3a;
            border-radius: 12px;
            padding: 1rem 1.4rem;
            margin: 1.6rem 0;
            border-left: 4px solid #ff4655;
            list-style: none;
        }
        .link-list-inline li {
            margin: 0;
        }
        .link-list-inline a {
            font-weight: 500;
            font-size: 0.95rem;
        }
        .highlight-box {
            background: #1a2a3a;
            border-left: 5px solid #ff4655;
            padding: 1.2rem 1.6rem;
            border-radius: 0 12px 12px 0;
            margin: 1.6rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .req-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.6rem 0;
            background: #1a2a3a;
            border-radius: 12px;
            overflow: hidden;
        }
        .req-table th,
        .req-table td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #2a3f55;
        }
        .req-table th {
            background: #ff4655;
            color: #fff;
            font-weight: 600;
        }
        .req-table td {
            color: #d0d8e0;
        }
        .req-table tr:last-child td {
            border-bottom: none;
        }
        .interaction-area {
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 2px solid #2a3f55;
        }
        .comment-form,
        .score-form {
            background: #1a2a3a;
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1.8rem;
            border: 1px solid #2a3f55;
        }
        .comment-form h3,
        .score-form h3 {
            margin-top: 0;
            color: #ffd7a0;
        }
        .comment-form textarea,
        .comment-form input,
        .score-form select,
        .score-form input {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 10px;
            border: 1px solid #2a3f55;
            background: #0f1923;
            color: #ece8e1;
            font-size: 1rem;
            margin-bottom: 0.8rem;
            transition: border-color 0.2s;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .score-form select:focus,
        .score-form input:focus {
            border-color: #ff4655;
            outline: none;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .score-form button {
            background: #ff4655;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: #e03340;
            transform: scale(0.97);
        }
        .score-display {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
            margin-top: 0.6rem;
        }
        .score-display .stars {
            color: #f5b342;
            font-size: 1.3rem;
        }
        .comment-list {
            margin-top: 1.2rem;
        }
        .comment-item {
            background: #0f1923;
            border-radius: 12px;
            padding: 1rem 1.2rem;
            margin-bottom: 0.8rem;
            border-left: 3px solid #ff4655;
        }
        .comment-item .meta {
            font-size: 0.85rem;
            color: #6a7a8a;
        }
        .site-footer {
            background: #0a1722;
            border-top: 2px solid #1a2a3a;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2.5rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .site-footer h4 {
            color: #ff4655;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #9aabbb;
            font-size: 0.95rem;
        }
        .site-footer a:hover {
            color: #ff4655;
        }
        friend-link {
            display: block;
            background: #0f1923;
            border-radius: 12px;
            padding: 1rem 1.4rem;
            margin: 1rem 0;
            border: 1px solid #1a2a3a;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.4rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid #1a2a3a;
            font-size: 0.9rem;
            color: #5a6a7a;
        }
        .copyright strong {
            color: #8a9aaa;
        }
        @media (max-width: 992px) {
            .content-area .container {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .hero-section h1 {
                font-size: 2.2rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.3rem;
                padding: 1rem 0 0.4rem;
                border-top: 1px solid #2a3f55;
                margin-top: 0.6rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.5rem 0.8rem;
                font-size: 1rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .search-wrap {
                flex-wrap: wrap;
                border-radius: 30px;
                padding: 0.4rem;
            }
            .search-wrap input {
                width: 100%;
                padding: 0.5rem 0.8rem;
            }
            .search-wrap button {
                width: 100%;
                justify-content: center;
                padding: 0.6rem;
            }
            .req-table {
                font-size: 0.9rem;
            }
            .req-table th,
            .req-table td {
                padding: 0.5rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .hero-section h1 {
                font-size: 1.7rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .container {
                padding: 0 0.9rem;
            }
            .link-list-inline {
                flex-direction: column;
                gap: 0.3rem;
            }
        }
        .text-muted {
            color: #6a7a8a;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .fw-600 {
            font-weight: 600;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
