        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1a73e8;
            --secondary: #0d47a1;
            --accent: #ff9800;
            --light: #f8f9fa;
            --dark: #202124;
            --gray: #5f6368;
            --border: #dadce0;
            --success: #34a853;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #fff;
            color: var(--dark);
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: var(--primary);
            transition: color 0.3s;
        }
        a:hover {
            color: var(--secondary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .main-nav a:hover, .main-nav a.active {
            background: rgba(255,255,255,0.15);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            background: var(--light);
            padding: 1rem 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: var(--gray);
        }
        .search-container {
            background: var(--light);
            padding: 2rem 0;
            text-align: center;
            margin: 1rem 0;
            border-radius: 8px;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
        }
        .search-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: var(--secondary);
        }
        .main-content {
            flex: 1;
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 16px rgba(0,0,0,0.05);
        }
        .sidebar {
            background: var(--light);
            padding: 1.5rem;
            border-radius: 12px;
            height: fit-content;
        }
        h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            margin: 2rem 0 1rem;
            color: var(--secondary);
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border);
        }
        h3 {
            font-size: 1.5rem;
            margin: 1.5rem 0 0.75rem;
            color: var(--primary);
        }
        p {
            margin-bottom: 1.25rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--gray);
            margin-bottom: 2rem;
        }
        .highlight {
            background: #e8f0fe;
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .term {
            font-weight: bold;
            color: var(--secondary);
        }
        .link-list {
            list-style: none;
            margin: 1.5rem 0;
        }
        .link-list li {
            margin-bottom: 0.75rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .link-list li::before {
            content: "⚽";
            position: absolute;
            left: 0;
        }
        .inline-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .inline-links a {
            background: var(--light);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            border: 1px solid var(--border);
        }
        .inline-links a:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        .featured-image {
            margin: 2rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .image-caption {
            margin-top: 0.5rem;
            font-style: italic;
            color: var(--gray);
            font-size: 0.9rem;
        }
        .rating-widget, .comment-widget {
            background: var(--light);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
            border: 1px solid var(--border);
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: var(--accent);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        input, textarea, select {
            padding: 0.75rem;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 1rem;
        }
        button, .btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
            align-self: flex-start;
        }
        button:hover, .btn:hover {
            background: var(--secondary);
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        .popular-links a {
            display: block;
            padding: 0.75rem;
            background: white;
            margin-bottom: 0.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .popular-links a:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .site-footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: white;
        }
        .footer-links h4 {
            margin-bottom: 1.5rem;
            color: var(--accent);
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
            transition: all 0.3s;
        }
        friend-link {
            display: block;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #444;
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background: var(--secondary);
                width: 80%;
                height: calc(100vh - 70px);
                padding: 2rem;
                transition: right 0.4s;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            }
            .main-nav.active ul {
                right: 0;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .article-content {
                padding: 1.5rem;
            }
        }
