* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0b0b0f;
            color: #e8e6e3;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
            border-bottom: 2px solid #f5c84233;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px 20px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f5c842, #f5e6a3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px #f5c84222;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-list {
            display: flex;
            gap: 8px 18px;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-list a {
            padding: 6px 10px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: background 0.2s, color 0.2s;
        }
        .nav-list a:hover {
            background: #f5c84222;
            color: #f5c842;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: none;
            border: none;
            padding: 6px;
        }
        .hamburger span {
            display: block;
            width: 26px;
            height: 3px;
            background: #f5c842;
            border-radius: 4px;
            transition: 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        .breadcrumb {
            background: #0f0f1a;
            padding: 10px 0;
            border-bottom: 1px solid #1e1e30;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #666;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .breadcrumb .current {
            color: #f5c842;
            font-weight: 500;
        }
        main {
            padding: 40px 0 60px;
        }
        article h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #f5c842, #f5e6a3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        article h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 18px;
            color: #f5c842;
            border-left: 5px solid #f5c842;
            padding-left: 18px;
        }
        article h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 14px;
            color: #e8d5a3;
        }
        article h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #ccc;
        }
        article p {
            margin-bottom: 18px;
            text-align: justify;
        }
        article .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 14px 28px;
            margin-bottom: 30px;
            padding: 14px 20px;
            background: #14141f;
            border-radius: 12px;
            font-size: 0.9rem;
            color: #aaa;
        }
        article .meta-info strong {
            color: #f5c842;
        }
        .featured-image {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(245, 200, 66, 0.08);
        }
        .featured-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 10px 16px;
            background: #14141f;
            font-size: 0.85rem;
            color: #999;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, #14141f, #1a1a2e);
            border-left: 6px solid #f5c842;
            padding: 24px 28px;
            margin: 30px 0;
            border-radius: 0 16px 16px 0;
        }
        .highlight-box p {
            margin-bottom: 0;
        }
        .player-quote {
            font-style: italic;
            font-size: 1.1rem;
            color: #e8d5a3;
            padding: 20px 24px;
            background: #0f0f1a;
            border-radius: 12px;
            border: 1px solid #2a2a40;
            margin: 24px 0;
        }
        .player-quote::before {
            content: "“";
            font-size: 2.6rem;
            color: #f5c842;
            line-height: 0;
            vertical-align: -0.4em;
            margin-right: 8px;
        }
        .player-quote::after {
            content: "”";
            font-size: 2.6rem;
            color: #f5c842;
            line-height: 0;
            vertical-align: -0.3em;
            margin-left: 8px;
        }
        article ul,
        article ol {
            margin: 16px 0 20px 28px;
        }
        article li {
            margin-bottom: 8px;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 28px 0;
            background: #14141f;
            border-radius: 12px;
            overflow: hidden;
        }
        .data-table th {
            background: #1e1e30;
            color: #f5c842;
            font-weight: 600;
            padding: 14px 18px;
            text-align: left;
        }
        .data-table td {
            padding: 12px 18px;
            border-bottom: 1px solid #1e1e30;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #1a1a2e;
        }
        .search-section {
            background: #14141f;
            padding: 36px 28px;
            border-radius: 20px;
            margin: 50px 0;
            border: 1px solid #2a2a40;
        }
        .search-section h2 {
            margin-top: 0;
            border-left-color: #f5c842;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 16px;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 40px;
            border: 1px solid #333;
            background: #0b0b0f;
            color: #e8e6e3;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5c842;
        }
        .search-form button {
            padding: 14px 36px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f5c842, #d4a830);
            color: #0b0b0f;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 24px rgba(245, 200, 66, 0.3);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 50px 0;
        }
        @media (max-width: 768px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #14141f;
            padding: 28px 24px;
            border-radius: 20px;
            border: 1px solid #2a2a40;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.4rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 14px;
        }
        .feedback-card textarea,
        .feedback-card input[type="text"],
        .feedback-card input[type="number"] {
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #333;
            background: #0b0b0f;
            color: #e8e6e3;
            font-size: 0.95rem;
            outline: none;
            resize: vertical;
            font-family: inherit;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #f5c842;
        }
        .feedback-card button {
            align-self: flex-start;
            padding: 12px 32px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #f5c842, #d4a830);
            color: #0b0b0f;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .feedback-card button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(245, 200, 66, 0.25);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            direction: rtl;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #444;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c842;
        }
        .related-links {
            background: #14141f;
            padding: 28px 24px;
            border-radius: 20px;
            border: 1px solid #2a2a40;
            margin: 40px 0;
        }
        .related-links h3 {
            margin-top: 0;
            color: #f5c842;
        }
        .related-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 10px 20px;
        }
        .related-links li a {
            display: block;
            padding: 8px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .related-links li a:hover {
            background: #1e1e30;
            text-decoration: none;
        }
        footer {
            background: #0a0a12;
            border-top: 2px solid #1e1e30;
            padding: 40px 0 30px;
            margin-top: 60px;
        }
        footer .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        @media (max-width: 768px) {
            footer .footer-inner {
                grid-template-columns: 1fr;
            }
        }
        footer h4 {
            color: #f5c842;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        footer p,
        footer a {
            font-size: 0.9rem;
            color: #aaa;
        }
        footer a:hover {
            color: #f5c842;
        }
        .friend-links {
            margin-top: 30px;
            padding-top: 24px;
            border-top: 1px solid #1e1e30;
        }
        .friend-links h4 {
            margin-bottom: 14px;
        }
        .friend-links ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
        }
        .friend-links a {
            color: #aaa;
            font-size: 0.9rem;
        }
        .friend-links a:hover {
            color: #f5c842;
        }
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #1a1a2e;
            color: #666;
            font-size: 0.85rem;
        }
        @media (max-width: 900px) {
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f0f1a;
                padding: 16px 0;
                border-top: 1px solid #2a2a40;
                margin-top: 10px;
            }
            .nav-list.show {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            article h1 {
                font-size: 2rem;
            }
            article h2 {
                font-size: 1.6rem;
            }
            article h3 {
                font-size: 1.3rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-wrapper {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            article h1 {
                font-size: 1.6rem;
            }
            article h2 {
                font-size: 1.3rem;
                padding-left: 12px;
            }
            .search-form input[type="text"],
            .search-form button {
                width: 100%;
            }
            .feedback-card textarea,
            .feedback-card input {
                width: 100%;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 8px 10px;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0b0f;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2a40;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f5c84244;
        }
        html {
            scroll-behavior: smooth;
        }
