* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f8fafc;
            color: #1e293b;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            color: #0f3b5e;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #d97706;
            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, #0b2a3e 0%, #1a4a6e 100%);
            color: #fff;
            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;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: #fbbf24;
            text-transform: uppercase;
            background: rgba(255, 255, 255, 0.08);
            padding: 4px 16px;
            border-radius: 40px;
            border: 2px solid #fbbf24;
            transition: all 0.25s ease;
            font-family: 'Impact', 'Arial Black', sans-serif;
        }
        .my-logo:hover {
            background: #fbbf24;
            color: #0b2a3e;
            text-decoration: none;
            transform: scale(1.02);
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            letter-spacing: 2px;
            display: block;
            color: #e2e8f0;
            text-transform: none;
        }
        .my-logo:hover small {
            color: #0b2a3e;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            color: #e2e8f0;
            padding: 6px 14px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            border: 1px solid transparent;
        }
        .nav-list li a:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fbbf24;
            color: #fbbf24;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f3b5e;
                padding: 16px 0;
                border-radius: 12px;
                margin-top: 12px;
                gap: 4px;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                display: block;
                padding: 10px 20px;
                border-radius: 0;
                border: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        .breadcrumb {
            background: #e9edf2;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #d1d9e6;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb ul li+li::before {
            content: "›";
            margin-right: 10px;
            color: #64748b;
        }
        .breadcrumb a {
            color: #0f3b5e;
        }
        .breadcrumb a:hover {
            color: #d97706;
        }
        .breadcrumb .current {
            color: #475569;
            font-weight: 500;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            color: #0b2a3e;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }
        h1 span {
            color: #d97706;
        }
        .subhead {
            font-size: 1.15rem;
            color: #475569;
            margin-bottom: 32px;
            border-left: 4px solid #fbbf24;
            padding-left: 20px;
            font-style: italic;
        }
        .last-updated {
            display: inline-block;
            background: #e9edf2;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #475569;
            margin-bottom: 24px;
        }
        .last-updated i {
            margin-right: 6px;
            color: #d97706;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #0b2a3e;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #fbbf24;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1a4a6e;
            margin: 32px 0 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin: 24px 0 8px;
        }
        p {
            margin-bottom: 18px;
            color: #1e293b;
        }
        .content-card {
            background: #fff;
            border-radius: 20px;
            padding: 32px 36px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            margin-bottom: 32px;
            border: 1px solid #e9edf2;
            transition: box-shadow 0.3s ease;
        }
        .content-card:hover {
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
        }
        .featured-image {
            margin: 24px 0 32px;
            border-radius: 16px;
            overflow: hidden;
            background: #e9edf2;
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 20px;
            font-size: 0.85rem;
            color: #64748b;
            background: #f1f5f9;
        }
        .highlight-box {
            background: #fef9e7;
            border-left: 5px solid #fbbf24;
            padding: 20px 24px;
            border-radius: 8px;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #0b2a3e;
        }
        .insight-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin: 16px 0;
        }
        .insight-list li {
            background: #f1f5f9;
            padding: 12px 18px;
            border-radius: 10px;
            font-size: 0.95rem;
            border-left: 4px solid #d97706;
        }
        .insight-list li::before {
            content: "⚽ ";
        }
        @media (max-width: 600px) {
            .insight-list {
                grid-template-columns: 1fr;
            }
            .content-card {
                padding: 20px 16px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
        }
        .search-section {
            background: #0b2a3e;
            border-radius: 20px;
            padding: 32px 36px;
            margin-bottom: 40px;
            color: #fff;
        }
        .search-section h2 {
            color: #fbbf24;
            border-bottom-color: #fbbf24;
            margin-top: 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            color: #0b2a3e;
            outline: none;
            transition: box-shadow 0.2s;
        }
        .search-form input:focus {
            box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.4);
        }
        .search-form button {
            padding: 14px 32px;
            background: #fbbf24;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            color: #0b2a3e;
            cursor: pointer;
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #f59e0b;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 40px 0;
        }
        @media (max-width: 700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #e9edf2;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #0b2a3e;
        }
        .feedback-card h3 i {
            color: #fbbf24;
        }
        .feedback-form input,
        .feedback-form textarea,
        .feedback-form select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            margin-bottom: 14px;
            transition: border-color 0.2s;
            background: #fafcff;
        }
        .feedback-form input:focus,
        .feedback-form textarea:focus,
        .feedback-form select:focus {
            border-color: #fbbf24;
            outline: none;
        }
        .feedback-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-form button {
            background: #0b2a3e;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .feedback-form button:hover {
            background: #1a4a6e;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(11, 42, 62, 0.25);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin-bottom: 14px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #d1d5db;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #fbbf24;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 12px;
            margin: 24px 0;
        }
        .links-grid a {
            display: block;
            background: #f1f5f9;
            padding: 12px 18px;
            border-radius: 10px;
            font-weight: 500;
            border-left: 4px solid #d97706;
            transition: all 0.2s ease;
        }
        .links-grid a:hover {
            background: #fbbf24;
            color: #0b2a3e;
            text-decoration: none;
            transform: translateX(4px);
        }
        footer {
            background: #0b2a3e;
            color: #e2e8f0;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        footer a {
            color: #fbbf24;
        }
        footer a:hover {
            color: #fff;
        }
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin-bottom: 24px;
        }
        @media (max-width: 600px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .footer-links h4 {
            color: #fbbf24;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links ul li {
            margin-bottom: 6px;
        }
        .footer-links ul li a {
            color: #cbd5e1;
        }
        .footer-links ul li a:hover {
            color: #fbbf24;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            font-size: 0.85rem;
            text-align: center;
            color: #94a3b8;
        }
        .copyright strong {
            color: #e2e8f0;
        }
        friend-link {
            display: block;
            margin: 16px 0;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 12px;
            background: rgba(251, 191, 36, 0.12);
            border-radius: 20px;
            font-size: 0.9rem;
            color: #fbbf24;
        }
        friend-link a:hover {
            background: #fbbf24;
            color: #0b2a3e;
            text-decoration: none;
        }
        .text-muted {
            color: #64748b;
            font-size: 0.9rem;
        }
        .mt-2 {
            margin-top: 16px;
        }
        .mb-2 {
            margin-bottom: 16px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .gap-2 {
            gap: 12px;
        }
        @media (max-width: 480px) {
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                min-width: auto;
            }
            .search-form button {
                justify-content: center;
            }
            .feedback-card {
                padding: 20px 16px;
            }
        }
