:root { 
    --epl-bg: rgba(22, 27, 51, 0.95); 
    --epl-row: rgba(255,255,255,0.05); 
    --epl-blue: #0d42f5; 
}
.epl-container { 
    background: var(--epl-bg); 
    color: #ffffff; 
    border-radius: 8px; 
    overflow: hidden; 
    max-width: 900px; 
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.epl-nav { display: flex; background: #1a203f; border-bottom: 2px solid #2d375a; }
.epl-nav-btn { flex:1; padding: 15px; text-align: center; cursor: pointer; border-bottom: 3px solid transparent; font-weight: bold; color: #a3a9c5; transition: 0.3s; }
.epl-nav-btn.active { border-color: #f1f5f9; background: rgba(255,255,255,0.1); color: #fff;}
.epl-panel { display: none; padding: 15px; }
.epl-panel.active { display: block; }

/* Slider Vòng đấu */
.round-slider-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 5px; margin-bottom: 15px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding-bottom: 10px; }
.round-nav-btn { background: none; border: none; color: #a3a9c5; font-size: 20px; cursor: pointer; padding: 0 10px; transition: color 0.2s; margin: 0; }
.round-nav-btn:hover { color: #fff; }
.round-selector { display: flex; gap: 10px; overflow-x: auto; scroll-behavior: smooth; flex: 1; padding: 5px 0; -ms-overflow-style: none; scrollbar-width: none; }
.round-selector::-webkit-scrollbar { display: none; }
.round-tab { padding: 8px 15px; background: #2d375a; border-radius: 20px; font-size: 13px; cursor: pointer; white-space: nowrap; transition: 0.3s; }
.round-tab.active { background: var(--epl-blue); font-weight: bold; }
.round-content { display: none; }
.round-content.active { display: block; }

/* Accordion Styles */
.acc-item { margin-bottom: 10px; border-radius: 5px; overflow: hidden; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); }
.acc-head { padding: 12px 15px; background: rgba(255,255,255,0.05); cursor: pointer; display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; align-items: center; transition: 0.2s; }
.acc-head:hover { background: rgba(255,255,255,0.1); }
.acc-arrow { display: inline-block; transition: transform 0.3s ease; font-size: 12px; }
.acc-head.active .acc-arrow { transform: rotate(0deg); }
.acc-head:not(.active) .acc-arrow { transform: rotate(-90deg); color: #a3a9c5; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-in-out; }
.acc-body.open { max-height: 2000px; }
.acc-body-inner { padding: 0 10px 10px 10px; }

/* Trận Đấu */
.m-row { display: grid; grid-template-columns: 80px 1fr 60px 1fr; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); transition: background-color 0.2s; }
.m-row:hover { background-color: rgba(255,255,255,0.08); cursor: pointer; }
.m-row:last-child { border-bottom: none; }
.m-time { font-size: 13px; color: #a3a9c5; font-weight: 600; }
.m-score { background-color: #f1f5f9; color: #0f172a; text-align: center; font-weight: 700; padding: 3px 0; border-radius: 4px; font-size: 15px; margin: 0 5px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.m-team { display: flex; align-items: center; gap: 12px; font-size: 15px; letter-spacing: 0.3px; }
.m-team.home { justify-content: flex-end; text-align: right; }
.m-team b {font-weight: 500;}

/* Bảng xếp hạng */
.st-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.st-table th { background-color: #1a203f; padding: 14px 10px; color: #a3a9c5; border-bottom: 2px solid #2d375a; font-weight: 600; text-align: center; }
.st-table td { padding: 10px; text-align: center; border-bottom: 1px solid rgba(255, 255, 255, 0.05); transition: 0.2s ease; }
.st-table tr:nth-child(even) td { background-color: rgba(255, 255, 255, 0.02); }
.st-table tr:hover td { background-color: rgba(255, 255, 255, 0.1); cursor: pointer; }
.rank-badge { width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 13px; font-weight: 700; }
.r-1-4 { background: #0d42f5; color:#fff; } 
.r-18-20 { background: #e53935; color:#fff; }