        :root {
            --primary: #2C3E50;
            --accent: #E74C3C;
            --benfica: #D90000;
            --porto: #0066B3;
            --sporting: #006437;
            --light: #F8F9FA;
            --dark: #343A40;
            --gray: #6C757D;
            --border: #DEE2E6;
            --success: #28A745;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #F5F7F9;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header */
        header {
            background-color: var(--primary);
            color: white;
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-container a {
            text-decoration: none;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--accent);
        }

        .logo-icon {
            margin-right: 10px;
            font-size: 2rem;
        }

        /* Navigation */
        .main-nav {
            display: flex;
        }

        .main-nav ul {
            display: flex;
            list-style: none;
        }

        .main-nav li {
            margin: 0 5px;
            display: flex;
            align-items: center;
        }

        .main-nav a {
            color: white;
            padding: 10px 12px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
        }

        .main-nav a:hover, .main-nav a.active {
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .club-filters {
            display: flex;
            margin-left: 15px;
        }

        .club-filter {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin: 0 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 14px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s;
            text-decoration: none;
        }

        .club-filter:hover {
            transform: scale(1.1);
        }

        .club-filter.active {
            border-color: white;
        }

        .club-benfica {
            background-color: var(--benfica);
        }

        .club-porto {
            background-color: var(--porto);
        }

        .club-sporting {
            background-color: var(--sporting);
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 5px;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary);
            z-index: 1001;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-close {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-content {
            flex: 1;
            padding: 20px 15px;
            overflow-y: auto;
        }

        .mobile-menu ul {
            list-style: none;
        }

        .mobile-menu li {
            margin-bottom: 10px;
        }

        .mobile-menu a {
            display: block;
            color: white;
            padding: 12px 15px;
            border-radius: 4px;
            font-size: 16px;
            text-decoration: none;
        }

        .mobile-menu a:hover, .mobile-menu a.active {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* Overlay when menu is open */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            display: none;
        }

        /* Main Content */
        main {
            padding: 20px 0;
        }

        .page-header {
            margin-bottom: 20px;
            text-align: center;
        }

        .page-header h1 {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .page-header p {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Date Navigation */
        .date-nav {
            display: flex;
            overflow-x: auto;
            margin-bottom: 25px;
            padding-bottom: 10px;
            scrollbar-width: thin;
            -webkit-overflow-scrolling: touch;
        }

        .date-item {
            flex: 0 0 auto;
            text-align: center;
            padding: 12px 15px;
            margin-right: 8px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            cursor: pointer;
            transition: all 0.2s;
            min-width: 70px;
        }

        .date-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .date-item.active {
            background: var(--primary);
            color: white;
        }

        .date-day {
            font-size: 1.1rem;
            font-weight: 700;
        }

        .date-number {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .date-month {
            font-size: 0.85rem;
            margin-top: 2px;
            text-transform: uppercase;
        }

        /* Matches Table */
        .matches-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 30px;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }

        .table-header {
            background-color: var(--primary);
            color: white;
        }

        .table-header h3 {
            padding: 15px;
            font-size: 1.3rem;
        }

        .matches-table tr {
            border-bottom: 1px solid var(--border);
        }

        .matches-table tr:last-child {
            border-bottom: none;
        }

        .matches-table td {
            padding: 12px 15px;
        }

        .match-time {
            font-weight: 600;
            color: var(--primary);
            width: 80px;
        }

        .team-home, .team-away {
            font-weight: 500;
        }

        .team-home {
            text-align: right;
            width: 40%;
        }

        .team-away {
            text-align: left;
            width: 40%;
        }

        .vs {
            text-align: center;
            width: 20px;
            color: var(--gray);
            font-weight: 500;
        }

        .match-channel {
            text-align: right;
            width: 120px;
        }

        .channel-badge {
            background: var(--accent);
            color: white;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            display: inline-block;
        }
        .channel-badge a{
            color: white;
            text-decoration:none
        }

        .club-badge {
            display: inline-block;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            text-align: center;
            line-height: 20px;
            font-size: 0.75rem;
            font-weight: bold;
            margin-right: 8px;
            color: white;
        }

        .benfica { background-color: var(--benfica); }
        .porto { background-color: var(--porto); }
        .sporting { background-color: var(--sporting); }

        .match-day {
            font-size: 0.8rem;
            color: var(--gray);
            font-style: italic;
            margin-top: 3px;
        }

        .day-divider {
            background-color: var(--light);
            font-weight: bold;
            padding: 10px 15px;
            border-left: 4px solid var(--accent);
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: white;
            padding: 30px 0 15px;
            margin-top: 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: white;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
        }

        .hidden {
            display: none;
        }

        /* Install Button */
        .install-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            z-index: 997;
            display: none;
            align-items: center;
            justify-content: center;
        }

        /* Responsive */
        @media (max-width: 798px) {
            .header-container {
                flex-wrap: wrap;
            }

            .main-nav {
                display: none;
            }

            .club-filters {
                display: flex;
                margin-left: 15px;
            }

            .mobile-menu-btn {
                display: block;
            }

            .logo {
                font-size: 1.5rem;
            }

            .page-header h1 {
                font-size: 1.8rem;
            }

            .matches-table {
                font-size: 0.9rem;
            }

            .matches-table td {
                padding: 10px 8px;
            }

            .club-badge {
                width: 18px;
                height: 18px;
                line-height: 18px;
                font-size: 0.7rem;
                margin-right: 5px;
            }

            .channel-badge {
                font-size: 0.8rem;
                padding: 3px 8px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .date-item {
                min-width: 60px;
                padding: 10px 12px;
            }

            .date-number {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .date-day {
                font-size: 1rem;
            }

            .date-month {
                font-size: 0.8rem;
            }

            .matches-table {
                font-size: 0.75rem;
            }
            .channel-badge {
                font-size: 0.7rem;
                padding: 3px 8px;
            }
            .match-time {
                width: 60px;
            }

            .team-home, .team-away {
                width: 35%;
            }
        }

        .no-matches {
            text-align: center;
            padding: 30px;
            color: var(--gray);
            font-style: italic;
        }

        /* Breadcrumb */
        .breadcrumb {
            padding: 10px 0;
            font-size: 0.9rem;
            color: var(--gray);
        }

        .breadcrumb a {
            color: var(--accent);
            text-decoration: none;
        }

        /* Novo estilo para conteúdo SEO no final */
        .seo-content {
            background: white;
            border-radius: 8px;
            padding: 20px;
            margin: 40px 0 20px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }

        .seo-content h2 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .seo-content p {
            margin-bottom: 12px;
            line-height: 1.6;
            color: var(--dark);
            font-size: 0.95rem;
        }

        .seo-content strong {
            color: var(--accent);
        }

        /* Melhorias para mobile */
        @media (max-width: 768px) {
            .seo-content {
                padding: 15px;
                margin: 30px 0 15px;
            }

            .seo-content h2 {
                font-size: 1.2rem;
            }

            .seo-content p {
                font-size: 0.9rem;
            }
        }
        .live-score {
            font-weight: bold;
            color: #e74c3c;
            font-size: 1.1em;
            padding: 2px 6px;
            border-radius: 4px;
            background-color: #fff3f2;
        }

        .live-badge {
            display: inline-block;
            background: linear-gradient(135deg, #e94560 0%, #c2185b 100%);
            color: white;
            font-size: 9px;
            padding: 2px 6px;
            border-radius: 12px;
            margin-left: 5px;
            animation: pulse 1.5s infinite;
            font-weight: bold;
            text-transform: uppercase;
        }

        .finished-badge {
            display: inline-block;
            font-size: 9px;
            padding: 2px 6px;
            border-radius: 12px;
            margin-left: 5px;
            font-weight: bold;
            text-transform: uppercase;
            background-color: #f0f0f0;
        }

        .match-live {
            position: relative;
        }

        .match-live::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: #e74c3c;
            border-radius: 2px 0 0 2px;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
            }
            70% {
                box-shadow: 0 0 0 8px rgba(231, 76, 60, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
            }
        }
