* {
            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: #004e92;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ff6f00;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0b0b1a 0%, #1a1a3e 100%);
            padding: 16px 0;
            border-bottom: 3px solid #ff6f00;
            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;
            gap: 12px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: -1px;
            background: linear-gradient(135deg, #f7971e, #ffd200);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            transition: transform 0.25s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.6rem;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            display: block;
            font-weight: 400;
            letter-spacing: 2px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 28px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e0e0f0;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.2s ease;
        }
        .main-nav a:hover {
            color: #ffd200;
            border-bottom-color: #ff6f00;
            text-decoration: none;
        }
        .main-nav .nav-cta {
            background: #ff6f00;
            color: #fff;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 700;
            border-bottom: none;
        }
        .main-nav .nav-cta:hover {
            background: #e65c00;
            color: #fff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            transition: color 0.2s;
        }
        .hamburger:hover {
            color: #ffd200;
        }
        .breadcrumb {
            background: #eef1f8;
            padding: 12px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #dde1ec;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 14px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 14px;
            color: #888;
        }
        .breadcrumb a {
            color: #004e92;
        }
        .breadcrumb .current {
            color: #555;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            padding: 50px 0 40px;
            color: #fff;
            text-align: center;
            border-radius: 0 0 40px 40px;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #f7971e, #ffd200);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .hero p {
            font-size: 1.2rem;
            opacity: 0.85;
            max-width: 720px;
            margin: 0 auto 20px;
        }
        .hero .badge {
            display: inline-block;
            background: #ff6f00;
            color: #fff;
            padding: 6px 24px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        .search-section {
            background: #fff;
            border-radius: 16px;
            padding: 20px 28px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            margin-bottom: 40px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px;
        }
        .search-section label {
            font-weight: 700;
            font-size: 1.1rem;
            color: #1a1a2e;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form {
            flex: 1;
            display: flex;
            gap: 8px;
            min-width: 220px;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #dde1ec;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #ff6f00;
        }
        .search-form button {
            background: #004e92;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 12px 28px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #003366;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 50px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 22px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 24px;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            border-bottom: 3px solid #ff6f00;
            padding-bottom: 8px;
            margin-bottom: 14px;
            color: #0b0b1a;
        }
        .sidebar-card ul {
            list-style: none;
        }
        .sidebar-card li {
            padding: 8px 0;
            border-bottom: 1px solid #f0f2f8;
        }
        .sidebar-card li:last-child {
            border-bottom: none;
        }
        .sidebar-card a {
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card a i {
            color: #ff6f00;
            width: 20px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #0b0b1a;
            margin: 48px 0 18px;
            padding-bottom: 10px;
            border-bottom: 4px solid #ff6f00;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a3e;
            margin: 36px 0 14px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #2a2a4e;
            margin: 24px 0 10px;
        }
        p {
            margin-bottom: 18px;
            color: #2d2d44;
        }
        .highlight {
            background: #fff7e6;
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 600;
        }
        .insight-box {
            background: #eef4ff;
            border-left: 5px solid #004e92;
            padding: 18px 22px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
            font-style: normal;
        }
        .insight-box strong {
            color: #004e92;
        }
        .stat-badge {
            display: inline-block;
            background: #1a1a3e;
            color: #ffd200;
            padding: 2px 14px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85rem;
        }
        .rank-table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
            margin: 24px 0;
        }
        .rank-table th {
            background: #0b0b1a;
            color: #ffd200;
            padding: 14px 16px;
            text-align: left;
            font-weight: 700;
        }
        .rank-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #eef1f8;
        }
        .rank-table tr:hover td {
            background: #f8faff;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .featured-image figcaption {
            padding: 12px 16px;
            background: #f0f2f8;
            font-size: 0.9rem;
            color: #555;
            text-align: center;
            font-style: italic;
        }
        .player-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            margin: 20px 0;
            border: 1px solid #eef1f8;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .player-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
        }
        .player-card .player-name {
            font-size: 1.3rem;
            font-weight: 800;
            color: #0b0b1a;
        }
        .player-card .player-tag {
            color: #ff6f00;
            font-weight: 600;
        }
        .comment-section,
        .rating-section {
            background: #fff;
            border-radius: 16px;
            padding: 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            margin: 40px 0;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
        }
        .comment-section form,
        .rating-section form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .comment-section input,
        .comment-section textarea,
        .rating-section select,
        .rating-section input {
            padding: 12px 16px;
            border: 2px solid #dde1ec;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            outline: none;
            transition: border-color 0.2s;
        }
        .comment-section input:focus,
        .comment-section textarea:focus,
        .rating-section select:focus,
        .rating-section input:focus {
            border-color: #ff6f00;
        }
        .comment-section textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-section button,
        .rating-section button {
            background: #ff6f00;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 14px 32px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-section button:hover,
        .rating-section button:hover {
            background: #e65c00;
        }
        .site-footer {
            background: #0b0b1a;
            color: #c0c0d8;
            padding: 40px 0 20px;
            margin-top: 60px;
            border-top: 4px solid #ff6f00;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 36px;
            margin-bottom: 30px;
        }
        .footer-inner h4 {
            color: #ffd200;
            font-size: 1rem;
            margin-bottom: 14px;
            border-bottom: 2px solid #2a2a4e;
            padding-bottom: 6px;
        }
        .footer-inner a {
            color: #aab;
            display: block;
            padding: 4px 0;
        }
        .footer-inner a:hover {
            color: #ffd200;
        }
        friend-link {
            display: block;
            background: #12122a;
            padding: 16px 20px;
            border-radius: 12px;
            margin: 20px 0 10px;
            font-size: 0.95rem;
            border: 1px solid #2a2a4e;
        }
        friend-link a {
            color: #ffd200;
            font-weight: 600;
        }
        friend-link a:hover {
            color: #ff6f00;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2a2a4e;
            font-size: 0.9rem;
            color: #8888aa;
        }
        .copyright strong {
            color: #ccd;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 6px;
                padding: 16px 0 8px;
                border-top: 1px solid #2a2a4e;
                margin-top: 8px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 12px;
                border-bottom: 1px solid #1a1a3e;
            }
            .main-nav .nav-cta {
                text-align: center;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .rank-table {
                font-size: 0.85rem;
            }
            .rank-table th,
            .rank-table td {
                padding: 8px 10px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 14px;
            }
            .comment-section,
            .rating-section {
                padding: 18px;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #ff6f00;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s, opacity 0.2s;
            opacity: 0.7;
            z-index: 999;
        }
        .scroll-top:hover {
            transform: scale(1.08);
            opacity: 1;
            color: #fff;
            text-decoration: none;
        }
