<style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
            background: #0A0C15;
            color: #F1F5F9;
            line-height: 1.5;
        }
        ::-webkit-scrollbar { width: 6px; height: 6px; }
        ::-webkit-scrollbar-track { background: #1E293B; border-radius: 10px; }
        ::-webkit-scrollbar-thumb { background: #3B4B66; border-radius: 10px; }
        a { text-decoration: none; color: inherit; }
        .container { max-width: 1300px; margin: 0 auto; padding: 0 24px; }
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 20px 0;
            border-bottom: 1px solid #1F2937;
            margin-bottom: 32px;
        }
        .logo { display: flex; align-items: center; gap: 12px; }
        .logo-icon { font-size: 32px; color: #10B981; }
        .logo-text { font-size: 26px; font-weight: 800; letter-spacing: -0.5px; background: linear-gradient(135deg, #FFFFFF 0%, #A7F3D0 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
        .logo-badge { background: #10B98120; border: 1px solid #10B98140; border-radius: 40px; padding: 4px 12px; font-size: 12px; font-weight: 500; color: #10B981; }
        .nav-links { display: flex; gap: 28px; font-weight: 500; }
        .nav-links a { transition: color 0.2s; }
        .nav-links a:hover, .nav-links a.active { color: #10B981; }
        .user-area { display: flex; gap: 20px; align-items: center; }
        .search-icon, .user-icon { font-size: 20px; cursor: pointer; transition: color 0.2s; }
        .search-icon:hover, .user-icon:hover { color: #10B981; }
        .page-header {
            margin-bottom: 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
        .page-title { font-size: 1.8rem; font-weight: 700; display: flex; align-items: center; gap: 12px; }
        .page-title i { color: #10B981; font-size: 28px; }
        .filter-bar {
            background: #0F121E;
            border-radius: 60px;
            padding: 8px 20px;
            border: 1px solid #262E40;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
            justify-content: space-between;
        }
        .date-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
        .date-btn {
            background: transparent;
            border: none;
            color: #94A3B8;
            padding: 6px 18px;
            border-radius: 40px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            font-family: inherit;
            font-size: 14px;
        }
        .date-btn.active { background: #10B981; color: #0A0C15; box-shadow: 0 4px 12px rgba(16,185,129,0.3); }
        .date-btn:hover:not(.active) { background: #1E293B; color: #E2E8F0; }
        .league-filter {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #0A0D16;
            padding: 4px 16px;
            border-radius: 40px;
        }
        .league-filter i { color: #10B981; }
        select {
            background: transparent;
            border: none;
            color: #F1F5F9;
            font-weight: 500;
            padding: 8px 0;
            outline: none;
            cursor: pointer;
            font-family: inherit;
        }
        select option { background: #0F121E; }
        .schedule-group { margin-bottom: 40px; }
        .group-date {
            display: inline-block;
            background: #1E293B;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 18px;
            letter-spacing: 0.5px;
            border-left: 3px solid #10B981;
        }
        .matches-grid { display: flex; flex-direction: column; gap: 12px; }
        .match-item {
            background: #0F121E;
            border: 1px solid #262E40;
            border-radius: 20px;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            transition: all 0.2s;
        }
        .match-item:hover { background: #13192B; transform: translateX(4px); border-color: #10B98160; }
        .match-info { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
        .team-block { display: flex; align-items: center; gap: 12px; min-width: 140px; }
        .team-icon {
            width: 32px;
            height: 32px;
            background: #1F2A3E;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #10B981;
        }
        .team-name { font-weight: 600; font-size: 1rem; }
        .vs-badge { font-size: 0.75rem; color: #8B9BB0; background: #1E293B; padding: 2px 10px; border-radius: 20px; }
        .match-time { min-width: 110px; display: flex; align-items: center; gap: 8px; color: #CBD5E1; font-size: 0.85rem; }
        .match-time i { color: #10B981; }
        .competition-tag { background: #182233; padding: 4px 12px; border-radius: 50px; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.3px; }
        .action-buttons { display: flex; gap: 12px; }
        .btn-remind, .btn-live {
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
            transition: 0.2s;
            border: none;
            font-family: inherit;
        }
        .btn-remind { background: #1F2A44; color: #CBD5E1; }
        .btn-remind:hover { background: #10B981; color: #0A0C15; }
        .btn-live { background: #10B98120; color: #10B981; border: 1px solid #10B98140; }
        .btn-live:hover { background: #10B981; color: #0A0C15; }
        .empty-state { text-align: center; padding: 60px 20px; background: #0F121E; border-radius: 32px; color: #6C7A91; }
        .breadcrumb { margin-bottom: 16px; font-size: 0.85rem; color: #8B9BB0; }
        .breadcrumb a:hover { color: #10B981; }
        .footer {
            border-top: 1px solid #1F2937;
            padding: 32px 0;
            margin-top: 48px;
            text-align: center;
            font-size: 13px;
            color: #6C7A91;
        }
        .footer-links a { margin: 0 10px; transition: color 0.2s; }
        .footer-links a:hover { color: #10B981; }
        @media (max-width: 800px) {
            .filter-bar { flex-direction: column; align-items: stretch; border-radius: 28px; padding: 16px; }
            .date-tabs { justify-content: center; }
            .match-item { flex-direction: column; align-items: flex-start; }
            .action-buttons { width: 100%; justify-content: flex-end; }
            .team-block { min-width: auto; }
        }
    </style>