<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: 1400px; 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; }
        .hero {
            background: linear-gradient(120deg, #0F121E 0%, #0A0C15 100%);
            border-radius: 32px;
            padding: 32px 40px;
            margin-bottom: 40px;
            border: 1px solid #262E40;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .hero-text h1 { font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
        .hero-text p { color: #9CA3AF; }
        .live-count {
            background: #EF444420;
            border: 1px solid #EF444460;
            padding: 10px 24px;
            border-radius: 60px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .pulse-dot {
            width: 12px;
            height: 12px;
            background: #EF4444;
            border-radius: 50%;
            box-shadow: 0 0 8px #EF4444;
            animation: pulse 1.2s infinite;
        }
        @keyframes pulse { 0% { opacity: 0.6; transform: scale(0.9);} 100% { opacity: 1; transform: scale(1.2);} }
        .live-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 28px;
            margin-bottom: 48px;
        }
        .live-card {
            background: #0F121E;
            border-radius: 28px;
            border: 1px solid #262E40;
            overflow: hidden;
            transition: all 0.25s ease;
            cursor: pointer;
        }
        .live-card:hover { transform: translateY(-6px); border-color: #10B98160; box-shadow: 0 20px 30px -15px rgba(0,0,0,0.5); }
        .card-preview {
            aspect-ratio: 16 / 9;
            position: relative;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .live-tag-mini {
            position: absolute;
            top: 12px;
            left: 12px;
            background: #EF4444;
            padding: 4px 10px;
            border-radius: 30px;
            font-size: 11px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 6px;
            z-index: 2;
        }
        .match-score-large {
            font-size: 2.6rem;
            font-weight: 800;
            font-family: monospace;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(8px);
            padding: 8px 20px;
            border-radius: 60px;
            letter-spacing: 4px;
        }
        .card-info { padding: 20px; }
        .teams-row {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 12px;
        }
        .team {
            font-weight: 700;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .team-icon { font-size: 22px; color: #10B981; }
        .vs-mini { font-size: 0.7rem; color: #8B9BB0; background: #1E293B; padding: 2px 8px; border-radius: 30px; }
        .match-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 16px;
            flex-wrap: wrap;
            gap: 8px;
        }
        .league-badge { font-size: 0.7rem; background: #1F2A44; padding: 4px 12px; border-radius: 30px; color: #94A3B8; }
        .stage { font-size: 0.75rem; color: #A7F3D0; }
        .watch-btn {
            background: #10B981;
            border: none;
            color: #0A0C15;
            padding: 8px 16px;
            border-radius: 36px;
            font-weight: 700;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: 0.2s;
            width: 100%;
            justify-content: center;
            margin-top: 18px;
            font-family: inherit;
            text-decoration: none;
        }
        .watch-btn:hover { background: #0EA572; transform: scale(0.98); }
        .filter-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 28px;
            gap: 16px;
        }
        .filter-title { font-weight: 600; }
        .league-chips { display: flex; gap: 12px; flex-wrap: wrap; }
        .chip {
            background: #1E293B;
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.8rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .chip.active, .chip:hover { background: #10B981; color: #0A0C15; }
        .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: 20px;
            text-align: center;
            font-size: 13px;
            color: #6C7A91;
        }
        .footer-links a { margin: 0 10px; text-decoration: none; transition: color 0.2s; }
        .footer-links a:hover { color: #10B981; }
        @media (max-width: 750px) {
            .hero { flex-direction: column; text-align: center; }
            .live-grid { grid-template-columns: 1fr; }
            .navbar { flex-direction: column; gap: 16px; }
            .nav-links { justify-content: center; }
        }
    </style>