        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.7;
            color: #1e2a3a;
            background: #f5f7fc;
            padding: 0;
            margin: 0;
        }
        :root {
            --primary: #0b2b5e;
            --primary-light: #1a4a8a;
            --accent: #f5c518;
            --accent-dark: #d4a812;
            --bg-card: #ffffff;
            --bg-soft: #f0f4fa;
            --text-dark: #1e2a3a;
            --text-muted: #4a5b6e;
            --text-light: #7a8a9e;
            --border-light: #e2e8f0;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.10);
            --radius: 12px;
            --radius-sm: 6px;
            --max-width: 1200px;
            --header-h: 72px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: var(--primary);
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.6rem;
            margin-top: 0.5rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 3px solid var(--accent);
            padding-bottom: 0.4rem;
            display: inline-block;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--primary-light);
        }
        h4 {
            font-size: 1.2rem;
            color: #1e3a6e;
        }
        p {
            margin-bottom: 1.2rem;
            color: var(--text-dark);
        }
        a {
            color: var(--primary-light);
            text-decoration: none;
            transition: color 0.2s, border-color 0.2s;
            border-bottom: 1px solid transparent;
        }
        a:hover,
        a:focus-visible {
            color: var(--accent-dark);
            border-bottom-color: var(--accent-dark);
        }
        .my-logo a {
            border-bottom: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            display: block;
        }
        .img-wrapper {
            margin: 2rem 0;
            background: var(--bg-soft);
            border-radius: var(--radius);
            padding: 0.5rem;
            box-shadow: var(--shadow-sm);
        }
        .img-wrapper figcaption {
            font-size: 0.9rem;
            color: var(--text-muted);
            text-align: center;
            padding: 0.6rem 0.5rem 0.3rem;
            font-style: italic;
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: var(--primary);
            color: #fff;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
            height: var(--header-h);
            display: flex;
            align-items: center;
        }
        header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 16px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #fff, var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            flex-shrink: 0;
        }
        .my-logo a {
            color: inherit;
            -webkit-text-fill-color: transparent;
            background: inherit;
            -webkit-background-clip: text;
            background-clip: text;
        }
        .my-logo a::before {
            content: "🏆 ";
            -webkit-text-fill-color: initial;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        nav a {
            color: #e8edf5;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 30px;
            transition: background 0.25s, color 0.25s;
            border-bottom: 0;
            font-size: 0.95rem;
            white-space: nowrap;
        }
        nav a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: var(--accent);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumbs {
            background: var(--bg-soft);
            padding: 10px 0;
            border-bottom: 1px solid var(--border-light);
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .breadcrumbs .container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumbs a {
            color: var(--primary-light);
            border-bottom: 0;
        }
        .breadcrumbs a:hover {
            color: var(--accent-dark);
        }
        .breadcrumbs span {
            color: var(--text-light);
        }
        main {
            padding: 2.5rem 0 4rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 2rem 2.2rem;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s;
            margin-bottom: 2rem;
        }
        .card:hover {
            box-shadow: var(--shadow-md);
        }
        .search-box {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin: 1.5rem 0 1rem;
            background: var(--bg-soft);
            padding: 1rem 1.5rem;
            border-radius: var(--radius);
            align-items: center;
        }
        .search-box label {
            font-weight: 600;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 10px 16px;
            border: 2px solid var(--border-light);
            border-radius: 30px;
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
            background: #fff;
        }
        .search-box input[type="text"]:focus {
            border-color: var(--primary-light);
        }
        .search-box button {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: var(--primary-light);
            transform: scale(1.02);
        }
        .feedback-forms {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2rem 0;
        }
        .feedback-forms .card {
            margin-bottom: 0;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--text-dark);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 10px 14px;
            border: 2px solid var(--border-light);
            border-radius: var(--radius-sm);
            font-size: 1rem;
            transition: border 0.25s;
            background: #fff;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--primary-light);
            outline: none;
        }
        .form-group textarea {
            min-height: 80px;
            resize: vertical;
        }
        .btn-primary {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 10px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
        }
        .btn-primary:hover {
            background: var(--primary-light);
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars .star {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--accent);
            transform: scale(1.15);
        }
        .link-group {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            padding: 0.6rem 0;
            list-style: none;
        }
        .link-group a {
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .link-group a::before {
            content: "⚽";
            font-size: 0.85rem;
        }
        footer {
            background: var(--primary);
            color: #d6deed;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        footer .container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .footer-grid h4 {
            color: var(--accent);
            border-bottom: 2px solid rgba(245, 197, 24, 0.3);
            padding-bottom: 0.4rem;
            margin-top: 0;
        }
        friend-link {
            display: block;
            font-style: normal;
        }
        friend-link a {
            color: #bcc9e0;
            display: inline-block;
            padding: 3px 0;
            border-bottom: 1px solid transparent;
        }
        friend-link a:hover {
            color: var(--accent);
            border-bottom-color: var(--accent);
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.2rem;
            text-align: center;
            font-size: 0.9rem;
            color: #9aadc7;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .card {
                padding: 1.5rem;
            }
            .feedback-forms {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            :root {
                --header-h: 64px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: var(--header-h);
                left: 0;
                right: 0;
                background: var(--primary);
                padding: 16px 20px 24px;
                box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
                gap: 6px;
                border-radius: 0 0 var(--radius) var(--radius);
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 16px;
                font-size: 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
            .hamburger {
                display: block;
            }
            .search-box {
                flex-direction: column;
                align-items: stretch;
                padding: 1rem;
            }
            .search-box input[type="text"] {
                min-width: unset;
            }
            .feedback-forms {
                grid-template-columns: 1fr;
            }
            .card {
                padding: 1.2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .container {
                padding: 0 14px;
            }
            .my-logo {
                font-size: 1.2rem;
            }
        }
        .text-accent {
            color: var(--accent-dark);
        }
        .text-muted {
            color: var(--text-muted);
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .updated-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-soft);
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.9rem;
            color: var(--text-muted);
            border: 1px solid var(--border-light);
        }
        .emoji-big {
            font-size: 1.6rem;
            line-height: 1;
        }
        blockquote {
            border-left: 5px solid var(--accent);
            background: var(--bg-soft);
            padding: 1rem 1.8rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            font-style: italic;
            color: var(--text-dark);
        }
        blockquote cite {
            display: block;
            margin-top: 0.5rem;
            font-weight: 600;
            color: var(--primary);
        }
        ul,
        ol {
            margin: 0.8rem 0 1.2rem 1.6rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        hr {
            border: none;
            border-top: 2px solid var(--border-light);
            margin: 2rem 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fff;
            border-radius: var(--radius-sm);
            overflow: hidden;
        }
        th,
        td {
            padding: 10px 14px;
            text-align: left;
            border-bottom: 1px solid var(--border-light);
        }
        th {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: 0;
        }
        tr:hover td {
            background: #f8faff;
        }
        .tag {
            display: inline-block;
            background: var(--accent);
            color: var(--primary);
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
        }
