        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1e3a8a; 
            --secondary: #dc2626; 
            --accent: #f59e0b; 
            --light: #f8fafc;
            --dark: #0f172a;
            --gray: #64748b;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f1f5f9;
            color: #334155;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul {
            list-style: none;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-padding {
            padding: 60px 0;
        }
        .text-center {
            text-align: center;
        }
        .highlight {
            color: var(--secondary);
            font-weight: bold;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, var(--primary), #3b82f6);
            color: white;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            background: linear-gradient(135deg, #3b82f6, var(--primary));
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        header {
            background-color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
        }
        .logo span {
            color: var(--accent);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            font-weight: 600;
            color: var(--dark);
            padding: 8px 0;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--secondary);
            transition: width 0.3s;
        }
        .nav-links a:hover:after,
        .nav-links a.active:after {
            width: 100%;
        }
        .search-box {
            display: flex;
            margin-left: 30px;
            border: 2px solid #e2e8f0;
            border-radius: 50px;
            overflow: hidden;
        }
        .search-box input {
            padding: 10px 20px;
            border: none;
            outline: none;
            min-width: 250px;
        }
        .search-box button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark);
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: #f8fafc;
            border-top: 1px solid #e2e8f0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb span {
            margin: 0 8px;
            color: #cbd5e1;
        }
        .hero {
            background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 20px;
            text-align: center;
            border-bottom: 5px solid var(--accent);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.1;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        main {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            margin: -40px auto 40px;
            padding: 50px;
            position: relative;
        }
        @media (max-width: 768px) {
            main {
                padding: 30px 20px;
                margin: -20px auto 20px;
            }
        }
        article h2 {
            color: var(--dark);
            border-left: 6px solid var(--secondary);
            padding-left: 20px;
            margin: 40px 0 20px;
            font-size: 2.2rem;
        }
        article h3 {
            color: var(--primary);
            margin: 30px 0 15px;
            font-size: 1.8rem;
            padding-bottom: 10px;
            border-bottom: 2px dashed #e2e8f0;
        }
        article p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        article strong {
            color: var(--dark);
            background-color: #fef3c7;
            padding: 0 4px;
        }
        .content-img {
            float: right;
            margin: 20px 0 20px 40px;
            max-width: 500px;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border: 5px solid white;
        }
        @media (max-width: 768px) {
            .content-img {
                float: none;
                margin: 20px auto;
                max-width: 100%;
            }
        }
        .infobox {
            background-color: #f0f9ff;
            border-left: 5px solid var(--primary);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .match-schedule {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .match-card {
            background: linear-gradient(145deg, #ffffff, #f1f5f9);
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
            border-top: 5px solid var(--accent);
            transition: var(--transition);
        }
        .match-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .match-card h4 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        .quote {
            font-style: italic;
            color: var(--gray);
            border-left: 4px solid var(--accent);
            padding-left: 20px;
            margin: 30px 0;
            font-size: 1.2rem;
        }
        .author {
            font-weight: bold;
            color: var(--dark);
            text-align: right;
            margin-top: 10px;
        }
        .interactive-section {
            background-color: #f8fafc;
            border-radius: 12px;
            padding: 40px;
            margin: 60px 0;
            border: 1px solid #e2e8f0;
        }
        .interactive-section h3 {
            text-align: center;
            margin-bottom: 30px;
        }
        .rating-form, .comment-form {
            max-width: 800px;
            margin: 0 auto;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        .form-control {
            width: 100%;
            padding: 15px;
            border: 2px solid #cbd5e1;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #e2e8f0;
            margin: 10px 0;
        }
        .star-rating i {
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: var(--accent);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 50px 0;
        }
        @media (max-width: 992px) {
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 576px) {
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: white;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border: 1px solid #e2e8f0;
        }
        .web-link:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-5px);
        }
        .web-link a {
            display: block;
            font-weight: 600;
        }
        footer {
            background-color: var(--dark);
            color: #cbd5e1;
            padding: 50px 0 20px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
        .footer-col h4 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #334155;
            border-radius: 50%;
            font-size: 1.2rem;
        }
        .social-links a:hover {
            background-color: var(--secondary);
            transform: scale(1.1);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #334155;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        @media (max-width: 992px) {
            .nav-links,
            .search-box {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
        }
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            article h3 {
                font-size: 1.5rem;
            }
        }
