        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #f4f7fb;
            color: #1e2a3a;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #2563eb;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #1e40af;
            text-decoration: underline;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #0f1a2e;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.75rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem 0;
            border-bottom: 3px solid #eab308;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.8rem 0 0.8rem 0;
            color: #1e3a5f;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.5rem 0;
            color: #2c4a6e;
        }
        p {
            margin-bottom: 1.1rem;
        }
        ul,
        ol {
            margin-bottom: 1.2rem;
            padding-left: 1.8rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #0b1a2e, #1a2f4a);
            color: #fff;
            padding: 0.8rem 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;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 12px rgba(251, 191, 36, 0.25);
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #fbbf24;
            font-size: 1.8rem;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: border 0.2s;
        }
        .nav-toggle:hover {
            border-color: #fbbf24;
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e0edff;
            padding: 0.5rem 1rem;
            border-radius: 40px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(251, 191, 36, 0.18);
            color: #fbbf24;
            text-decoration: none;
        }
        .breadcrumb-wrap {
            background: #e9eef3;
            padding: 0.5rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #d0d9e3;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li {
            margin: 0 0.3rem 0 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.4rem;
            color: #6b7a8f;
        }
        .breadcrumb a {
            color: #2c4a6e;
        }
        .breadcrumb .current {
            color: #6b7a8f;
            font-weight: 600;
        }
        .hero-section {
            background: linear-gradient(135deg, #0f1f33, #1b3a5c);
            color: #fff;
            padding: 2.5rem 0 2rem 0;
            margin-bottom: 2rem;
            border-radius: 0 0 40px 40px;
        }
        .hero-section h1 {
            color: #fff;
            font-size: 2.8rem;
            margin-bottom: 0.6rem;
        }
        .hero-section .subhead {
            font-size: 1.15rem;
            opacity: 0.85;
            max-width: 750px;
            margin-bottom: 0.8rem;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            font-size: 0.9rem;
            opacity: 0.75;
            margin-top: 0.5rem;
        }
        .hero-meta i {
            margin-right: 0.4rem;
        }
        .search-box {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            max-width: 560px;
            margin: 1.2rem 0 0.2rem 0;
        }
        .search-box input {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1.2rem;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            backdrop-filter: blur(4px);
            transition: background 0.3s;
        }
        .search-box input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        .search-box input:focus {
            outline: 2px solid #fbbf24;
            background: rgba(255, 255, 255, 0.2);
        }
        .search-box button {
            padding: 0.7rem 1.8rem;
            border: none;
            border-radius: 40px;
            background: #fbbf24;
            color: #0f1f33;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .search-box button:hover {
            background: #f59e0b;
            transform: scale(1.02);
        }
        .featured-image-wrap {
            margin: 2rem 0 1.8rem 0;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
        }
        .featured-image-wrap img {
            width: 100%;
            height: auto;
            display: block;
        }
        .content-area {
            background: #fff;
            border-radius: 28px;
            padding: 2.2rem 2.5rem;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
            margin-bottom: 2.5rem;
        }
        .content-area p {
            margin-bottom: 1.2rem;
        }
        .content-area .highlight {
            background: #fef9e7;
            border-left: 4px solid #eab308;
            padding: 0.8rem 1.4rem;
            border-radius: 12px;
            margin: 1.4rem 0;
        }
        .content-area .highlight strong {
            color: #b45309;
        }
        .stat-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.92rem;
            background: #f8fafc;
            border-radius: 16px;
            overflow: hidden;
        }
        .stat-table th {
            background: #1e3a5f;
            color: #fff;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .stat-table td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #e2e8f0;
        }
        .stat-table tr:last-child td {
            border-bottom: none;
        }
        .stat-table tr:hover td {
            background: #f1f5f9;
        }
        .card-tag {
            display: inline-block;
            background: #eab308;
            color: #0f1a2e;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.1rem 0.7rem;
            border-radius: 30px;
            letter-spacing: 0.3px;
        }
        .card-tag.rare {
            background: #3b82f6;
            color: #fff;
        }
        .card-tag.epic {
            background: #a855f7;
            color: #fff;
        }
        .card-tag.legendary {
            background: #f59e0b;
            color: #0f1a2e;
        }
        .card-tag.champion {
            background: #ef4444;
            color: #fff;
        }
        .interaction-section {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 2.5rem 0 1rem 0;
            padding-top: 1.5rem;
            border-top: 2px dashed #d0d9e3;
        }
        .comment-box,
        .score-box {
            flex: 1 1 260px;
            background: #f8fafc;
            padding: 1.5rem 1.8rem;
            border-radius: 20px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }
        .comment-box textarea,
        .comment-box input,
        .score-box select,
        .score-box input {
            width: 100%;
            padding: 0.6rem 1rem;
            border: 1px solid #d0d9e3;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #fff;
            transition: border 0.2s;
            margin-bottom: 0.7rem;
            font-family: inherit;
        }
        .comment-box textarea:focus,
        .comment-box input:focus,
        .score-box select:focus,
        .score-box input:focus {
            outline: none;
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
        .comment-box textarea {
            min-height: 80px;
            resize: vertical;
        }
        .comment-box button,
        .score-box button {
            background: #2563eb;
            color: #fff;
            border: none;
            padding: 0.6rem 1.6rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .comment-box button:hover,
        .score-box button:hover {
            background: #1e40af;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 0.25rem;
            font-size: 1.6rem;
            color: #d1d5db;
            cursor: pointer;
            margin-bottom: 0.6rem;
        }
        .star-rating .star.selected {
            color: #eab308;
        }
        .star-rating .star:hover,
        .star-rating .star.hovered {
            color: #fbbf24;
        }
        friend-link {
            display: block;
            background: #f1f5f9;
            padding: 1rem 1.5rem;
            border-radius: 20px;
            margin: 2rem 0 0.5rem 0;
            font-size: 0.95rem;
        }
        friend-link a {
            margin: 0 0.6rem 0 0.2rem;
            display: inline-block;
        }
        .site-footer {
            background: #0b1a2e;
            color: #b0c4db;
            padding: 2rem 0;
            margin-top: 2rem;
            font-size: 0.9rem;
        }
        .site-footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1rem;
        }
        .site-footer .copyright {
            opacity: 0.7;
        }
        .site-footer a {
            color: #fbbf24;
        }
        .site-footer a:hover {
            color: #fff;
        }
        @media (max-width: 860px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #11263a;
                padding: 0.8rem 0.5rem;
                border-radius: 16px;
                margin-top: 0.8rem;
                gap: 0.1rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-radius: 30px;
            }
            .content-area {
                padding: 1.4rem 1.2rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .hero-section h1 {
                font-size: 2rem;
            }
            .hero-section {
                padding: 1.8rem 0 1.4rem 0;
            }
            .interaction-section {
                flex-direction: column;
                gap: 1.2rem;
            }
            .stat-table {
                font-size: 0.8rem;
            }
            .stat-table th,
            .stat-table td {
                padding: 0.4rem 0.6rem;
            }
            .search-box input {
                min-width: 140px;
            }
        }
        @media (max-width: 480px) {
            .header-inner {
                gap: 0.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.3rem;
            }
            .hero-section h1 {
                font-size: 1.5rem;
            }
            .content-area {
                padding: 1rem 0.8rem;
                border-radius: 16px;
            }
            h2 {
                font-size: 1.2rem;
            }
            h3 {
                font-size: 1.05rem;
            }
            .breadcrumb-wrap {
                font-size: 0.75rem;
            }
            .star-rating {
                font-size: 1.3rem;
            }
            .stat-table {
                font-size: 0.7rem;
            }
            .stat-table th,
            .stat-table td {
                padding: 0.3rem 0.4rem;
            }
        }
        .anchor-offset {
            scroll-margin-top: 90px;
        }
