* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        :root {
            --primary: #1a237e; --secondary: #ffab00; --accent: #00b0ff;
            --light: #f5f5f7; --dark: #121212; --text: #333; --text-light: #666;
            --shadow: 0 4px 12px rgba(0,0,0,0.08); --transition: all 0.3s ease;
        }
        body { background-color: var(--light); color: var(--text); line-height: 1.7; overflow-x: hidden; }
        a { text-decoration: none; color: var(--primary); transition: var(--transition); }
        a:hover { color: var(--accent); }
        img { max-width: 100%; height: auto; display: block; }
        .site-header { background: linear-gradient(135deg, var(--primary), var(--dark)); color: white; padding: 1rem 2rem; position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow); }
        .header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; }
        .my-logo { font-size: 1.8rem; font-weight: 800; color: var(--secondary); text-transform: uppercase; letter-spacing: 1px; }
        .my-logo span { color: white; }
        .nav-desktop { display: flex; gap: 2rem; }
        .nav-desktop a { color: white; font-weight: 500; padding: 0.5rem 0; position: relative; }
        .nav-desktop a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--secondary); transition: var(--transition); }
        .nav-desktop a:hover::after { width: 100%; }
        .hamburger { display: none; font-size: 1.5rem; background: none; border: none; color: white; cursor: pointer; }
        .nav-mobile { display: none; flex-direction: column; background: var(--dark); position: absolute; top: 100%; left: 0; width: 100%; padding: 1rem 2rem; box-shadow: var(--shadow); }
        .nav-mobile.active { display: flex; }
        .nav-mobile a { color: white; padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .breadcrumb { background: #e8eaf6; padding: 0.8rem 2rem; font-size: 0.9rem; }
        .breadcrumb a { color: var(--text-light); }
        .breadcrumb a:hover { color: var(--primary); }
        .search-bar { background: white; padding: 2rem; margin: 2rem auto; max-width: 800px; border-radius: 10px; box-shadow: var(--shadow); }
        .search-form { display: flex; }
        .search-form input { flex: 1; padding: 0.9rem; border: 2px solid #ddd; border-radius: 5px 0 0 5px; font-size: 1rem; }
        .search-form button { background: var(--primary); color: white; border: none; padding: 0 1.5rem; border-radius: 0 5px 5px 0; cursor: pointer; }
        .search-form button:hover { background: var(--accent); }
        .container { max-width: 1200px; margin: 2rem auto; padding: 0 1.5rem; display: grid; grid-template-columns: 1fr 300px; gap: 3rem; }
        @media (max-width: 992px) { .container { grid-template-columns: 1fr; } }
        article { background: white; border-radius: 15px; padding: 2.5rem; box-shadow: var(--shadow); }
        .article-header { margin-bottom: 2.5rem; border-bottom: 3px solid var(--secondary); padding-bottom: 1.5rem; }
        h1 { color: var(--primary); font-size: 2.8rem; line-height: 1.2; margin-bottom: 1rem; }
        .meta { color: var(--text-light); font-size: 0.95rem; margin-bottom: 1rem; }
        .meta i { margin-right: 0.5rem; color: var(--accent); }
        .featured-img { margin: 2rem 0; border-radius: 10px; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
        .featured-img img { width: 100%; transition: transform 0.5s ease; }
        .featured-img img:hover { transform: scale(1.02); }
        h2 { color: var(--primary); font-size: 2rem; margin: 2.5rem 0 1.2rem; padding-bottom: 0.5rem; border-bottom: 2px dashed #e0e0e0; }
        h3 { color: var(--dark); font-size: 1.6rem; margin: 2rem 0 1rem; }
        h4 { color: var(--text-light); font-size: 1.3rem; margin: 1.5rem 0 0.8rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        .highlight { background: linear-gradient(90deg, #e3f2fd, #f3e5f5); padding: 1.5rem; border-left: 5px solid var(--accent); margin: 2rem 0; border-radius: 0 10px 10px 0; }
        .tip { background: #fff8e1; padding: 1rem; border-radius: 8px; margin: 1.5rem 0; display: flex; align-items: flex-start; }
        .tip i { color: var(--secondary); margin-right: 1rem; font-size: 1.2rem; flex-shrink: 0; margin-top: 0.2rem; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
        .stat-card { background: #f5f5f5; padding: 1.5rem; border-radius: 10px; text-align: center; transition: var(--transition); }
        .stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
        .stat-card h4 { color: var(--primary); margin-bottom: 0.5rem; }
        .sidebar { background: white; border-radius: 15px; padding: 2rem; box-shadow: var(--shadow); align-self: start; position: sticky; top: 120px; }
        .sidebar-widget { margin-bottom: 2.5rem; }
        .sidebar-widget h3 { font-size: 1.3rem; color: var(--primary); margin-bottom: 1.2rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--secondary); }
        .related-links li { margin-bottom: 0.8rem; padding-left: 1rem; position: relative; }
        .related-links li::before { content: '⚽'; position: absolute; left: 0; }
        .rating-widget { text-align: center; }
        .stars { font-size: 1.8rem; color: #ddd; margin: 1rem 0; }
        .stars i { cursor: pointer; margin: 0 0.2rem; transition: var(--transition); }
        .stars i:hover, .stars i.active { color: var(--secondary); }
        .comment-section { margin-top: 3rem; }
        .comment-form textarea, .comment-form input { width: 100%; padding: 1rem; margin-bottom: 1rem; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; }
        .comment-form button { background: var(--primary); color: white; border: none; padding: 0.8rem 2rem; border-radius: 5px; cursor: pointer; }
        .comment-form button:hover { background: var(--accent); }
        .comment { background: #f9f9f9; padding: 1.2rem; border-radius: 8px; margin-bottom: 1.2rem; }
        .comment-header { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--text-light); }
        footer { background: var(--dark); color: #ccc; padding: 3rem 2rem 1.5rem; margin-top: 4rem; }
        .footer-content { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2.5rem; }
        .footer-logo { font-size: 1.8rem; font-weight: 800; color: var(--secondary); margin-bottom: 1rem; }
        .friend-links { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.5rem 0; }
        friend-link { background: rgba(255,255,255,0.05); padding: 0.5rem 1rem; border-radius: 5px; }
        friend-link a { color: #ccc; }
        friend-link a:hover { color: var(--secondary); }
        .copyright { text-align: center; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; color: #999; }
        @media (max-width: 768px) {
            .header-container { padding: 0.5rem 1rem; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            h1 { font-size: 2.2rem; }
            .container { padding: 0 1rem; }
            article, .sidebar { padding: 1.5rem; }
            .search-bar { margin: 1rem; padding: 1.5rem; }
        }
