* {
            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: #0047ab;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #e67e22;
            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%, #1a1a4e 100%);
            color: #fff;
            padding: 18px 0;
            border-bottom: 4px solid #e67e22;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fff;
            background: linear-gradient(135deg, #f7971e, #ffd200);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            font-family: 'Segoe UI', system-ui, sans-serif;
            display: inline-block;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 14px;
            font-weight: 400;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            letter-spacing: 0.3px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-size: 22px;
            padding: 8px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #ddd;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            color: #fff;
            background: rgba(230, 126, 34, 0.25);
            text-decoration: none;
        }
        .main-nav a.active {
            background: #e67e22;
            color: #fff;
        }
        .breadcrumb-wrap {
            background: #eef1f8;
            padding: 10px 0;
            border-bottom: 1px solid #dce1ec;
            font-size: 13px;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            list-style: none;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 8px;
            color: #888;
        }
        .breadcrumb a {
            color: #0047ab;
        }
        .breadcrumb .current {
            color: #555;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(135deg, #0a0a23 0%, #16213e 100%);
            color: #fff;
            padding: 50px 0 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            font-size: 200px;
            position: absolute;
            right: -30px;
            bottom: -40px;
            opacity: 0.06;
            transform: rotate(15deg);
        }
        .hero h1 {
            font-size: clamp(28px, 5vw, 48px);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 14px;
        }
        .hero h1 span {
            background: linear-gradient(135deg, #f7971e, #ffd200);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 18px;
            color: #b0b9d0;
            max-width: 700px;
            margin: 0 auto 10px;
        }
        .hero .meta {
            font-size: 14px;
            color: #8899b4;
            margin-top: 18px;
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hero .meta i {
            margin-right: 6px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        .main-article {
            background: #fff;
            border-radius: 20px;
            padding: 36px 32px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        }
        .main-article h2 {
            font-size: 28px;
            margin: 40px 0 16px 0;
            color: #0a0a23;
            border-left: 5px solid #e67e22;
            padding-left: 18px;
        }
        .main-article h2:first-of-type {
            margin-top: 0;
        }
        .main-article h3 {
            font-size: 22px;
            margin: 30px 0 12px 0;
            color: #1a1a4e;
        }
        .main-article h4 {
            font-size: 18px;
            margin: 22px 0 10px 0;
            color: #2c3e50;
            font-weight: 600;
        }
        .main-article p {
            margin-bottom: 18px;
            color: #2d2d44;
            font-size: 16px;
        }
        .main-article ul,
        .main-article ol {
            margin: 0 0 20px 24px;
            color: #2d2d44;
        }
        .main-article li {
            margin-bottom: 8px;
        }
        .main-article .highlight-box {
            background: #f0f4ff;
            border-left: 5px solid #0047ab;
            padding: 18px 22px;
            border-radius: 12px;
            margin: 24px 0;
        }
        .main-article .highlight-box strong {
            color: #0047ab;
        }
        .main-article .tip-box {
            background: #fffbf0;
            border-left: 5px solid #e67e22;
            padding: 18px 22px;
            border-radius: 12px;
            margin: 24px 0;
        }
        .main-article .tip-box strong {
            color: #e67e22;
        }
        .main-article .exclusive-badge {
            display: inline-block;
            background: #e67e22;
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: 30px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
            background: #dce1ec;
        }
        .featured-image figcaption {
            padding: 12px 18px;
            background: #f8f9fc;
            font-size: 13px;
            color: #666;
            border-top: 1px solid #eef1f8;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px 22px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        }
        .sidebar-card h3 {
            font-size: 18px;
            margin-bottom: 16px;
            color: #0a0a23;
            border-bottom: 2px solid #eef1f8;
            padding-bottom: 10px;
        }
        .sidebar-card ul {
            list-style: none;
        }
        .sidebar-card ul li {
            margin-bottom: 10px;
            border-bottom: 1px solid #f0f2f7;
            padding-bottom: 10px;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .sidebar-card ul li a {
            font-weight: 500;
            font-size: 14px;
            display: block;
            padding: 4px 0;
        }
        .sidebar-card ul li a:hover {
            padding-left: 6px;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 10px 0 0;
        }
        .search-form input {
            flex: 1;
            padding: 10px 16px;
            border: 2px solid #dce1ec;
            border-radius: 30px;
            font-size: 14px;
            outline: none;
            transition: border 0.25s;
            background: #f5f7fc;
        }
        .search-form input:focus {
            border-color: #0047ab;
        }
        .search-form button {
            background: #0047ab;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 15px;
            cursor: pointer;
            transition: background 0.25s;
            font-weight: 600;
        }
        .search-form button:hover {
            background: #003380;
        }
        .feedback-section {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 3px solid #eef1f8;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 20px;
        }
        @media (max-width: 700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .comment-box textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #dce1ec;
            border-radius: 14px;
            font-size: 14px;
            font-family: inherit;
            resize: vertical;
            min-height: 110px;
            outline: none;
            transition: border 0.25s;
            background: #f5f7fc;
        }
        .comment-box textarea:focus {
            border-color: #0047ab;
        }
        .comment-box input[type="text"] {
            width: 100%;
            padding: 10px 16px;
            border: 2px solid #dce1ec;
            border-radius: 30px;
            font-size: 14px;
            outline: none;
            margin-bottom: 12px;
            background: #f5f7fc;
        }
        .comment-box input[type="text"]:focus {
            border-color: #0047ab;
        }
        .comment-box button,
        .rating-box button {
            background: #e67e22;
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
        }
        .comment-box button:hover,
        .rating-box button:hover {
            background: #d35400;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 28px;
            color: #ccc;
            cursor: pointer;
            margin: 10px 0 14px;
            direction: rtl;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: #f1c40f;
            transform: scale(1.1);
        }
        .rating-stars i.active {
            color: #f1c40f;
        }
        friend-link {
            display: block;
            background: #0a0a23;
            color: #ddd;
            padding: 30px 0;
            margin-top: 10px;
            border-top: 4px solid #e67e22;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px 40px;
            justify-content: center;
        }
        friend-link a {
            color: #ffd200;
            font-weight: 500;
            font-size: 14px;
            transition: color 0.2s;
        }
        friend-link a:hover {
            color: #fff;
            text-decoration: underline;
        }
        friend-link .fl-label {
            color: #8899b4;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            width: 100%;
            text-align: center;
            margin-bottom: 4px;
        }
        .site-footer {
            background: #06061a;
            color: #8899b4;
            padding: 30px 0 24px;
            font-size: 13px;
            text-align: center;
        }
        .site-footer .copyright {
            font-size: 13px;
            color: #667;
        }
        .site-footer .copyright strong {
            color: #ccc;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: rgba(10, 10, 35, 0.98);
                padding: 16px 10px;
                border-radius: 16px;
                margin-top: 10px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 18px;
                font-size: 15px;
                border-radius: 10px;
            }
            .main-article {
                padding: 24px 18px;
            }
            .hero h1 {
                font-size: 26px;
            }
            .breadcrumb-wrap {
                font-size: 12px;
            }
        }
        @media (max-width: 480px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 22px;
            }
            .hero {
                padding: 30px 0 24px;
            }
            .hero p {
                font-size: 15px;
            }
            .main-article h2 {
                font-size: 22px;
            }
            .main-article h3 {
                font-size: 18px;
            }
            .sidebar-card {
                padding: 18px 16px;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .text-muted {
            color: #8899b4;
            font-size: 14px;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-10 {
            margin-bottom: 10px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #eef1f8;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 13px;
            color: #555;
        }
        .stat-badge {
            display: inline-block;
            background: #0a0a23;
            color: #ffd200;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 700;
        }
