* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f7f9fc;
            color: #1e2a3a;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #c0392b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #e74c3c;
            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, #1a2a3a, #0f1a26);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f39c12, #e74c3c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo span {
            font-weight: 300;
            -webkit-text-fill-color: #fff;
            color: #fff;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: #fff;
            font-size: 24px;
            padding: 6px 12px;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            border-color: #f39c12;
        }
        .main-nav {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e0e6ed;
            font-weight: 500;
            font-size: 15px;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .main-nav a:hover {
            color: #f39c12;
            border-bottom-color: #f39c12;
            text-decoration: none;
        }
        .breadcrumb {
            background: #fff;
            padding: 12px 0;
            border-bottom: 1px solid #e5e9ef;
            font-size: 14px;
            color: #5a6a7a;
        }
        .breadcrumb a {
            color: #2c3e50;
        }
        .breadcrumb a:hover {
            color: #c0392b;
        }
        .breadcrumb .sep {
            margin: 0 8px;
            color: #aaa;
        }
        .hero {
            background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
            color: #fff;
            padding: 48px 0 40px;
            text-align: center;
        }
        .hero h1 {
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 12px;
            line-height: 1.2;
        }
        .hero h1 i {
            color: #f39c12;
            margin-right: 10px;
        }
        .hero p {
            font-size: 18px;
            max-width: 780px;
            margin: 0 auto 20px;
            color: #cfdce6;
        }
        .hero .update-badge {
            display: inline-block;
            background: rgba(243, 156, 18, 0.2);
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 14px;
            color: #f39c12;
            border: 1px solid rgba(243, 156, 18, 0.3);
        }
        .search-section {
            background: #fff;
            padding: 28px 0;
            border-bottom: 1px solid #e5e9ef;
        }
        .search-form {
            display: flex;
            max-width: 640px;
            margin: 0 auto;
            gap: 8px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #dce3ed;
            border-radius: 8px;
            font-size: 16px;
            outline: none;
            transition: 0.2s;
        }
        .search-form input:focus {
            border-color: #c0392b;
        }
        .search-form button {
            background: #c0392b;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .search-form button:hover {
            background: #e74c3c;
        }
        .main-content {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
        }
        .content-body h2 {
            font-size: 30px;
            margin: 40px 0 16px;
            color: #1a2a3a;
            border-left: 5px solid #c0392b;
            padding-left: 16px;
        }
        .content-body h2 i {
            color: #c0392b;
            margin-right: 8px;
        }
        .content-body h3 {
            font-size: 22px;
            margin: 28px 0 12px;
            color: #2c3e50;
        }
        .content-body h4 {
            font-size: 18px;
            margin: 20px 0 8px;
            color: #34495e;
            font-weight: 600;
        }
        .content-body p {
            margin-bottom: 16px;
            color: #2c3e50;
        }
        .content-body ul,
        .content-body ol {
            margin: 12px 0 20px 24px;
        }
        .content-body li {
            margin-bottom: 8px;
        }
        .content-body .highlight-box {
            background: #f0f4fa;
            border-left: 4px solid #c0392b;
            padding: 18px 22px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
        .content-body .highlight-box strong {
            color: #c0392b;
        }
        .content-body .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            list-style: none;
            margin: 16px 0 20px;
        }
        .content-body .link-list-inline li {
            margin: 0;
        }
        .content-body .link-list-inline a {
            background: #f0f4fa;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }
        .content-body .link-list-inline a:hover {
            background: #c0392b;
            color: #fff;
            text-decoration: none;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 12px;
            padding: 22px;
            margin-bottom: 24px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            border: 1px solid #eef2f7;
        }
        .sidebar-card h3 {
            font-size: 18px;
            margin-bottom: 14px;
            color: #1a2a3a;
            border-bottom: 2px solid #f0f4fa;
            padding-bottom: 10px;
        }
        .sidebar-card ul {
            list-style: none;
            margin: 0;
        }
        .sidebar-card ul li {
            margin-bottom: 10px;
        }
        .sidebar-card ul li a {
            font-size: 14px;
            display: block;
            padding: 4px 0;
        }
        .sidebar-card ul li a::before {
            content: "⚽ ";
            font-size: 12px;
        }
        .featured-image {
            margin: 28px 0 24px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            background: #eef2f7;
            text-align: center;
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 10px 16px;
            font-size: 13px;
            color: #5a6a7a;
            background: #fff;
            text-align: left;
            border-top: 1px solid #eef2f7;
        }
        .feedback-section {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            margin-top: 40px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            border: 1px solid #eef2f7;
        }
        .feedback-section h3 {
            font-size: 24px;
            margin-bottom: 16px;
            color: #1a2a3a;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }
        .feedback-form label {
            display: block;
            font-weight: 600;
            margin: 14px 0 4px;
            font-size: 14px;
        }
        .feedback-form input,
        .feedback-form textarea,
        .feedback-form select {
            width: 100%;
            padding: 10px 14px;
            border: 2px solid #dce3ed;
            border-radius: 8px;
            font-size: 15px;
            font-family: inherit;
            outline: none;
            transition: 0.2s;
        }
        .feedback-form input:focus,
        .feedback-form textarea:focus,
        .feedback-form select:focus {
            border-color: #c0392b;
        }
        .feedback-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-form button {
            background: #c0392b;
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 14px;
            transition: 0.2s;
        }
        .feedback-form button:hover {
            background: #e74c3c;
        }
        .star-rating {
            display: flex;
            gap: 4px;
            flex-direction: row-reverse;
            justify-content: flex-end;
            margin: 6px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 28px;
            color: #dce3ed;
            cursor: pointer;
            transition: 0.15s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f39c12;
        }
        .site-footer {
            background: #0f1a26;
            color: #b0c4d4;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 24px;
        }
        .footer-inner h4 {
            color: #fff;
            font-size: 18px;
            margin-bottom: 12px;
        }
        .footer-inner a {
            color: #b0c4d4;
        }
        .footer-inner a:hover {
            color: #f39c12;
        }
        .footer-inner ul {
            list-style: none;
        }
        .footer-inner ul li {
            margin-bottom: 6px;
        }
        .footer-inner .my-logo {
            font-size: 22px;
        }
        .footer-bottom {
            border-top: 1px solid #1f3345;
            padding-top: 16px;
            text-align: center;
            font-size: 14px;
        }
        friend-link {
            display: block;
            margin: 12px 0;
            font-size: 14px;
        }
        friend-link a {
            margin: 0 8px 0 4px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 6px;
                padding: 16px 0 8px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 12px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .hero h1 {
                font-size: 28px;
            }
            .hero p {
                font-size: 16px;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .content-body h2 {
                font-size: 24px;
            }
            .content-body h3 {
                font-size: 19px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 22px;
            }
            .my-logo {
                font-size: 20px;
            }
            .container {
                padding: 0 12px;
            }
            .feedback-section {
                padding: 18px;
            }
            .sidebar-card {
                padding: 16px;
            }
        }
