* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #fafaf8;
            color: #1e1e1e;
            line-height: 1.75;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a2e0e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e3a2f 0%, #2d5a3e 100%);
            color: #f5f2e9;
            padding: 16px 0;
            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: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            font-family: 'Poppins', 'Segoe UI', sans-serif;
            display: inline-block;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #d4d0c8;
            color: #d4d0c8;
            display: block;
            font-weight: 400;
            letter-spacing: 2px;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #fbbf24;
            color: #fbbf24;
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #fbbf24;
            color: #1e3a2f;
        }
        .nav-menu {
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
            align-items: center;
            list-style: none;
        }
        .nav-menu li a {
            color: #f5f2e9;
            font-weight: 500;
            padding: 6px 8px;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-menu li a:hover {
            background: rgba(251, 191, 36, 0.2);
            color: #fbbf24;
            text-decoration: none;
        }
        .nav-menu li a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: #f0ede6;
            padding: 10px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #e0dbd0;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 12px;
            color: #a09880;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6b5b4a;
        }
        .breadcrumb .current {
            color: #b45309;
            font-weight: 600;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        @media (max-width: 920px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 12px;
            color: #1e3a2f;
            letter-spacing: -0.5px;
        }
        article h1::before {
            content: "⚽ ";
        }
        article .meta {
            color: #6b5b4a;
            font-size: 0.95rem;
            margin-bottom: 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            border-bottom: 1px solid #e0dbd0;
            padding-bottom: 16px;
        }
        article .meta i {
            margin-right: 6px;
            color: #b45309;
        }
        article h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-top: 48px;
            margin-bottom: 16px;
            color: #1e3a2f;
            border-left: 6px solid #fbbf24;
            padding-left: 16px;
        }
        article h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-top: 32px;
            margin-bottom: 12px;
            color: #2d5a3e;
        }
        article h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-top: 24px;
            margin-bottom: 8px;
            color: #3d6b4e;
        }
        article p {
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
        article ul,
        article ol {
            margin-bottom: 20px;
            padding-left: 24px;
        }
        article li {
            margin-bottom: 8px;
        }
        .featured-image {
            margin: 24px 0 32px;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }
        .highlight-box {
            background: #f0ede6;
            border-left: 6px solid #fbbf24;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #1e3a2f;
        }
        .insight-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin: 24px 0;
            border: 1px solid #e8e3d8;
        }
        .insight-card h4 {
            margin-top: 0;
            color: #b45309;
        }
        .insight-card i {
            color: #fbbf24;
            margin-right: 8px;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin-bottom: 24px;
            border: 1px solid #e8e3d8;
        }
        .sidebar-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1e3a2f;
            margin-bottom: 16px;
            border-bottom: 2px solid #fbbf24;
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid #f0ede6;
        }
        .sidebar-card ul li a {
            font-weight: 500;
        }
        .sidebar-card ul li a i {
            margin-right: 8px;
            color: #b45309;
            width: 20px;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin-bottom: 8px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid #e0dbd0;
            border-radius: 10px;
            font-size: 1rem;
            background: #fafaf8;
            transition: 0.2s;
        }
        .search-form input:focus {
            outline: none;
            border-color: #fbbf24;
            box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
        }
        .search-form button {
            background: #1e3a2f;
            color: #f5f2e9;
            border: none;
            padding: 12px 20px;
            border-radius: 10px;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            font-weight: 600;
        }
        .search-form button:hover {
            background: #2d5a3e;
        }
        .comment-box,
        .rating-box {
            background: #ffffff;
            border-radius: 16px;
            padding: 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin: 32px 0;
            border: 1px solid #e8e3d8;
        }
        .comment-box h3,
        .rating-box h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e3a2f;
            margin-bottom: 16px;
        }
        .comment-box textarea,
        .rating-box textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e0dbd0;
            border-radius: 10px;
            font-size: 1rem;
            background: #fafaf8;
            resize: vertical;
            min-height: 100px;
            transition: 0.2s;
        }
        .comment-box textarea:focus,
        .rating-box textarea:focus {
            outline: none;
            border-color: #fbbf24;
            box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
        }
        .comment-box input,
        .rating-box input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0dbd0;
            border-radius: 10px;
            font-size: 1rem;
            background: #fafaf8;
            margin-bottom: 12px;
            transition: 0.2s;
        }
        .comment-box input:focus,
        .rating-box input:focus {
            outline: none;
            border-color: #fbbf24;
            box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
        }
        .btn-submit {
            background: #b45309;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-submit:hover {
            background: #7a2e0e;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(180, 83, 9, 0.3);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #d4d0c8;
            cursor: pointer;
            margin-bottom: 16px;
            direction: rtl;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.1s;
        }
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #fbbf24;
            transform: scale(1.1);
        }
        .star-rating i.active {
            color: #fbbf24;
        }
        footer {
            background: #1e3a2f;
            color: #d4d0c8;
            padding: 40px 0 24px;
            margin-top: 60px;
            border-top: 6px solid #fbbf24;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 24px;
        }
        @media (max-width: 700px) {
            footer .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        footer h4 {
            color: #fbbf24;
            font-weight: 700;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        footer a {
            color: #d4d0c8;
        }
        footer a:hover {
            color: #fbbf24;
        }
        footer .copyright {
            border-top: 1px solid #3d6b4e;
            padding-top: 16px;
            text-align: center;
            font-size: 0.9rem;
            color: #a09880;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            list-style: none;
            padding: 0;
        }
        .friend-link li a {
            background: rgba(251, 191, 36, 0.1);
            padding: 4px 14px;
            border-radius: 20px;
            border: 1px solid rgba(251, 191, 36, 0.2);
            font-size: 0.9rem;
            transition: 0.2s;
        }
        .friend-link li a:hover {
            background: rgba(251, 191, 36, 0.2);
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1e3a2f;
                padding: 16px 0;
                border-top: 1px solid #2d5a3e;
                margin-top: 12px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                display: block;
                padding: 10px 16px;
            }
            article h1 {
                font-size: 2rem;
            }
            article h2 {
                font-size: 1.6rem;
            }
            article h3 {
                font-size: 1.3rem;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            article h1 {
                font-size: 1.7rem;
            }
            .search-form {
                flex-wrap: wrap;
            }
            .search-form button {
                width: 100%;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(12px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .section-divider {
            width: 80px;
            height: 4px;
            background: #fbbf24;
            border-radius: 4px;
            margin: 12px 0 24px;
        }
