        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary: #1e3a8a;
            --secondary: #dc2626;
            --accent: #fbbf24;
            --light: #f8fafc;
            --dark: #0f172a;
            --gray: #64748b;
            --transition: all 0.3s ease;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --radius: 8px;
            --max-width: 1200px;
        }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background-color: #fff;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: inherit; }
        ul, ol { list-style-position: inside; margin-left: 1rem; }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, var(--accent), white);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .my-logo:hover { transform: scale(1.02); }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .search-box {
            display: flex;
            width: 300px;
        }
        .search-box input {
            flex: 1;
            padding: 0.6rem 1rem;
            border: none;
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 0.95rem;
        }
        .search-box button {
            background-color: var(--accent);
            color: var(--dark);
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-box button:hover { background-color: #f59e0b; }
        .main-nav { padding-top: 0.75rem; }
        .main-nav ul {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .main-nav li { list-style: none; }
        .main-nav a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        .main-nav a:hover { color: var(--accent); }
        .main-nav a:hover::after { width: 100%; }
        .breadcrumb {
            background-color: var(--light);
            padding: 0.8rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #e2e8f0;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            margin-left: 0;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: var(--gray);
        }
        .breadcrumb a:hover { color: var(--secondary); text-decoration: underline; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article {
            background: white;
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .article-header { margin-bottom: 2.5rem; }
        .article-header h1 {
            font-size: 2.5rem;
            line-height: 1.2;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .meta {
            display: flex;
            gap: 1.5rem;
            color: var(--gray);
            font-size: 0.9rem;
            border-bottom: 1px solid #e2e8f0;
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
        }
        .meta i { margin-right: 0.4rem; }
        .intro {
            font-size: 1.2rem;
            color: var(--dark);
            background: #f0f9ff;
            padding: 1.5rem;
            border-left: 4px solid var(--primary);
            border-radius: 0 var(--radius) var(--radius) 0;
            margin-bottom: 2.5rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img { transform: scale(1.03); }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            padding: 0.75rem;
            font-size: 0.9rem;
            background-color: #f8fafc;
        }
        h2 {
            font-size: 1.8rem;
            color: var(--primary);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e2e8f0;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #374151;
            margin: 1.5rem 0 0.8rem;
        }
        h2::before, h3::before, h4::before {
            content: '⚽';
            margin-right: 0.5rem;
            font-size: 0.9em;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            hyphens: auto;
        }
        .highlight {
            background: linear-gradient(120deg, #fef3c7 0%, #fef3c7 100%);
            padding: 0.2rem 0.4rem;
            border-radius: 3px;
            font-weight: 600;
        }
        .emphasis {
            font-weight: 700;
            color: var(--secondary);
        }
        blockquote {
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            background-color: #fffbeb;
            margin: 2rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
            font-style: italic;
        }
        .insider-tip {
            background: #ecfdf5;
            border: 1px solid #a7f3d0;
            border-left-width: 5px;
            border-left-color: #10b981;
            padding: 1.5rem;
            border-radius: var(--radius);
            margin: 1.5rem 0;
        }
        .insider-tip h4 { color: #065f46; margin-top: 0; }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 2rem 0;
        }
        .link-list a {
            background: var(--light);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            border: 1px solid #cbd5e1;
            transition: var(--transition);
            font-weight: 500;
        }
        .link-list a:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-3px);
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e2e8f0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .widget-title i { color: var(--secondary); }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            color: var(--accent);
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.4rem;
            font-weight: 600;
            color: var(--dark);
        }
        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #cbd5e1;
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
        }
        textarea.form-control { min-height: 120px; resize: vertical; }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: var(--radius);
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            width: 100%;
            font-size: 1rem;
        }
        .btn:hover {
            opacity: 0.95;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(30, 58, 138, 0.2);
        }
        .stars-input {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        .stars-input i {
            font-size: 2rem;
            color: #d1d5db;
            cursor: pointer;
            transition: var(--transition);
        }
        .stars-input i:hover,
        .stars-input i.active { color: var(--accent); }
        footer {
            background-color: var(--dark);
            color: #cbd5e1;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        @media (max-width: 768px) {
            .footer-content { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 480px) {
            .footer-content { grid-template-columns: 1fr; }
        }
        .footer-title {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #374151;
        }
        .footer-links li { list-style: none; margin-bottom: 0.7rem; }
        .footer-links a {
            transition: var(--transition);
            display: block;
            padding: 0.2rem 0;
        }
        .footer-links a:hover { color: var(--accent); padding-left: 0.5rem; }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: var(--radius);
            margin-bottom: 0.8rem;
            border-left: 3px solid var(--accent);
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #374151;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        @media (max-width: 768px) {
            .header-top { flex-wrap: wrap; }
            .mobile-toggle { display: block; }
            .main-nav {
                display: none;
                width: 100%;
                margin-top: 1rem;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            .main-nav a {
                display: block;
                padding: 0.75rem;
                background: rgba(255,255,255,0.1);
                border-radius: var(--radius);
            }
            .search-box { width: 100%; margin-top: 1rem; order: 3; }
            .article-header h1 { font-size: 2rem; }
            .intro { font-size: 1.1rem; padding: 1.2rem; }
            h2 { font-size: 1.6rem; }
            h3 { font-size: 1.35rem; }
            article, .sidebar-widget { padding: 1.5rem; }
        }
