* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8f9fa;
            color: #1a1a2e;
            line-height: 1.8;
        }
        a {
            color: #0d6efd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0a58ca;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0a0a23 0%, #1a1a3e 50%, #0d0d30 100%);
            padding: 14px 0;
            border-bottom: 3px solid #ff6b00;
            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;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 900;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            background: linear-gradient(90deg, #ff6b00, #ff9a3c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(255, 107, 0, 0.3);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .my-logo span {
            font-weight: 300;
            -webkit-text-fill-color: #fff;
            background: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #ff6b00;
            background: none;
            margin-right: 6px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e0e0ff;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        .main-nav a:hover {
            background: rgba(255, 107, 0, 0.2);
            color: #ff9a3c;
            text-decoration: none;
            transform: translateY(-2px);
        }
        .main-nav a.active {
            background: #ff6b00;
            color: #fff;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            padding: 8px;
            z-index: 1001;
        }
        .hamburger span {
            width: 28px;
            height: 3px;
            background: #fff;
            margin: 4px 0;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .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(7px, -7px);
        }
        .breadcrumb-wrap {
            background: #fff;
            padding: 12px 0;
            border-bottom: 1px solid #e9ecef;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 8px;
            font-size: 0.85rem;
            color: #6c757d;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: #adb5bd;
        }
        .breadcrumb a {
            color: #0d6efd;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #6c757d;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #0a0a23 0%, #16213e 60%, #0f3460 100%);
            padding: 60px 0 50px;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🎮⚽🏏";
            position: absolute;
            bottom: -20px;
            right: -20px;
            font-size: 12rem;
            opacity: 0.06;
            pointer-events: none;
            transform: rotate(-10deg);
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            margin-bottom: 16px;
            background: linear-gradient(90deg, #ff6b00, #ffcc00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0 auto 24px;
            color: #c0c0e0;
            font-weight: 300;
        }
        .hero .badge-wrap {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
            margin-top: 20px;
        }
        .hero .badge {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(6px);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid rgba(255, 107, 0, 0.3);
            color: #ffcc99;
        }
        .hero .badge i {
            margin-right: 6px;
            color: #ff6b00;
        }
        .search-section {
            background: #fff;
            padding: 30px 0;
            border-bottom: 1px solid #e9ecef;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 2px solid #e9ecef;
            transition: border-color 0.3s ease;
        }
        .search-form:focus-within {
            border-color: #ff6b00;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 16px 24px;
            border: none;
            outline: none;
            font-size: 1rem;
            background: #fff;
            color: #1a1a2e;
        }
        .search-form button {
            background: #ff6b00;
            color: #fff;
            border: none;
            padding: 0 28px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: #e65c00;
        }
        .main-content {
            padding: 40px 0 60px;
            background: #f8f9fa;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
        }
        .content-body h2 {
            font-size: 2rem;
            color: #0a0a23;
            margin: 48px 0 16px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ff6b00;
            position: relative;
        }
        .content-body h2 i {
            color: #ff6b00;
            margin-right: 10px;
        }
        .content-body h3 {
            font-size: 1.5rem;
            color: #1a1a3e;
            margin: 32px 0 12px;
            font-weight: 700;
        }
        .content-body h4 {
            font-size: 1.2rem;
            color: #2d2d5e;
            margin: 24px 0 8px;
            font-weight: 600;
        }
        .content-body p {
            margin-bottom: 18px;
            color: #2d2d3a;
            font-size: 1.05rem;
        }
        .content-body ul,
        .content-body ol {
            margin: 0 0 20px 24px;
            color: #2d2d3a;
            font-size: 1.05rem;
        }
        .content-body li {
            margin-bottom: 8px;
        }
        .content-body strong {
            color: #0a0a23;
        }
        .content-body .highlight-box {
            background: linear-gradient(135deg, #fff7ed, #fff);
            border-left: 5px solid #ff6b00;
            padding: 20px 24px;
            border-radius: 8px;
            margin: 24px 0;
            box-shadow: 0 2px 12px rgba(255, 107, 0, 0.08);
        }
        .content-body .highlight-box i {
            color: #ff6b00;
            margin-right: 8px;
        }
        .featured-image-wrap {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .featured-image-wrap img {
            width: 100%;
            object-fit: cover;
        }
        .featured-image-wrap figcaption {
            background: #fff;
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #6c757d;
            border-top: 1px solid #e9ecef;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e9ecef;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            color: #0a0a23;
            margin-bottom: 16px;
            border-bottom: 2px solid #ff6b00;
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid #f1f1f1;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            color: #1a1a3e;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card ul li a:hover {
            color: #ff6b00;
            text-decoration: none;
        }
        .sidebar-card ul li a i {
            color: #ff6b00;
            font-size: 0.8rem;
        }
        .rating-area,
        .comment-area {
            background: #fff;
            border-radius: 16px;
            padding: 28px 32px;
            margin-top: 40px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e9ecef;
        }
        .rating-area h3,
        .comment-area h3 {
            font-size: 1.4rem;
            color: #0a0a23;
            margin-bottom: 16px;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 2rem;
            margin: 12px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #ddd;
            transition: color 0.2s ease;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ffc107;
        }
        .rating-form button,
        .comment-form button {
            background: #ff6b00;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 12px;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #e65c00;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            font-size: 1rem;
            margin-bottom: 14px;
            transition: border-color 0.3s ease;
            font-family: inherit;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #ff6b00;
            outline: none;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .site-footer {
            background: #0a0a23;
            color: #c0c0e0;
            padding: 48px 0 24px;
            border-top: 3px solid #ff6b00;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 16px;
            position: relative;
            padding-bottom: 8px;
        }
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: #ff6b00;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            padding: 5px 0;
        }
        .footer-col ul li a {
            color: #a0a0c0;
            transition: color 0.3s ease;
        }
        .footer-col ul li a:hover {
            color: #ff9a3c;
            text-decoration: none;
        }
        .footer-bottom {
            border-top: 1px solid #1a1a3e;
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
        }
        .footer-bottom .copy {
            color: #7a7a9a;
        }
        .footer-bottom .copy a {
            color: #ff9a3c;
        }
        friend-link {
            display: block;
            background: #12122a;
            padding: 16px 20px;
            border-radius: 12px;
            margin-top: 16px;
            border: 1px solid #1a1a3e;
            color: #a0a0c0;
            font-size: 0.95rem;
        }
        friend-link a {
            color: #ff9a3c;
            margin: 0 6px;
        }
        friend-link a:hover {
            color: #ffcc00;
            text-decoration: underline;
        }
        .last-updated {
            display: inline-block;
            background: #e9ecef;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #495057;
            margin-bottom: 20px;
        }
        .last-updated i {
            margin-right: 6px;
            color: #ff6b00;
        }
        .toc {
            background: #fff;
            border-radius: 16px;
            padding: 24px 28px;
            margin-bottom: 32px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e9ecef;
        }
        .toc h3 {
            font-size: 1.3rem;
            color: #0a0a23;
            margin-bottom: 12px;
        }
        .toc ol {
            margin-left: 20px;
            columns: 2;
            column-gap: 40px;
        }
        .toc ol li {
            margin-bottom: 6px;
            break-inside: avoid;
        }
        .toc ol li a {
            color: #0d6efd;
            font-weight: 500;
        }
        .toc ol li a:hover {
            text-decoration: underline;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .toc ol {
                columns: 1;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0a0a23;
                padding: 20px 0;
                margin-top: 14px;
                border-top: 1px solid #1a1a3e;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 20px;
                border-radius: 0;
                width: 100%;
                text-align: center;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            .rating-area,
            .comment-area {
                padding: 20px;
            }
            .search-form {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-form input[type="text"] {
                border-radius: 16px 16px 0 0;
            }
            .search-form button {
                padding: 14px;
                border-radius: 0 0 16px 16px;
            }
            .toc ol {
                columns: 1;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .container {
                padding: 0 14px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .content-body h2 {
                font-size: 1.6rem;
            }
            .content-body h3 {
                font-size: 1.3rem;
            }
        }
