        * {
            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: #f8f9fa;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #1a73e8;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0d47a1;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0a1e5e 0%, #1a237e 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: 15px 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            color: #ffcc00;
        }
        .logo .fa-futbol {
            color: #ffcc00;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: #ffcc00;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: white;
        }
        .breadcrumb {
            background-color: #e3f2fd;
            padding: 12px 0;
            font-size: 0.95rem;
            border-bottom: 1px solid #bbdefb;
        }
        .breadcrumb a {
            color: #0d47a1;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #666;
        }
        .hero {
            background: linear-gradient(rgba(10, 30, 94, 0.85), rgba(26, 35, 126, 0.9)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            padding: 80px 20px;
            text-align: center;
            border-radius: 0 0 20px 20px;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.95;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        .search-box h2 {
            color: #0a1e5e;
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1.1rem;
            transition: border 0.3s;
        }
        .search-form input:focus {
            outline: none;
            border-color: #1a73e8;
        }
        .search-form button {
            background: linear-gradient(to right, #1a73e8, #0d47a1);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .search-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(26, 115, 232, 0.4);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .content {
            background: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        article h2 {
            color: #0a1e5e;
            font-size: 2.2rem;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffcc00;
        }
        article h3 {
            color: #1a237e;
            font-size: 1.7rem;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        article p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
        }
        article strong {
            color: #0d47a1;
            font-weight: 700;
        }
        article em {
            background-color: #fffacd;
            font-style: italic;
            padding: 0 4px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
            border-left: 5px solid #1a73e8;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border: 3px solid white;
        }
        .image-caption {
            font-size: 0.95rem;
            color: #666;
            margin-top: 10px;
            font-style: italic;
        }
        aside {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .sidebar-widget {
            margin-bottom: 35px;
        }
        .sidebar-widget h3 {
            color: #0a1e5e;
            font-size: 1.4rem;
            margin-bottom: 18px;
            padding-bottom: 8px;
            border-bottom: 2px solid #ffcc00;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
        }
        .related-links a {
            display: block;
            padding: 12px 15px;
            background: #f5f7ff;
            border-radius: 8px;
            border-left: 4px solid #1a73e8;
            transition: all 0.3s;
        }
        .related-links a:hover {
            background: #e8eaf6;
            transform: translateX(5px);
            border-left-color: #ffcc00;
        }
        .interaction {
            background: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-top: 40px;
        }
        .interaction h2 {
            color: #0a1e5e;
            font-size: 2rem;
            margin-bottom: 25px;
        }
        .rating-widget {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars .active {
            color: #ffcc00;
        }
        .rating-form,
        .comment-form {
            display: grid;
            gap: 20px;
            margin-top: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 14px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #1a73e8;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        .submit-btn {
            background: linear-gradient(to right, #1a73e8, #0d47a1);
            color: white;
            border: none;
            padding: 16px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
            justify-self: start;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(26, 115, 232, 0.4);
        }
        footer {
            background: #0a1e5e;
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: #ffcc00;
        }
        .footer-links h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #ffcc00;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #bbdefb;
        }
        .footer-links a:hover {
            color: #ffcc00;
            padding-left: 5px;
            transition: all 0.3s;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
        }
        friend-link h4 {
            color: #ffcc00;
            margin-bottom: 15px;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.95rem;
            color: #bbdefb;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: #0a1e5e;
                flex-direction: column;
                align-items: center;
                padding-top: 40px;
                transition: left 0.5s ease;
                gap: 0;
            }
            .nav-links.active {
                left: 0;
            }
            .nav-links li {
                width: 100%;
                text-align: center;
                margin: 10px 0;
            }
            .nav-links a {
                display: block;
                padding: 18px;
                font-size: 1.2rem;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            article h2 {
                font-size: 1.9rem;
            }
            article h3 {
                font-size: 1.5rem;
            }
            .content, .interaction, aside {
                padding: 25px 20px;
            }
        }
