* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #f0f6fa;
            color: #2d3436;
            line-height: 1.75;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            color: #e17055;
            text-decoration: none;
            transition: color .2s;
        }
        a:hover {
            color: #d63031;
            text-decoration: underline;
        }
        .site-header {
            background: linear-gradient(135deg, #0c0c1d, #1b1b3a);
            color: #fff;
            padding: 12px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
            position: sticky;
            top: 0;
            z-index: 999;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            color: #ffd32a;
            text-decoration: none;
            letter-spacing: -0.5px;
            text-transform: uppercase;
        }
        .my-logo span {
            color: #4ecdc4;
        }
        .nav-toggle {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            padding: 5px 10px;
        }
        .site-nav {
            display: flex;
            gap: 8px;
            list-style: none;
            flex-wrap: wrap;
        }
        .site-nav li a {
            color: #ddd;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all .3s;
        }
        .site-nav li a:hover {
            background: rgba(255, 255, 255, .1);
            color: #ffd32a;
            text-decoration: none;
        }
        .search-box {
            display: flex;
            align-items: center;
            gap: 5px;
            background: rgba(255, 255, 255, .1);
            border-radius: 24px;
            padding: 4px 12px;
        }
        .search-box input {
            background: transparent;
            border: none;
            outline: none;
            color: #fff;
            padding: 4px;
            width: 120px;
            font-size: 0.85rem;
        }
        .search-box button {
            background: none;
            border: none;
            color: #ffd32a;
            cursor: pointer;
            font-size: 0.9rem;
        }
        .breadcrumb {
            background: #fff;
            border-bottom: 1px solid #e9ecef;
            padding: 8px 0;
            font-size: 0.85rem;
        }
        .breadcrumb a {
            color: #6c757d;
        }
        .breadcrumb span {
            margin: 0 4px;
            color: #adb5bd;
        }
        .hero-section {
            padding: 45px 0 30px;
            background: linear-gradient(120deg, #e0f7fa, #f1f8e9);
            text-align: center;
        }
        .hero-section h1 {
            font-size: 2.3rem;
            color: #1a1a2e;
            margin-bottom: 10px;
            line-height: 1.2;
        }
        .hero-section p {
            font-size: 1.1rem;
            color: #555;
            max-width: 800px;
            margin: 0 auto 15px;
        }
        .hero-badges {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 10px;
        }
        .badge-item {
            background: #fff;
            padding: 6px 16px;
            border-radius: 30px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
            font-size: 0.85rem;
        }
        .main-wrapper {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 30px;
            padding: 30px 0;
        }
        .article-content {
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .sidebar-widget {
            background: #fff;
            padding: 18px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
        }
        .sidebar-widget h3 {
            font-size: 1.1rem;
            margin-bottom: 12px;
            border-left: 4px solid #4ecdc4;
            padding-left: 8px;
        }
        .sidebar-widget ul {
            list-style: none;
        }
        .sidebar-widget ul li {
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
        .share-box {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 15px;
        }
        .share-box a {
            font-size: 1.2rem;
            color: #555;
        }
        .article-content h2 {
            font-size: 1.75rem;
            color: #1a1a2e;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 6px;
            margin: 40px 0 16px;
        }
        .article-content h3 {
            font-size: 1.3rem;
            color: #2d3436;
            margin: 24px 0 10px;
        }
        .article-content h4 {
            font-size: 1.05rem;
            color: #555;
            margin: 16px 0 8px;
        }
        .article-content p {
            margin-bottom: 14px;
            text-align: justify;
        }
        .article-content ul,
        .article-content ol {
            margin: 0 0 16px 24px;
        }
        .article-content li {
            margin-bottom: 6px;
        }
        .story-highlight {
            background: #fffbea;
            border-left: 4px solid #ffd32a;
            padding: 14px 18px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
        .story-highlight i {
            color: #f39c12;
            margin-right: 6px;
        }
        .player-quote {
            background: #eef9ff;
            border-radius: 10px;
            padding: 16px;
            margin: 16px 0;
            font-style: italic;
            border-left: 4px solid #4ecdc4;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 16px 0;
            font-size: 0.9rem;
        }
        .data-table th,
        .data-table td {
            border: 1px solid #e9ecef;
            padding: 8px 12px;
            text-align: left;
        }
        .data-table th {
            background: #f8f9fa;
            font-weight: 600;
        }
        .info-box {
            background: #e8f8f5;
            border-radius: 10px;
            padding: 14px 18px;
            margin: 18px 0;
            border-left: 4px solid #1abc9c;
        }
        .tip-box {
            background: #fef9f2;
            border-radius: 10px;
            padding: 14px 18px;
            margin: 18px 0;
            border-left: 4px solid #e67e22;
        }
        .rating-section,
        .comment-section {
            margin: 30px 0;
        }
        .rating-section h2,
        .comment-section h2 {
            margin-top: 20px;
        }
        .rating-stars {
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
            display: flex;
            gap: 4px;
        }
        .rating-stars i.active {
            color: #ffd32a;
        }
        .comment-form textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.9rem;
            resize: vertical;
            min-height: 100px;
        }
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 8px;
            margin-bottom: 12px;
            font-size: 0.9rem;
        }
        .btn-submit {
            background: linear-gradient(135deg, #4ecdc4, #44bdab);
            color: #fff;
            border: none;
            padding: 10px 24px;
            border-radius: 24px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: transform .2s, box-shadow .2s;
            box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
        }
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, .15);
        }
        .site-footer {
            background: #0c0c1d;
            color: #aaa;
            padding: 30px 0 15px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
        }
        .site-footer h4 {
            color: #fff;
            margin-bottom: 10px;
        }
        .site-footer a {
            color: #aaa;
            font-size: 0.9rem;
        }
        .site-footer a:hover {
            color: #ffd32a;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #222;
            margin-top: 25px;
            font-size: 0.8rem;
            color: #777;
        }
        friend-link {
            display: block;
            padding: 10px 0;
        }
        friend-link a {
            margin-right: 12px;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .site-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: rgba(0, 0, 0, .85);
                padding: 10px;
                border-radius: 8px;
                margin-top: 8px;
            }
            .site-nav.open {
                display: flex;
            }
            .site-nav li a {
                display: block;
                padding: 10px;
            }
            .main-wrapper {
                grid-template-columns: 1fr;
                padding: 15px 0;
            }
            .hero-section h1 {
                font-size: 1.6rem;
            }
            .search-box {
                display: none;
            }
            .article-content {
                padding: 16px;
            }
            .article-content h2 {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }
        }
