* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #0b0f1a;
            color: #e0e6f0;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffdd77;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #111724;
            padding: 20px 28px;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 12px;
            border-bottom: 2px solid #2a3348;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5c842, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(245, 200, 66, 0.15);
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            -webkit-text-fill-color: #8899bb;
            color: #8899bb;
            display: block;
            letter-spacing: 1px;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5c842;
            color: #f5c842;
            font-size: 1.8rem;
            padding: 4px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f5c84220;
        }
        .main-nav {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .main-nav a:hover {
            border-bottom-color: #f5c842;
        }
        .breadcrumb {
            padding: 12px 0 8px;
            font-size: 0.9rem;
            color: #7a89a9;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #7a89a9;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .breadcrumb span {
            color: #bcc4d4;
        }
        .search-box {
            display: flex;
            gap: 8px;
            margin: 16px 0 24px;
            background: #1a2235;
            padding: 8px 12px;
            border-radius: 40px;
            border: 1px solid #2a3348;
        }
        .search-box input {
            flex: 1;
            background: transparent;
            border: none;
            color: #e0e6f0;
            font-size: 1rem;
            padding: 8px 4px;
            outline: none;
        }
        .search-box input::placeholder {
            color: #5a6a8a;
        }
        .search-box button {
            background: #f5c842;
            border: none;
            color: #0b0f1a;
            font-weight: 700;
            padding: 8px 20px;
            border-radius: 30px;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .search-box button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin: 20px 0 8px;
            background: linear-gradient(135deg, #f5c842, #ffaa33);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 40px 0 16px;
            color: #f5c842;
            border-left: 6px solid #f5c842;
            padding-left: 16px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 28px 0 12px;
            color: #ffcc66;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 20px 0 8px;
            color: #d4b066;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #cfd8e6;
        }
        .meta-info {
            color: #7a89a9;
            font-size: 0.95rem;
            margin-bottom: 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .meta-info i {
            margin-right: 6px;
        }
        .highlight {
            background: #1e2a44;
            padding: 4px 12px;
            border-radius: 8px;
            font-weight: 600;
            color: #f5c842;
        }
        .insight-box {
            background: #1a2235;
            border-left: 6px solid #f5c842;
            padding: 18px 22px;
            border-radius: 12px;
            margin: 24px 0;
        }
        .insight-box strong {
            color: #f5c842;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 24px 0;
        }
        .stat-card {
            background: #1a2235;
            padding: 20px;
            border-radius: 16px;
            border: 1px solid #2a3348;
            transition: 0.2s;
        }
        .stat-card:hover {
            border-color: #f5c842;
            transform: translateY(-4px);
        }
        .stat-card i {
            font-size: 2rem;
            color: #f5c842;
            margin-bottom: 8px;
        }
        .player-quote {
            background: #0d1422;
            padding: 24px 28px;
            border-radius: 16px;
            font-style: italic;
            border: 1px solid #2a3348;
            margin: 28px 0;
            position: relative;
        }
        .player-quote::before {
            content: '\201C';
            font-size: 4rem;
            color: #f5c842;
            opacity: 0.3;
            position: absolute;
            top: -8px;
            left: 12px;
        }
        .player-quote cite {
            display: block;
            margin-top: 12px;
            font-style: normal;
            font-weight: 600;
            color: #f5c842;
        }
        .feature-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin: 20px 0;
        }
        .feature-list li {
            background: #1a2235;
            padding: 12px 16px;
            border-radius: 10px;
            border-left: 4px solid #f5c842;
            font-weight: 500;
        }
        .feature-list li i {
            color: #f5c842;
            margin-right: 10px;
        }
        .featured-img-wrap {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
        }
        .featured-img-wrap img {
            width: 100%;
            object-fit: cover;
            max-height: 500px;
        }
        .rating-area {
            background: #1a2235;
            padding: 20px 24px;
            border-radius: 16px;
            margin: 28px 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 24px;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #444e66;
            cursor: pointer;
        }
        .rating-stars i.active {
            color: #f5c842;
        }
        .rating-stars i:hover {
            color: #ffdd77;
        }
        .rating-submit {
            background: #f5c842;
            border: none;
            color: #0b0f1a;
            font-weight: 700;
            padding: 10px 28px;
            border-radius: 30px;
            cursor: pointer;
            transition: 0.2s;
            font-size: 1rem;
        }
        .rating-submit:hover {
            background: #ffdd77;
            transform: scale(1.03);
        }
        .comment-section {
            margin: 40px 0;
            background: #0d1422;
            padding: 24px 28px;
            border-radius: 16px;
            border: 1px solid #2a3348;
        }
        .comment-section textarea {
            width: 100%;
            background: #1a2235;
            border: 1px solid #2a3348;
            color: #e0e6f0;
            padding: 14px 16px;
            border-radius: 12px;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
        }
        .comment-section textarea:focus {
            outline: none;
            border-color: #f5c842;
        }
        .comment-section .comment-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .comment-section .comment-row input {
            flex: 1;
            min-width: 160px;
            background: #1a2235;
            border: 1px solid #2a3348;
            color: #e0e6f0;
            padding: 10px 14px;
            border-radius: 30px;
            font-size: 0.95rem;
        }
        .comment-section .comment-row input:focus {
            outline: none;
            border-color: #f5c842;
        }
        .comment-section .comment-btn {
            background: #f5c842;
            border: none;
            color: #0b0f1a;
            font-weight: 700;
            padding: 10px 28px;
            border-radius: 30px;
            cursor: pointer;
            transition: 0.2s;
        }
        .comment-section .comment-btn:hover {
            background: #ffdd77;
        }
        friend-link {
            display: block;
            margin: 32px 0 16px;
            padding: 20px 0;
            border-top: 2px solid #2a3348;
            border-bottom: 2px solid #2a3348;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            font-weight: 500;
        }
        friend-link a:hover {
            color: #ffdd77;
        }
        .site-footer {
            padding: 24px 0 12px;
            text-align: center;
            color: #5a6a8a;
            font-size: 0.9rem;
            border-top: 2px solid #2a3348;
            margin-top: 32px;
        }
        .site-footer a {
            color: #7a89a9;
        }
        .site-footer a:hover {
            color: #f5c842;
        }
        @media (max-width: 768px) {
            .container {
                padding: 12px 14px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .grid-2 {
                grid-template-columns: 1fr;
            }
            .feature-list {
                grid-template-columns: 1fr;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 8px;
                padding: 16px 0 8px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 0;
                border-bottom: 1px solid #2a3348;
                width: 100%;
            }
            .rating-area {
                flex-direction: column;
                align-items: flex-start;
            }
            .meta-info {
                flex-direction: column;
                gap: 8px;
            }
            .search-box {
                flex-wrap: wrap;
            }
            .search-box button {
                width: 100%;
            }
            .my-logo {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 6px;
            }
            .container {
                padding: 8px 10px;
            }
            h1 {
                font-size: 1.7rem;
            }
            .comment-section .comment-row {
                flex-direction: column;
            }
        }
        .schema-hidden {
            display: none;
        }
        html {
            scroll-behavior: smooth;
        }
