* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #0a1a2f;
            --secondary: #1e3a5f;
            --accent: #f5b81b;
            --accent-hover: #d9a419;
            --light: #f8f9fa;
            --dark: #0d0d0d;
            --text: #2c3e50;
            --text-light: #6c7a89;
            --white: #ffffff;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            --radius: 12px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--light);
            color: var(--text);
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-hover);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: var(--primary);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--accent);
            letter-spacing: -0.03em;
            text-transform: uppercase;
            background: linear-gradient(135deg, var(--accent), #ffd966);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: var(--transition);
        }
        .my-logo:hover {
            opacity: 0.85;
            -webkit-text-fill-color: var(--accent);
        }
        .my-logo small {
            font-size: 0.5rem;
            display: block;
            -webkit-text-fill-color: rgba(255, 255, 255, 0.5);
            letter-spacing: 0.2em;
            font-weight: 300;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid var(--accent);
            color: var(--accent);
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
        }
        .nav-toggle:hover {
            background: var(--accent);
            color: var(--primary);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: rgba(255, 255, 255, 0.85);
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            background: rgba(245, 184, 27, 0.15);
            color: var(--accent);
        }
        .nav-menu a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: var(--white);
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.9rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: var(--text-light);
            font-weight: 600;
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--secondary);
        }
        .breadcrumb .current {
            color: var(--secondary);
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            padding: 60px 0 50px;
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            position: absolute;
            right: -30px;
            bottom: -30px;
            font-size: 18rem;
            opacity: 0.06;
            transform: rotate(15deg);
        }
        .hero h1 {
            font-size: clamp(2rem, 6vw, 3.6rem);
            font-weight: 900;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero h1 span {
            color: var(--accent);
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 720px;
            margin: 0 auto 24px;
            opacity: 0.9;
            line-height: 1.7;
        }
        .hero-meta {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            font-size: 0.95rem;
            opacity: 0.75;
        }
        .hero-meta i {
            margin-right: 6px;
            color: var(--accent);
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 50px 0;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .section-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px 28px;
            margin-bottom: 32px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .section-card:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }
        .section-card h2 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--accent);
            display: inline-block;
        }
        .section-card h3 {
            font-size: 1.35rem;
            color: var(--secondary);
            margin: 24px 0 12px;
        }
        .section-card h4 {
            font-size: 1.1rem;
            color: var(--text);
            margin: 18px 0 8px;
            font-weight: 600;
        }
        .section-card p {
            margin-bottom: 16px;
            color: var(--text);
        }
        .section-card ul,
        .section-card ol {
            margin: 12px 0 16px 24px;
        }
        .section-card li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fef9e7, #fdf2d7);
            border-left: 4px solid var(--accent);
            padding: 20px 24px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 20px 0;
        }
        .highlight-box strong {
            color: var(--primary);
        }
        .insight-tag {
            display: inline-block;
            background: var(--accent);
            color: var(--primary);
            padding: 2px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 8px;
        }
        .featured-img {
            margin: 24px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: #e9ecef;
            position: relative;
        }
        .featured-img img {
            width: 100%;
            object-fit: cover;
            min-height: 280px;
            background: #dee2e6;
        }
        .featured-img figcaption {
            padding: 12px 16px;
            font-size: 0.9rem;
            color: var(--text-light);
            background: var(--white);
            border-top: 1px solid #eee;
        }
        .sidebar-widget {
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px 20px;
            margin-bottom: 24px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.15rem;
            color: var(--primary);
            margin-bottom: 14px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--accent);
        }
        .sidebar-widget ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-widget li {
            margin-bottom: 10px;
        }
        .sidebar-widget li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            border-radius: 8px;
            background: var(--light);
            transition: var(--transition);
            font-weight: 500;
        }
        .sidebar-widget li a:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateX(4px);
        }
        .sidebar-widget li a i {
            width: 24px;
            text-align: center;
            color: var(--secondary);
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 16px 0;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
            outline: none;
            background: var(--light);
        }
        .search-form input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(245, 184, 27, 0.15);
        }
        .search-form button {
            padding: 12px 24px;
            background: var(--accent);
            color: var(--primary);
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--accent-hover);
            transform: scale(1.02);
        }
        .comment-box,
        .rating-box {
            background: var(--white);
            border-radius: var(--radius);
            padding: 28px;
            margin-bottom: 32px;
            box-shadow: var(--shadow);
        }
        .comment-box h3,
        .rating-box h3 {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 16px;
        }
        .comment-box textarea,
        .comment-box input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            font-family: var(--font);
            transition: var(--transition);
            outline: none;
            margin-bottom: 12px;
            resize: vertical;
        }
        .comment-box textarea:focus,
        .comment-box input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(245, 184, 27, 0.12);
        }
        .comment-box button,
        .rating-box button {
            padding: 12px 32px;
            background: var(--secondary);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-box button:hover,
        .rating-box button:hover {
            background: var(--primary);
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            cursor: pointer;
            margin: 12px 0 16px;
            direction: rtl;
        }
        .star-rating i {
            color: #ddd;
            transition: var(--transition);
        }
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: var(--accent);
            transform: scale(1.1);
        }
        .site-footer {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.8);
            padding: 48px 0 24px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            color: var(--accent);
            font-size: 1.1rem;
            margin-bottom: 16px;
            letter-spacing: 0.03em;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col li {
            margin-bottom: 8px;
        }
        .footer-col a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }
        .footer-col a:hover {
            color: var(--accent);
        }
        friend-link {
            display: block;
            padding: 16px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 16px;
            font-size: 0.95rem;
        }
        friend-link a {
            color: rgba(255, 255, 255, 0.7);
            margin: 0 8px 0 4px;
        }
        friend-link a:hover {
            color: var(--accent);
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
        }
        .copyright strong {
            color: var(--accent);
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                background: var(--secondary);
                padding: 16px;
                border-radius: var(--radius);
                margin-top: 8px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                padding: 12px 16px;
                border-radius: 6px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .section-card {
                padding: 20px 16px;
            }
            .section-card h2 {
                font-size: 1.5rem;
            }
            .hero-meta {
                flex-direction: column;
                gap: 8px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.6s ease forwards;
        }
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .delay-1 {
            animation-delay: 0.1s;
        }
        .delay-2 {
            animation-delay: 0.2s;
        }
        .delay-3 {
            animation-delay: 0.3s;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 16px 0;
            font-size: 0.95rem;
        }
        .data-table th {
            background: var(--primary);
            color: var(--white);
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #eee;
        }
        .data-table tr:nth-child(even) {
            background: #f8f9fa;
        }
        .data-table tr:hover td {
            background: #fef9e7;
        }
