        * { 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-color: #f9f9f9;
            max-width: 120rem;
            margin: 0 auto;
            padding: 0 1rem;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; color: #0d47a1; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin: 2.5rem 0 1rem; color: #1565c0; border-bottom: 3px solid #ffc107; padding-bottom: 0.5rem; }
        h3 { font-size: clamp(1.5rem, 3vw, 1.8rem); margin: 2rem 0 0.8rem; color: #1976d2; }
        h4 { font-size: 1.3rem; margin: 1.5rem 0 0.5rem; color: #2196f3; }
        p { margin-bottom: 1.2rem; text-align: justify; }
        a { color: #d32f2f; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #b71c1c; text-decoration: underline; }
        .lead { font-size: 1.3rem; font-weight: 500; color: #555; }
        .highlight { background-color: #fff9c4; padding: 0.2rem 0.5rem; border-radius: 3px; font-weight: 600; }
        .last-update { font-style: italic; color: #777; font-size: 0.95rem; margin-top: 2rem; padding-top: 1rem; border-top: 1px dashed #ccc; }
        .container {
            display: grid;
            grid-template-columns: 1fr;
            grid-template-areas:
                "header"
                "nav"
                "breadcrumb"
                "main"
                "sidebar"
                "footer";
            gap: 2rem;
        }
        @media (min-width: 992px) {
            .container {
                grid-template-columns: 3fr 1fr;
                grid-template-areas:
                    "header header"
                    "nav nav"
                    "breadcrumb breadcrumb"
                    "main sidebar"
                    "footer footer";
            }
        }
        header { grid-area: header; padding: 1.5rem 0; text-align: center; border-bottom: 5px solid #0d47a1; }
        .my-logo { font-size: 3rem; font-weight: 900; color: #0d47a1; text-transform: uppercase; letter-spacing: 2px; text-shadow: 2px 2px 4px rgba(0,0,0,0.2); }
        .my-logo a { color: inherit; text-decoration: none; }
        .my-logo a:hover { color: #ffc107; }
        .logo-sub { font-size: 1rem; color: #666; margin-top: 0.5rem; }
        nav { grid-area: nav; background-color: #0d47a1; border-radius: 8px; }
        .nav-container { display: flex; justify-content: space-between; align-items: center; padding: 0 1.5rem; }
        .main-nav { display: flex; list-style: none; }
        .main-nav li { position: relative; }
        .main-nav a {
            display: block;
            color: white;
            padding: 1rem 1.5rem;
            font-weight: 500;
        }
        .main-nav a:hover { background-color: #1565c0; color: #ffc107; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: white;
            background: none;
            border: none;
            cursor: pointer;
        }
        @media (max-width: 991px) {
            .hamburger { display: block; }
            .main-nav {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #0d47a1;
                flex-direction: column;
                display: none;
                z-index: 1000;
                border-radius: 0 0 8px 8px;
            }
            .main-nav.active { display: flex; }
            .main-nav li { width: 100%; text-align: center; }
        }
        .breadcrumb { grid-area: breadcrumb; padding: 1rem; background-color: #e3f2fd; border-radius: 5px; }
        .breadcrumb a { color: #1565c0; }
        .breadcrumb span { color: #777; }
        main { grid-area: main; background: white; padding: 2rem; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        article section { margin-bottom: 3rem; }
        aside { grid-area: sidebar; }
        .widget {
            background: white;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget h3 { font-size: 1.4rem; margin-top: 0; }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
            width: 100%;
        }
        button {
            background-color: #d32f2f;
            color: white;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        button:hover { background-color: #b71c1c; }
        .stars { display: flex; gap: 0.5rem; margin: 0.5rem 0; }
        .star { font-size: 1.5rem; color: #ddd; cursor: pointer; }
        .star:hover, .star.active { color: #ffc107; }
        .link-list { list-style: none; }
        .link-list li { margin-bottom: 0.8rem; padding-left: 1rem; position: relative; }
        .link-list li:before { content: '⚽'; position: absolute; left: 0; }
        footer { grid-area: footer; background-color: #1a237e; color: white; padding: 2rem; border-radius: 10px; margin-top: 2rem; }
        .footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
        .footer-section { flex: 1 1 300px; }
        .footer-section h4 { color: #ffc107; border-bottom: 2px solid #ffc107; padding-bottom: 0.5rem; }
        friend-link {
            display: block;
            margin: 0.5rem 0;
            color: #bbdefb;
        }
        friend-link:hover { color: #ffc107; }
        .copyright { text-align: center; padding-top: 1.5rem; border-top: 1px solid #3949ab; font-size: 0.9rem; color: #90caf9; }
        .text-center { text-align: center; }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .p-2 { padding: 2rem; }
        .bg-light { background-color: #f1f8ff; border-left: 4px solid #2196f3; padding: 1.5rem; }
        .img-container { margin: 2rem auto; text-align: center; }
        .img-caption { font-style: italic; color: #666; margin-top: 0.5rem; font-size: 0.9rem; }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
