        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #0066cc; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #ff6600; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        ul, ol { padding-left: 2em; margin: 1em 0; }
        p { margin-bottom: 1.2em; text-align: justify; }
        h1, h2, h3, h4 { color: #1a365d; margin-top: 1.5em; margin-bottom: 0.7em; font-weight: 700; line-height: 1.3; }
        h1 { font-size: 2.8rem; border-bottom: 4px solid #ff6600; padding-bottom: 0.3em; }
        h2 { font-size: 2.2rem; border-left: 5px solid #0066cc; padding-left: 15px; }
        h3 { font-size: 1.8rem; color: #2d3748; }
        h4 { font-size: 1.4rem; color: #4a5568; }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            h4 { font-size: 1.2rem; }
        }
        .highlight { background-color: #fff3cd; padding: 2px 6px; border-radius: 3px; font-weight: 600; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        main.container { flex: 1; }
        header { background: linear-gradient(to right, #1a365d, #2d3748); color: white; padding: 1rem 0; box-shadow: 0 4px 12px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .logo a { font-size: 2rem; font-weight: 900; color: #ff6600; text-decoration: none; display: flex; align-items: center; }
        .logo a:hover { color: #fff; }
        .logo .fifa-text { color: #4CAF50; }
        .logo .game-text { color: #ffcc00; }
        .desktop-nav ul { display: flex; list-style: none; gap: 2rem; }
        .desktop-nav a { color: #e2e8f0; font-weight: 600; padding: 0.5rem 1rem; border-radius: 4px; }
        .desktop-nav a:hover { background-color: rgba(255, 102, 0, 0.2); color: white; text-decoration: none; }
        .hamburger { display: none; background: none; border: none; color: white; font-size: 1.8rem; cursor: pointer; }
        .mobile-nav { display: none; background-color: #2d3748; position: absolute; top: 100%; left: 0; right: 0; padding: 1rem; box-shadow: 0 5px 10px rgba(0,0,0,0.2); }
        .mobile-nav.active { display: block; }
        .mobile-nav ul { list-style: none; }
        .mobile-nav li { margin: 1rem 0; }
        .mobile-nav a { color: #e2e8f0; display: block; padding: 0.8rem; border-radius: 4px; }
        .mobile-nav a:hover { background-color: #4a5568; }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .header-content { flex-wrap: wrap; }
        }
        .breadcrumb { padding: 1rem 0; background-color: #edf2f7; font-size: 0.9rem; }
        .breadcrumb ol { display: flex; list-style: none; flex-wrap: wrap; }
        .breadcrumb li:not(:last-child)::after { content: '›'; margin: 0 10px; color: #718096; }
        .breadcrumb a { color: #4a5568; }
        .breadcrumb a:hover { color: #2d3748; }
        .search-section { background-color: white; padding: 2rem; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); margin: 2rem 0; text-align: center; }
        .search-form { display: flex; max-width: 600px; margin: 0 auto; }
        .search-input { flex: 1; padding: 15px; border: 2px solid #cbd5e0; border-radius: 8px 0 0 8px; font-size: 1rem; }
        .search-btn { background: linear-gradient(to right, #0066cc, #004d99); color: white; border: none; padding: 0 25px; border-radius: 0 8px 8px 0; cursor: pointer; font-weight: bold; transition: background 0.3s; }
        .search-btn:hover { background: linear-gradient(to right, #ff6600, #cc5200); }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        article { background-color: white; padding: 2.5rem; border-radius: 12px; box-shadow: 0 8px 25px rgba(0,0,0,0.08); }
        .article-meta { color: #718096; font-size: 0.9rem; margin-bottom: 2rem; display: flex; justify-content: space-between; flex-wrap: wrap; }
        .featured-img { margin: 2rem auto; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
        .featured-img figcaption { text-align: center; font-style: italic; color: #666; padding: 0.5rem; background-color: #f7fafc; }
        aside { background-color: white; padding: 1.5rem; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); align-self: start; }
        .sidebar-widget { margin-bottom: 2rem; }
        .sidebar-widget h3 { font-size: 1.3rem; margin-top: 0; border-bottom: 2px solid #e2e8f0; padding-bottom: 0.5rem; }
        .link-list { list-style: none; padding-left: 0; }
        .link-list li { margin-bottom: 0.8rem; padding-bottom: 0.8rem; border-bottom: 1px dashed #e2e8f0; }
        .link-list a { display: block; padding: 0.5rem; border-radius: 5px; }
        .link-list a:hover { background-color: #f7fafc; }
        .user-interaction { background-color: white; padding: 2rem; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); margin: 2rem 0; }
        .interaction-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
        .form-group { margin-bottom: 1.5rem; }
        label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: #4a5568; }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #cbd5e0;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus { outline: none; border-color: #0066cc; box-shadow: 0 0 0 3px rgba(0,102,204,0.1); }
        .submit-btn { background: linear-gradient(to right, #4CAF50, #2E7D32); color: white; border: none; padding: 15px 30px; border-radius: 8px; cursor: pointer; font-size: 1rem; font-weight: bold; transition: background 0.3s; }
        .submit-btn:hover { background: linear-gradient(to right, #ff6600, #cc5200); }
        .star-rating { display: flex; gap: 5px; font-size: 1.8rem; cursor: pointer; }
        .star-rating span { color: #cbd5e0; transition: color 0.2s; }
        .star-rating span:hover,
        .star-rating span.active { color: #ffcc00; }
        footer { background: linear-gradient(to right, #1a365d, #2d3748); color: #cbd5e0; padding: 3rem 0 1.5rem; margin-top: 3rem; }
        .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
        .footer-section h3 { color: #ffcc00; border-bottom: 2px solid #4a5568; padding-bottom: 0.5rem; margin-bottom: 1.5rem; }
        friend-link { display: block; margin-bottom: 0.8rem; }
        friend-link a { color: #90cdf4; }
        .copyright { text-align: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #4a5568; font-size: 0.9rem; color: #a0aec0; }
@font-face {
            font-family: 'Font Awesome 5 Free';
            font-style: normal;
            font-weight: 900;
            font-display: block;
            src: url("data:application/font-woff2;charset=utf-8;base64,d09GMgABAAAAAA4AABAAAAAAHyQAAAvZAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP0ZGVE0cGh4bgm4chkwGYACDcggqCYJzEQgKgaQIgYoLQbsEIAE2AiQDiC4Lg14ABCAFgjwHIAyCShvHn01FiVHItg8A4twq3Pv/... [TRUNCATED - ACTUAL BASE64 WOFF2 DATA WOULD BE VERY LONG]") format('woff2');
        }
        .fa { font-family: 'Font Awesome 5 Free'; font-weight: 900; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; display: inline-block; font-style: normal; font-variant: normal; text-rendering: auto; line-height: 1; }
        .fa-bars:before { content: "\f0c9"; }
        .fa-search:before { content: "\f002"; }
        .fa-star:before { content: "\f005"; }
        .fa-calendar-alt:before { content: "\f073"; }
        .fa-user:before { content: "\f007"; }
        .fa-gamepad:before { content: "\f11b"; }
