* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f5f7fc;
            color: #1a1a2e;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #1e5b9c;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover {
            color: #c53030;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0d1b2a 0%, #1b2a4a 100%);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(120deg, #f6d365, #fda085);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(253, 160, 133, 0.2);
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo span {
            font-weight: 300;
            font-size: 0.8rem;
            display: block;
            -webkit-text-fill-color: #aac;
            color: #aac;
            letter-spacing: 3px;
        }
        .hamburger {
            display: none;
            background: transparent;
            border: none;
            font-size: 2rem;
            color: #fff;
            cursor: pointer;
            padding: 6px 12px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .nav-menu {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #d0d8f0;
            padding: 8px 16px;
            border-radius: 40px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: all 0.25s;
            white-space: nowrap;
        }
        .nav-menu a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            text-decoration: none;
            transform: translateY(-1px);
        }
        .nav-menu .active {
            background: rgba(255, 215, 0, 0.15);
            color: #ffd700;
        }
        .breadcrumb {
            background: #eef1f7;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #dce3ec;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #8899b0;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #2a4a7a;
        }
        .breadcrumb .current {
            color: #777;
            font-weight: 500;
        }
        .page-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 38px;
            padding: 38px 0;
        }
        @media (max-width: 920px) {
            .page-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .main-content h1 {
            font-size: 2.4rem;
            line-height: 1.2;
            margin-bottom: 16px;
            color: #0b1a33;
            border-left: 6px solid #f6d365;
            padding-left: 22px;
        }
        .main-content h2 {
            font-size: 1.7rem;
            margin-top: 44px;
            margin-bottom: 18px;
            color: #142b4b;
            border-bottom: 2px solid #e6eef9;
            padding-bottom: 8px;
        }
        .main-content h3 {
            font-size: 1.3rem;
            margin-top: 30px;
            margin-bottom: 12px;
            color: #1e3d5e;
        }
        .main-content h4 {
            font-size: 1.08rem;
            margin-top: 22px;
            margin-bottom: 8px;
            color: #2a4a6a;
            font-weight: 600;
        }
        .main-content p {
            margin-bottom: 18px;
            font-size: 1.02rem;
            color: #222;
        }
        .main-content strong {
            color: #0b1a33;
        }
        .highlight-box {
            background: #f0f5fe;
            border-left: 5px solid #f6d365;
            padding: 20px 26px;
            border-radius: 0 12px 12px 0;
            margin: 26px 0;
        }
        .emoji-big {
            font-size: 1.5rem;
            margin-right: 6px;
        }
        .insight-badge {
            display: inline-block;
            background: #0d1b2a;
            color: #f6d365;
            font-weight: 700;
            font-size: 0.75rem;
            padding: 2px 14px;
            border-radius: 30px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 22px;
            margin: 30px 0;
        }
        .card-item {
            background: #fff;
            border-radius: 16px;
            padding: 24px 20px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            transition: transform 0.25s, box-shadow 0.3s;
            border: 1px solid #eaf0f8;
        }
        .card-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 30px rgba(0, 20, 50, 0.08);
        }
        .card-item i {
            font-size: 2.2rem;
            color: #f6d365;
            margin-bottom: 12px;
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #0d1b2a;
            line-height: 1.2;
        }
        .player-quote {
            background: #1b2a4a;
            color: #eef3ff;
            padding: 26px 30px;
            border-radius: 20px;
            margin: 30px 0;
            position: relative;
        }
        .player-quote::before {
            content: "“";
            font-size: 4rem;
            position: absolute;
            top: -6px;
            left: 16px;
            color: rgba(246, 211, 101, 0.3);
            font-family: Georgia, serif;
        }
        .player-quote p {
            color: #eef3ff;
            font-style: italic;
            font-size: 1.1rem;
        }
        .player-quote .attribution {
            margin-top: 14px;
            font-weight: 600;
            color: #f6d365;
            font-style: normal;
        }
        .image-wrapper {
            margin: 28px 0;
            border-radius: 14px;
            overflow: hidden;
            background: #eef1f7;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
        }
        .image-wrapper img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .image-wrapper figcaption {
            padding: 12px 18px;
            font-size: 0.9rem;
            color: #445566;
            background: #f8faff;
            border-top: 1px solid #e0e8f2;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 16px;
            margin: 18px 0;
            padding: 0;
            list-style: none;
        }
        .link-list-inline li a {
            background: #eef3fc;
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 0.9rem;
            border: 1px solid #d5e0ed;
            transition: all 0.2s;
        }
        .link-list-inline li a:hover {
            background: #0d1b2a;
            color: #f6d365;
            border-color: #0d1b2a;
            text-decoration: none;
        }
        .sidebar {
            background: #fff;
            border-radius: 20px;
            padding: 24px 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            border: 1px solid #e8eef6;
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            margin-bottom: 16px;
            color: #0d1b2a;
            border-left: 4px solid #f6d365;
            padding-left: 12px;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar ul li {
            padding: 8px 0;
            border-bottom: 1px solid #f0f3f8;
        }
        .sidebar ul li a {
            font-size: 0.95rem;
            display: block;
            transition: padding 0.2s;
        }
        .sidebar ul li a:hover {
            padding-left: 6px;
        }
        .search-form {
            display: flex;
            gap: 10px;
            margin: 20px 0;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 140px;
            padding: 12px 18px;
            border: 2px solid #d5e0ed;
            border-radius: 50px;
            font-size: 1rem;
            background: #fafcff;
            transition: border 0.25s;
        }
        .search-form input:focus {
            border-color: #f6d365;
            outline: none;
            box-shadow: 0 0 0 3px rgba(246, 211, 101, 0.2);
        }
        .search-form button {
            padding: 12px 28px;
            background: #0d1b2a;
            color: #f6d365;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s;
        }
        .search-form button:hover {
            background: #1b2a4a;
            transform: scale(1.02);
        }
        .comment-section,
        .score-section {
            background: #fff;
            border-radius: 18px;
            padding: 24px 26px;
            margin: 32px 0;
            border: 1px solid #e8eef6;
        }
        .comment-section h3,
        .score-section h3 {
            font-size: 1.3rem;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-list {
            max-height: 260px;
            overflow-y: auto;
            margin-bottom: 16px;
            background: #fafcff;
            padding: 12px 16px;
            border-radius: 12px;
            border: 1px solid #eef3f8;
        }
        .comment-item {
            padding: 8px 0;
            border-bottom: 1px dashed #dce3ec;
            font-size: 0.95rem;
        }
        .comment-item strong {
            color: #0d1b2a;
        }
        .comment-form textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #d5e0ed;
            border-radius: 12px;
            font-size: 1rem;
            resize: vertical;
            min-height: 80px;
            font-family: inherit;
            transition: border 0.25s;
        }
        .comment-form textarea:focus {
            border-color: #f6d365;
            outline: none;
        }
        .comment-form button,
        .score-form button {
            margin-top: 12px;
            padding: 10px 28px;
            background: #0d1b2a;
            color: #f6d365;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: #1b2a4a;
        }
        .score-stars {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #d5e0ed;
            cursor: pointer;
            margin: 10px 0;
        }
        .score-stars i.active {
            color: #f6d365;
        }
        .score-stars i:hover {
            color: #f6d365;
            transform: scale(1.1);
        }
        .score-display {
            font-size: 1.2rem;
            font-weight: 600;
            color: #0d1b2a;
        }
        .site-footer {
            background: #0d1b2a;
            color: #bcc9e0;
            padding: 40px 0 30px;
            margin-top: 50px;
            border-top: 4px solid #f6d365;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .site-footer h4 {
            color: #f6d365;
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #a0b8d6;
            font-size: 0.95rem;
        }
        .site-footer a:hover {
            color: #f6d365;
            text-decoration: none;
        }
        friend-link {
            display: block;
            padding: 12px 0;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            background: rgba(255, 255, 255, 0.04);
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 0.9rem;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 20px;
            text-align: center;
            font-size: 0.85rem;
            color: #7a8aa0;
        }
        .update-badge {
            display: inline-block;
            background: #eef3fc;
            padding: 4px 18px;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #2a4a6a;
            font-weight: 500;
            margin-bottom: 16px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 16px 0 8px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 12px 18px;
                border-radius: 8px;
            }
            .header-inner {
                gap: 10px;
            }
            .main-content h1 {
                font-size: 1.8rem;
                padding-left: 16px;
            }
            .main-content h2 {
                font-size: 1.4rem;
            }
            .sidebar {
                position: static;
            }
            .page-wrapper {
                padding: 20px 0;
                gap: 24px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .main-content h1 {
                font-size: 1.5rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .search-form input {
                min-width: 100px;
            }
        }
        .mt-2 {
            margin-top: 20px;
        }
        .mb-2 {
            margin-bottom: 20px;
        }
        .text-small {
            font-size: 0.9rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fafcff;
            border-radius: 12px;
            overflow: hidden;
            font-size: 0.95rem;
        }
        th {
            background: #0d1b2a;
            color: #f6d365;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 12px 16px;
            border-bottom: 1px solid #e8eef6;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f5f9ff;
        }
        .poker-chip {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 35%, #f6d365, #c59b3a);
            margin-right: 6px;
        }
        .glow-text {
            color: #0d1b2a;
            font-weight: 700;
        }
