        *,
        *::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: #0a0a0f;
            color: #e8e8f0;
            line-height: 1.75;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #ff6b6b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #fff;
            margin-top: 0;
        }
        h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            margin-bottom: 1.2rem;
            text-shadow: 0 2px 12px rgba(230, 57, 70, 0.3);
        }
        h2 {
            font-size: clamp(1.5rem, 3.5vw, 2.2rem);
            margin-bottom: 1rem;
            border-left: 4px solid #e63946;
            padding-left: 1rem;
        }
        h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            margin-bottom: 0.75rem;
            color: #ffd700;
        }
        h4 {
            font-size: clamp(1rem, 2vw, 1.25rem);
            margin-bottom: 0.5rem;
            color: #ffb3b3;
        }
        p {
            margin-bottom: 1rem;
            color: #d0d0dd;
        }
        strong,
        b {
            color: #fff;
            font-weight: 600;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
            border-bottom: 2px solid #e63946;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem 1.5rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #e63946, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #e63946;
            font-size: 1.6rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(230, 57, 70, 0.25);
        }
        .primary-nav {
            display: flex;
            align-items: center;
            gap: 0.25rem 1rem;
            flex-wrap: wrap;
        }
        .primary-nav a {
            color: #ccc;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.4rem 0.75rem;
            border-radius: 6px;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .primary-nav a:hover,
        .primary-nav a:focus-visible {
            color: #ffd700;
            background: rgba(230, 57, 70, 0.2);
            text-decoration: none;
        }
        .primary-nav a i {
            margin-right: 0.3rem;
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: #12121e;
            padding: 0.6rem 0;
            border-bottom: 1px solid #2a2a3e;
            font-size: 0.9rem;
            overflow-x: auto;
            white-space: nowrap;
        }
        .breadcrumb ol {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #666;
            margin-right: 0.4rem;
            font-size: 1.2rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffd700;
        }
        .breadcrumb .current {
            color: #ff6b6b;
            font-weight: 500;
        }
        .hero {
            padding: 2.5rem 0 1.5rem;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, #1a1a2e 0%, transparent 70%);
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 720px;
            margin: 0 auto 1.5rem;
            color: #b0b0c8;
        }
        .hero .badge {
            display: inline-block;
            background: #e63946;
            color: #fff;
            padding: 0.3rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }
        .hero .last-updated {
            font-size: 0.85rem;
            color: #888;
            margin-top: 0.5rem;
        }
        .hero .last-updated i {
            margin-right: 0.3rem;
        }
        .search-section {
            background: #12121e;
            border-radius: 16px;
            padding: 1.5rem 2rem;
            margin: 1.5rem 0 2rem;
            border: 1px solid #2a2a3e;
        }
        .search-section form {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 0.8rem 1.2rem;
            border: 1px solid #3a3a5e;
            border-radius: 50px;
            background: #0a0a0f;
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .search-section input[type="text"]:focus {
            border-color: #e63946;
            box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
        }
        .search-section button {
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            background: linear-gradient(135deg, #e63946, #c62828);
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-section button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2rem;
            margin: 2rem 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .card {
            background: #12121e;
            border-radius: 16px;
            padding: 1.75rem;
            margin-bottom: 1.75rem;
            border: 1px solid #2a2a3e;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .card:hover {
            border-color: #e63946;
            box-shadow: 0 8px 32px rgba(230, 57, 70, 0.08);
        }
        .card h2,
        .card h3 {
            margin-top: 0;
        }
        .featured-image {
            margin: 1.5rem 0;
            border-radius: 16px;
            overflow: hidden;
            background: #1a1a2e;
            position: relative;
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
            min-height: 240px;
            background: #2a2a3e;
        }
        .featured-image .img-caption {
            padding: 0.75rem 1rem;
            font-size: 0.85rem;
            color: #aaa;
            background: #0f0f1a;
            border-top: 1px solid #2a2a3e;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.25rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            min-width: 500px;
        }
        th,
        td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid #2a2a3e;
        }
        th {
            background: #1a1a2e;
            color: #ffd700;
            font-weight: 600;
            white-space: nowrap;
        }
        tr:hover td {
            background: rgba(230, 57, 70, 0.05);
        }
        .sidebar-widget {
            background: #12121e;
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border: 1px solid #2a2a3e;
        }
        .sidebar-widget h3 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            border-bottom: 1px solid #2a2a3e;
            padding-bottom: 0.5rem;
        }
        .sidebar-widget ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-widget li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #1e1e2e;
        }
        .sidebar-widget li:last-child {
            border-bottom: none;
        }
        .sidebar-widget a {
            color: #c0c0d0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.2s;
        }
        .sidebar-widget a:hover {
            color: #ffd700;
            text-decoration: none;
        }
        .sidebar-widget a i {
            color: #e63946;
            font-size: 0.8rem;
        }
        .review-form,
        .comment-form,
        .score-form {
            background: #12121e;
            border-radius: 16px;
            padding: 1.75rem;
            margin: 1.5rem 0;
            border: 1px solid #2a2a3e;
        }
        .review-form h3,
        .comment-form h3,
        .score-form h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.25rem;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.4rem;
            color: #ccc;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #3a3a5e;
            border-radius: 8px;
            background: #0a0a0f;
            color: #fff;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #e63946;
            box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .form-group .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            direction: rtl;
        }
        .form-group .star-rating input {
            display: none;
        }
        .form-group .star-rating label {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .form-group .star-rating label:hover,
        .form-group .star-rating label:hover~label,
        .form-group .star-rating input:checked~label {
            color: #ffd700;
        }
        .btn-primary {
            padding: 0.8rem 2.4rem;
            border: none;
            border-radius: 50px;
            background: linear-gradient(135deg, #e63946, #c62828);
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(230, 57, 70, 0.4);
        }
        friend-link {
            display: block;
            background: #12121e;
            border-radius: 16px;
            padding: 1.75rem;
            margin: 1.5rem 0;
            border: 1px solid #2a2a3e;
        }
        friend-link h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #ffd700;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1.5rem;
        }
        friend-link li {
            margin: 0;
        }
        friend-link a {
            color: #c0c0d0;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        friend-link a:hover {
            color: #ffd700;
            text-decoration: none;
        }
        .site-footer {
            background: #0a0a0f;
            border-top: 2px solid #1a1a2e;
            padding: 2rem 0;
            margin-top: 2rem;
            text-align: center;
            font-size: 0.9rem;
            color: #888;
        }
        .site-footer .copyright {
            margin-top: 0.75rem;
            border-top: 1px solid #1a1a2e;
            padding-top: 1rem;
        }
        .site-footer a {
            color: #aaa;
        }
        .site-footer a:hover {
            color: #ffd700;
        }
        @media (max-width: 920px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: 2;
            }
            .main-content {
                order: 1;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #12121e;
                border-radius: 12px;
                padding: 1rem;
                border: 1px solid #2a2a3e;
                margin-top: 0.5rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.6rem 0.75rem;
                width: 100%;
                border-bottom: 1px solid #1e1e2e;
            }
            .primary-nav a:last-child {
                border-bottom: none;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section input[type="text"] {
                width: 100%;
                min-width: unset;
            }
            .search-section button {
                width: 100%;
                justify-content: center;
            }
            .card {
                padding: 1.25rem;
            }
            .hero {
                padding: 1.5rem 0 0.5rem;
            }
            .table-wrap table {
                font-size: 0.85rem;
            }
            .form-group .star-rating {
                font-size: 1.5rem;
            }
            .form-group .star-rating label {
                font-size: 1.5rem;
            }
            friend-link ul {
                flex-direction: column;
                gap: 0.25rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .card {
                padding: 1rem;
            }
            .search-section {
                padding: 1rem;
            }
            .review-form,
            .comment-form,
            .score-form {
                padding: 1rem;
            }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        .text-glow {
            text-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .emoji-lg {
            font-size: 1.4em;
        }
