        *,
        *::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, sans-serif;
            background: #0d0f12;
            color: #e8e6e3;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color .25s ease;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f5f2ed;
            margin-bottom: 0.65em;
        }
        h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            letter-spacing: -0.02em;
            border-left: 6px solid #f5c842;
            padding-left: 20px;
        }
        h2 {
            font-size: clamp(1.5rem, 3.5vw, 2.2rem);
            margin-top: 2.2em;
            border-bottom: 2px solid #2a2e35;
            padding-bottom: 0.3em;
        }
        h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            margin-top: 1.8em;
            color: #f5c842;
        }
        h4 {
            font-size: clamp(1rem, 2vw, 1.25rem);
            margin-top: 1.4em;
            color: #cfc9c0;
        }
        p {
            margin-bottom: 1.2em;
            font-size: 1.05rem;
        }
        .text-gold {
            color: #f5c842;
        }
        .text-muted {
            color: #9a9490;
        }
        .small-text {
            font-size: 0.9rem;
        }
        .last-updated {
            display: inline-block;
            background: #1e2229;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #b0aaa5;
            margin-bottom: 1.5rem;
        }
        .site-header {
            background: #14181f;
            border-bottom: 2px solid #22272f;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 12px 0;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #f5c842, #e0a800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f5c842;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e8e6e3;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background .2s;
        }
        .nav-toggle:hover {
            background: #22272f;
        }
        .primary-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .primary-nav a {
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 500;
            color: #c8c4bf;
            transition: all .2s ease;
            white-space: nowrap;
        }
        .primary-nav a:hover,
        .primary-nav a:focus {
            background: #22272f;
            color: #f5c842;
            text-decoration: none;
        }
        .primary-nav a.active {
            background: #f5c842;
            color: #0d0f12;
        }
        .breadcrumb-wrap {
            padding: 14px 0 6px;
            font-size: 0.88rem;
            color: #9a9490;
        }
        .breadcrumb-wrap ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
        }
        .breadcrumb-wrap li+li::before {
            content: "›";
            margin-right: 10px;
            color: #555;
        }
        .breadcrumb-wrap a {
            color: #b0aaa5;
        }
        .breadcrumb-wrap a:hover {
            color: #f5c842;
        }
        .breadcrumb-wrap .current {
            color: #e8e6e3;
            font-weight: 500;
        }
        .hero-section {
            padding: 30px 0 20px;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .hero-content h1 {
            margin-bottom: 0.4em;
        }
        .hero-content p {
            font-size: 1.15rem;
            color: #c8c4bf;
        }
        .hero-img-wrap {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
        }
        .hero-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 260px;
        }
        .search-section {
            background: #1a1f26;
            border-radius: 16px;
            padding: 28px 32px;
            margin: 30px 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .search-form label {
            font-weight: 600;
            font-size: 1.1rem;
            color: #f5c842;
        }
        .search-form input[type="text"] {
            flex: 1 1 260px;
            padding: 14px 20px;
            border-radius: 40px;
            border: 1px solid #333a45;
            background: #0d0f12;
            color: #e8e6e3;
            font-size: 1rem;
            outline: none;
            transition: border .3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5c842;
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: #f5c842;
            color: #0d0f12;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background .25s, transform .15s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .content-area {
            padding: 20px 0 40px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 48px;
        }
        .main-article {
            background: #14181f;
            border-radius: 20px;
            padding: 32px 36px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        }
        .main-article p,
        .main-article li {
            color: #d6d2cc;
        }
        .main-article ul,
        .main-article ol {
            padding-left: 24px;
            margin-bottom: 1.2em;
        }
        .main-article li {
            margin-bottom: 0.4em;
        }
        .main-article .feature-box {
            background: #1a1f26;
            border-left: 4px solid #f5c842;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 1.8em 0;
        }
        .main-article .feature-box p:last-child {
            margin-bottom: 0;
        }
        .main-article .stat-highlight {
            display: inline-block;
            background: #22272f;
            padding: 2px 12px;
            border-radius: 20px;
            font-weight: 600;
            color: #f5c842;
        }
        .main-article table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5em 0;
            font-size: 0.95rem;
        }
        .main-article th,
        .main-article td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #2a2e35;
        }
        .main-article th {
            background: #1e2229;
            color: #f5c842;
            font-weight: 600;
        }
        .main-article tr:hover td {
            background: #1a1f26;
        }
        .hand-rank-icon {
            font-size: 1.3rem;
            margin-right: 6px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-card {
            background: #14181f;
            border-radius: 16px;
            padding: 24px 20px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
        }
        .sidebar-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 2px solid #2a2e35;
            padding-bottom: 10px;
            margin-bottom: 16px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 10px;
        }
        .sidebar-card a {
            display: block;
            padding: 8px 12px;
            border-radius: 8px;
            background: #1a1f26;
            transition: background .2s;
        }
        .sidebar-card a:hover {
            background: #22272f;
            text-decoration: none;
            color: #f5c842;
        }
        .sidebar-card .tag {
            display: inline-block;
            background: #2a2e35;
            font-size: 0.7rem;
            padding: 2px 10px;
            border-radius: 20px;
            color: #9a9490;
            margin-left: 6px;
        }
        .rating-area,
        .comment-area {
            background: #1a1f26;
            border-radius: 16px;
            padding: 28px 32px;
            margin-top: 30px;
        }
        .rating-area h3,
        .comment-area h3 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            margin: 12px 0 16px;
        }
        .star-rating i {
            transition: color .2s, transform .15s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f5c842;
            transform: scale(1.1);
        }
        .rating-form button,
        .comment-form button {
            padding: 12px 28px;
            border-radius: 40px;
            border: none;
            background: #f5c842;
            color: #0d0f12;
            font-weight: 700;
            cursor: pointer;
            transition: background .25s;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #ffd966;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 18px;
            border-radius: 12px;
            border: 1px solid #333a45;
            background: #0d0f12;
            color: #e8e6e3;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            outline: none;
            font-family: inherit;
            transition: border .3s;
        }
        .comment-form textarea:focus {
            border-color: #f5c842;
        }
        .comment-form .input-group {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 14px;
        }
        .comment-form .input-group input {
            flex: 1 1 200px;
            padding: 12px 18px;
            border-radius: 40px;
            border: 1px solid #333a45;
            background: #0d0f12;
            color: #e8e6e3;
            outline: none;
            transition: border .3s;
        }
        .comment-form .input-group input:focus {
            border-color: #f5c842;
        }
        .site-footer {
            background: #0d0f12;
            border-top: 2px solid #22272f;
            padding: 40px 0 20px;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-grid h4 {
            color: #f5c842;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-grid p,
        .footer-grid li {
            color: #9a9490;
            font-size: 0.92rem;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid li {
            margin-bottom: 6px;
        }
        .footer-grid a {
            color: #b0aaa5;
        }
        .footer-grid a:hover {
            color: #f5c842;
        }
        friend-link {
            display: block;
            margin-top: 12px;
            padding: 12px 16px;
            background: #1a1f26;
            border-radius: 10px;
            font-size: 0.92rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0 8px 4px 0;
            padding: 4px 12px;
            background: #22272f;
            border-radius: 20px;
            color: #c8c4bf;
        }
        friend-link a:hover {
            background: #f5c842;
            color: #0d0f12;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #22272f;
            color: #6b6661;
            font-size: 0.85rem;
        }
        .copyright a {
            color: #9a9490;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .hero-img-wrap {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #14181f;
                padding: 16px 0;
                border-top: 1px solid #22272f;
                margin-top: 12px;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 12px 20px;
                width: 100%;
                text-align: left;
                border-radius: 0;
            }
            .main-article {
                padding: 20px 16px;
            }
            .search-section {
                padding: 20px 16px;
            }
            .rating-area,
            .comment-area {
                padding: 20px 16px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .breadcrumb-wrap ol {
                font-size: 0.8rem;
            }
            h1 {
                font-size: 1.8rem;
                padding-left: 14px;
            }
            .search-form input[type="text"] {
                flex: 1 1 100%;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .main-article {
                padding: 16px 12px;
            }
            .hero-section {
                padding: 16px 0;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        .mt-1 {
            margin-top: 1em;
        }
        .mt-2 {
            margin-top: 2em;
        }
        .mb-1 {
            margin-bottom: 1em;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .emoji-lg {
            font-size: 1.6rem;
        }
        .pill {
            display: inline-block;
            background: #2a2e35;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #b0aaa5;
        }
        .schema-hidden {
            display: none;
        }
