        * { 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.8;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { color: #1e3a8a; margin-bottom: 1rem; line-height: 1.3; font-weight: 700; }
        h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); border-bottom: 4px solid #dc2626; padding-bottom: 0.5rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-top: 2.5rem; }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 2rem; color: #2563eb; }
        h4 { font-size: 1.3rem; margin-top: 1.5rem; color: #4f46e5; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        .lead { font-size: 1.25rem; font-weight: 500; color: #555; }
        .highlight { background-color: #fef3c7; padding: 0.2rem 0.5rem; border-radius: 4px; font-weight: 600; }
        .bold { font-weight: 700; color: #1f2937; }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        main {
            display: grid;
            grid-template-columns: 1fr minmax(300px, 25%);
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            main { grid-template-columns: 1fr; }
        }
        header { background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%); color: white; box-shadow: 0 4px 12px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
        .header-top { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; }
        .my-logo a { font-size: 2rem; font-weight: 900; color: white; text-decoration: none; font-family: 'Arial Black', sans-serif; letter-spacing: 1px; }
        .my-logo span { color: #fbbf24; }
        .mobile-toggle { display: none; background: none; border: none; color: white; font-size: 1.8rem; cursor: pointer; }
        nav ul { display: flex; list-style: none; gap: 2rem; }
        nav a { color: #e5e7eb; text-decoration: none; font-weight: 600; padding: 0.5rem 0; position: relative; transition: color 0.3s; }
        nav a:hover, nav a.active { color: #fbbf24; }
        nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #fbbf24; transition: width 0.3s; }
        nav a:hover::after { width: 100%; }
        .breadcrumb { padding: 1rem 1.5rem; background-color: #f1f5f9; font-size: 0.9rem; color: #64748b; }
        .breadcrumb a { color: #3b82f6; text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        @media (max-width: 768px) {
            .mobile-toggle { display: block; }
            nav { display: none; width: 100%; position: absolute; top: 100%; left: 0; background: #1e3a8a; padding: 1rem; box-shadow: 0 5px 10px rgba(0,0,0,0.2); }
            nav.active { display: block; }
            nav ul { flex-direction: column; gap: 1rem; }
        }
        article { background: white; padding: 2.5rem; border-radius: 12px; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); }
        .article-intro { font-size: 1.1rem; border-left: 5px solid #dc2626; padding-left: 1.5rem; margin: 2rem 0; }
        .article-image { margin: 2.5rem 0; border-radius: 10px; overflow: hidden; box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
        .article-image figcaption { text-align: center; font-style: italic; color: #6b7280; padding: 0.8rem; background-color: #f9fafb; }
        .info-box { background: #e0f2fe; border-left: 5px solid #0369a1; padding: 1.5rem; margin: 2rem 0; border-radius: 0 8px 8px 0; }
        .related-links { margin: 2.5rem 0; padding: 1.5rem; background: #fef3c7; border-radius: 10px; }
        .related-links h3 { margin-top: 0; }
        .related-links ul { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; }
        .related-links li a { color: #92400e; text-decoration: none; display: flex; align-items: center; padding: 0.5rem; border-radius: 5px; transition: all 0.3s; }
        .related-links li a:hover { background: #fde68a; padding-left: 1rem; }
        .related-links li a::before { content: '⚽'; margin-right: 0.8rem; }
        .content-link { color: #dc2626; font-weight: 600; text-decoration: none; border-bottom: 1px dashed #dc2626; }
        .content-link:hover { border-bottom-style: solid; }
        aside { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); align-self: start; position: sticky; top: 120px; }
        .sidebar-widget { margin-bottom: 2.5rem; }
        .sidebar-widget h3 { font-size: 1.4rem; border-bottom: 3px solid #10b981; padding-bottom: 0.5rem; margin-bottom: 1.2rem; }
        .search-form { display: flex; }
        .search-form input { flex: 1; padding: 0.8rem 1rem; border: 2px solid #d1d5db; border-radius: 6px 0 0 6px; font-size: 1rem; }
        .search-form button { background: #10b981; color: white; border: none; padding: 0 1.5rem; border-radius: 0 6px 6px 0; cursor: pointer; transition: background 0.3s; }
        .search-form button:hover { background: #059669; }
        .rating-form .stars { direction: rtl; unicode-bidi: bidi-override; text-align: center; margin: 1rem 0; }
        .rating-form .stars input { display: none; }
        .rating-form .stars label { font-size: 2rem; color: #d1d5db; cursor: pointer; padding: 0 0.2rem; }
        .rating-form .stars label:hover,
        .rating-form .stars label:hover ~ label,
        .rating-form .stars input:checked ~ label { color: #f59e0b; }
        .form-group { margin-bottom: 1.2rem; }
        .form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: #4b5563; }
        .form-group input,
        .form-group textarea,
        .form-group select { width: 100%; padding: 0.8rem; border: 2px solid #d1d5db; border-radius: 6px; font-family: inherit; font-size: 1rem; transition: border 0.3s; }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus { outline: none; border-color: #3b82f6; }
        .submit-btn { background: linear-gradient(to right, #dc2626, #ef4444); color: white; border: none; padding: 1rem 2rem; border-radius: 6px; font-size: 1.1rem; font-weight: 700; cursor: pointer; width: 100%; transition: transform 0.3s, box-shadow 0.3s; }
        .submit-btn:hover { transform: translateY(-3px); box-shadow: 0 7px 14px rgba(220, 38, 38, 0.3); }
        footer { background: #1e293b; color: #cbd5e1; margin-top: 4rem; }
        .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; padding: 3rem 1.5rem; }
        .footer-logo { font-size: 2rem; font-weight: 900; color: white; margin-bottom: 1rem; }
        .footer-links h4 { color: #fbbf24; margin-bottom: 1.2rem; }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 0.8rem; }
        .footer-links a { color: #cbd5e1; text-decoration: none; transition: color 0.3s; }
        .footer-links a:hover { color: #fbbf24; }
        friend-link { display: block; background: #374151; padding: 1.5rem; border-radius: 8px; margin-top: 1rem; }
        friend-link a { color: #60a5fa; font-weight: 600; }
        .copyright { text-align: center; padding: 1.5rem; border-top: 1px solid #4b5563; color: #9ca3af; font-size: 0.9rem; }
        .hover-card { transition: transform 0.4s, box-shadow 0.4s; }
        .hover-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin: 2.5rem 0; }
        .stat-box { text-align: center; padding: 1.5rem; background: #f0f9ff; border-radius: 10px; }
        .stat-number { font-size: 2.5rem; font-weight: 900; color: #1d4ed8; display: block; line-height: 1; }
        .update-time { background: #dcfce7; color: #166534; padding: 0.8rem; border-radius: 6px; text-align: center; margin: 2rem 0; font-weight: 600; }
