/* MultipleFiles/blackbox-output-code-S8XBBNWKTY.css */

/* Base Styles (PC Version) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #000000; /* DIUBAH: dari #f5f5f5 menjadi #000000 */
  color: #ffffff; /* DIUBAH: dari #333 menjadi #ffffff */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  gap: 20px;
}

.main-content {
  flex: 1;
  margin-top: 20px;
}

.sidebar {
  width: 280px;
  margin-top: 20px;
}

header {
  background: linear-gradient(to right, #1e3c72, #2a5298);
  color: white;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.logo {
  font-size: 0;
  font-weight: normal;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px;
  width: auto;
  vertical-align: middle;
  margin-right: 10px;
}

.logo {
  height: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Navigasi Desktop */
nav.desktop-nav {
  display: block;
}

nav.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 15px;
}

nav.desktop-nav ul li {
  margin-left: 0;
}

nav.desktop-nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  padding: 8px 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
}

nav.desktop-nav ul li a i {
  margin-right: 8px;
}

nav.desktop-nav ul li a:hover,
nav.desktop-nav ul li a.active {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ff5722;
}

nav.desktop-nav ul li a[href*="event"],
#event-bottom,
#event-link {
  display: none !important;
}

/* Styling untuk kontainer pencarian desktop */
.desktop-search-container {
  display: flex;
  align-items: center;
  margin-left: auto;
  position: relative;
  width: 250px;
  transition: width 0.3s ease-in-out, background-color 0.3s;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
}

.desktop-search-container.active {
  width: 300px;
  background-color: rgba(255, 255, 255, 0.2);
}

#desktop-search-input {
  width: 100%;
  padding: 8px 12px;
  padding-right: 40px;
  border: none;
  border-radius: 20px;
  background-color: transparent;
  color: white;
  font-size: 14px;
  outline: none;
}

#desktop-search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

#desktop-search-icon {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: color 0.3s, background-color 0.3s;
}

#desktop-search-icon:hover {
  color: #ff5722;
  background-color: rgba(255, 255, 255, 0.1);
}

.section-title {
  background: linear-gradient(to right, #1e3c72, #2a5298);
  color: white;
  padding: 10px 15px;
  border-radius: 5px 5px 0 0;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-title i {
  margin-right: 10px;
}

.card {
  background: #111111; /* DIUBAH: dari white menjadi #111111 */
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* DIUBAH: opacity */
  margin-bottom: 20px;
  overflow: hidden;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.league-container {
  margin-bottom: 10px;
  border: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
  border-radius: 5px;
  overflow: hidden;
}

.league-header {
  background-color: #222222; /* DIUBAH: dari #f8f9fa menjadi #222222 */
  padding: 10px 15px;
  font-weight: bold;
  border-bottom: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.league-header img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.league-title {
  display: flex;
  align-items: center;
}

/* Keadaan Default: Tertutup (Ikon miring ke samping) */
.league-toggle {
    display: inline-block;
    transition: transform 0.3s ease;
    transform: rotate(-90deg); /* Default collapsed */
}

/* Keadaan Terbuka: Saat pemicu TIDAK memiliki kelas .collapsed */
.league-header:not(.collapsed) .league-toggle {
    transform: rotate(0deg); /* Menghadap ke bawah */
}

.match-container {
  display: none;
}

.match-container.active {
  display: block;
}

.match-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  border-bottom: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
  transition: background-color 0.3s;
  cursor: pointer;
  background-color: #111111; /* DIUBAH: Tambah background gelap */
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.match-row:last-child {
  border-bottom: none;
}

.match-row:hover {
  background-color: #222222; /* DIUBAH: dari #f8f9fa menjadi #222222 */
}

.match-time {
  width: 50px;
  text-align: center;
  font-weight: bold;
}

.match-time.live {
  color: #e53935;
  animation: blink 1s infinite;
}

.match-time.finished {
  color: #aaaaaa; /* DIUBAH: dari #666 menjadi #aaaaaa */
  font-size: 12px;
}

.match-teams {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.team {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.team-name {
  flex: 1;
  display: flex;
  align-items: center;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.score {
  font-weight: bold;
  width: 30px;
  text-align: center;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.match-actions {
  display: flex;
  gap: 8px;
  min-width: 110px;
}

.match-action {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  flex-shrink: 0;
  position: relative;
}

.match-action:hover {
  transform: scale(1.1);
}

.match-action.live {
  background-color: #e53935;
  color: white;
}

.match-action.live:hover {
  background-color: #c62828;
  color: white;
}

.match-action.live i {
  animation: pulse 1.5s infinite;
}

.match-action.detail {
  background-color: #333333; /* DIUBAH: dari #f0f0f0 menjadi #333333 */
  color: #ffffff; /* DIUBAH: dari #333 menjadi #ffffff */
}

.match-action.detail:hover {
  background-color: #2a5298;
  color: white;
}

.match-action.standings {
  background-color: #333333; /* DIUBAH: dari #f0f0f0 menjadi #333333 */
  color: #ffffff; /* DIUBAH: dari #333 menjadi #ffffff */
}

.match-action.standings:hover {
  background-color: #4caf50;
  color: white;
}

.match-action.favorite {
  background-color: #333333; /* DIUBAH: dari #f0f0f0 menjadi #333333 */
  color: #ffffff; /* DIUBAH: dari #333 menjadi #ffffff */
}

.match-action.favorite:hover {
  background-color: #ffc107;
  color: white;
}

.match-action.favorite.active {
  background-color: #ffc107;
  color: white;
}

.team-badge {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.tab-container {
  display: flex;
  background-color: #222222; /* DIUBAH: dari #f8f9fa menjadi #222222 */
  border-bottom: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
  overflow-x: auto;
}

.tab {
  padding: 10px 15px;
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  align-items: center;
  color: #cccccc; /* DIUBAH: Tambah warna */
}

.tab i {
  margin-right: 8px;
}

.tab.active {
  border-bottom: 3px solid #ff5722;
  color: #ff5722;
}

.tab-content {
  display: none;
  padding: 15px;
}

.tab-content.active {
  display: block;
}

.no-matches {
  text-align: center;
  padding: 20px;
  color: #aaaaaa; /* DIUBAH: dari #888 menjadi #aaaaaa */
  font-style: italic;
}

.news-container {
  margin: 20px 0;
}

.news-grid,
.prediction-grid,
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}

#news-page .news-grid,
#event-page .event-grid,
#prediction-page .prediction-grid,
#player-page #player-list-container {
  padding: 15px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

#news-detail-page .news-detail-main,
#player-page #player-content {
  flex: 2;
}

#news-detail-page .news-detail-sidebar {
  width: 350px;
}

.news-card,
.event-card,
.prediction-card {
  background: #111111; /* DIUBAH: dari white menjadi #111111 */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* DIUBAH: opacity */
  transition: transform 0.3s;
  position: relative;
}

.news-card:hover,
.event-card:hover,
.prediction-card:hover {
  transform: translateY(-5px);
}

.news-img,
.event-img,
.prediction-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.news-content,
.event-content,
.prediction-content {
  padding: 12px;
}

.news-content h3,
.event-content h3,
.prediction-content h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #ffffff; /* DIUBAH: dari #1e3c72 menjadi #ffffff */
  line-height: 1.3;
}

.news-content p,
.prediction-content p {
  font-size: 13px;
  color: #cccccc; /* DIUBAH: dari #666 menjadi #cccccc */
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-date,
.prediction-date {
  font-size: 11px;
  color: #aaaaaa; /* DIUBAH: dari #888 menjadi #aaaaaa */
}

.match-detail {
  display: none;
  background-color: #111111; /* DIUBAH: dari #fff menjadi #111111 */
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.match-detail.active {
  display: block;
}

.match-detail-header {
  padding: 10px 15px;
  background-color: #222222; /* DIUBAH: dari #f8f9fa menjadi #222222 */
  border-bottom: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
}

.back-button {
  background: #333333; /* DIUBAH: dari none menjadi #333333 */
  border: 1px solid #555555; /* DIUBAH: dari #ddd menjadi #555555 */
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  color: #ffffff; /* DIUBAH: dari #333 menjadi #ffffff */
  transition: all 0.3s;
}

.back-button:hover {
  background-color: #1e3c72;
  color: white;
  border-color: #1e3c72;
}

.back-button i {
  margin-right: 8px;
}

.match-datetime-status {
  text-align: center;
  padding: 10px 0;
  background-color: #1a3c72; /* DIUBAH: dari #e3f2fd menjadi lebih gelap */
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #2a5298;
}

.match-date-display {
  margin: 0;
  font-size: 15px;
  font-weight: bold;
}

.match-round-display {
  margin: 5px 0 0;
  font-size: 13px;
  color: #aaccff; /* DIUBAH: dari #4a699c menjadi lebih terang */
}

.match-info {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 25px 15px;
  background: linear-gradient(to right, #1e3c72, #2a5298);
  color: white;
}

.team-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
}

.team-detail img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.team-detail h3 {
  font-size: 18px;
}

.match-score-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 25px;
}

.match-score {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 5px;
  color: white;
}

.match-status {
  font-size: 14px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  color: white;
}

.match-status.live {
  background-color: #e53935;
  animation: blink 1s infinite;
}

.match-status.finished {
  background-color: #666;
}

.match-status.scheduled {
  background-color: #2a5298;
}

.match-venue {
  text-align: center;
  padding: 10px 15px;
  background-color: #222222; /* DIUBAH: dari #f8f9fa menjadi #222222 */
  color: #cccccc; /* DIUBAH: dari #555 menjadi #cccccc */
  font-size: 13px;
  border-top: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
}

.match-venue i {
  margin-right: 5px;
  color: #ff5722;
}

.match-detail-tabs {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
  overflow-x: auto;
}

.match-detail-tabs .tab {
  padding: 10px 15px;
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s, color 0.3s;
  color: #cccccc; /* DIUBAH: Tambah warna */
}

.match-detail-tabs .tab.active {
  border-bottom-color: #ff5722;
  color: #ff5722;
}

.odds-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.odd-item {
  background: #222222; /* DIUBAH: dari #f8f9fa menjadi #222222 */
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}

.odd-title {
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff; /* DIUBAH: dari #1e3c72 menjadi #ffffff */
}

.odd-value {
  font-size: 18px;
  font-weight: bold;
  color: #e53935;
}

.team-lineup-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 15px;
}

.team-lineup-card {
  background: #111111; /* DIUBAH: dari #fff menjadi #111111 */
  border: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.team-lineup-card h3 {
  text-align: center;
  color: #ffffff; /* DIUBAH: dari #1e3c72 menjadi #ffffff */
  margin-bottom: 20px;
  font-size: 20px;
}

.player-list-section h4 {
  color: #aaccff; /* DIUBAH: dari #2a5298 menjadi lebih terang */
  margin-bottom: 10px;
  border-bottom: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
  padding-bottom: 5px;
}

.player-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.player-card {
  background: #222222; /* DIUBAH: dari #f8f9fa menjadi #222222 */
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.player-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 5px;
  border: 2px solid #555555; /* DIUBAH: dari #ddd menjadi #555555 */
}

.player-number {
  font-size: 12px;
  font-weight: bold;
  color: #aaaaaa; /* DIUBAH: dari #666 menjadi #aaaaaa */
  margin-bottom: 3px;
}

.player-name {
  font-weight: bold;
  font-size: 14px;
  color: #ffffff; /* DIUBAH: dari #333 menjadi #ffffff */
  line-height: 1.2;
}

.player-position {
  font-size: 11px;
  color: #aaaaaa; /* DIUBAH: dari #888 menjadi #aaaaaa */
  margin-top: 3px;
}

.player-card.substitute {
  opacity: 0.8;
}

.coach-section {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
}

.coach-section h4 {
  color: #aaccff; /* DIUBAH: dari #2a5298 menjadi lebih terang */
  margin-bottom: 5px;
}

.coach-section p {
  font-size: 14px;
  color: #cccccc; /* DIUBAH: dari #555 menjadi #cccccc */
}

.featured-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.featured-item {
  background: #222222; /* DIUBAH: dari #f8f9fa menjadi #222222 */
  padding: 15px;
  border-radius: 8px;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.featured-item h4 {
  margin-bottom: 10px;
  color: #ffffff; /* DIUBAH: dari #1e3c72 menjadi #ffffff */
}

.ranking-list {
  margin-top: 15px;
}

.ranking-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.ranking-position {
  font-weight: bold;
  width: 30px;
}

.ranking-name {
  flex: 1;
  color: #ffffff; /* DIUBAH: Tambah warna */
}

.ranking-value {
  font-weight: bold;
  color: #aaccff; /* DIUBAH: dari #1e3c72 menjadi lebih terang */
}

.match-events-container {
  padding: 15px;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.match-events-container h4 {
  color: #ffffff; /* DIUBAH: dari #1e3c72 menjadi #ffffff */
  margin-bottom: 15px;
  border-bottom: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
  padding-bottom: 10px;
  font-size: 18px;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.event-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background-color: #222222; /* DIUBAH: dari #f8f9fa menjadi #222222 */
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  position: relative;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.event-item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #555555; /* DIUBAH: dari #ddd menjadi #555555 */
  transform: translateX(-50%);
  z-index: 1;
}

.event-time {
  width: 60px;
  text-align: center;
  font-weight: bold;
  color: #aaccff; /* DIUBAH: dari #2a5298 menjadi lebih terang */
  flex-shrink: 0;
  z-index: 2;
  background-color: #222222; /* DIUBAH: dari #f8f9fa menjadi #222222 */
  padding: 0 5px;
}

.event-content {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 15px;
  z-index: 2;
}

.event-icon {
  font-size: 18px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

.event-goal { background-color: #4caf50; }
.event-yellow-card { background-color: #ffc107; }
.event-red-card { background-color: #e53935; }
.event-substitution { background-color: #2196f3; }
.event-info { background-color: #9e9e9e; }

.event-description {
  font-size: 14px;
  color: #ffffff; /* DIUBAH: dari #333 menjadi #ffffff */
}

footer {
  background-color: #111111; /* DIUBAH: dari #2a5298 menjadi #111111 */
  color: white;
  padding: 30px 0;
  margin-top: 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-section:not(:last-child) {
  margin-bottom: 30px;
}

.footer-section {
  flex: 1;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #cccccc; /* DIUBAH: dari #ddd menjadi #cccccc */
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #ff5722;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #333333; /* DIUBAH: dari #3a63b8 menjadi #333333 */
  color: #aaaaaa; /* DIUBAH: dari #ddd menjadi #aaaaaa */
  font-size: 14px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  overflow-y: auto;
}

.modal-content {
  background-color: #111111; /* DIUBAH: dari #fff menjadi #111111 */
  margin: 5% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #cccccc; /* DIUBAH: dari #aaa menjadi #cccccc */
}

.close-modal:hover {
  color: #ffffff; /* DIUBAH: dari #000 menjadi #ffffff */
}

.modal-league-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
}

.modal-league-header img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.standings-page {
  display: none;
  width: 100%;
}

.standings-page.active {
  display: block;
}

.standings-league {
  margin-bottom: 30px;
}

.standings-league-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #2a5298; /* DIUBAH: sedikit lebih terang */
}

.standings-league-header img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.standings-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.standings-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.standings-table th {
  background-color: #222222; /* DIUBAH: dari #f8f9fa menjadi #222222 */
  padding: 10px;
  text-align: center;
  font-weight: bold;
  border-bottom: 2px solid #444444; /* DIUBAH: dari #ddd menjadi #444444 */
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.standings-table td {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.standings-table tr:hover {
  background-color: #222222; /* DIUBAH: dari #f8f9fa menjadi #222222 */
}

.team-cell {
  display: flex;
  align-items: center;
  text-align: left;
  white-space: nowrap;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.team-cell img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.date-navigation-wrapper {
  display: flex;
  align-items: center;
}

.date-navigation {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: 25px;
}

.date-nav-btn {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.date-nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.current-date {
  font-size: 14px;
  min-width: 100px;
  text-align: center;
  margin-left: 5px;
  color: white;
}

.sidebar-card {
  background: #111111; /* DIUBAH: dari white menjadi #111111 */
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
  overflow: hidden;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.sidebar-title {
  background: linear-gradient(to right, #1e3c72, #2a5298);
  color: white;
  padding: 10px 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.sidebar-title i {
  margin-right: 10px;
}

.country-list {
  padding: 0;
}

.country-item {
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s;
  cursor: pointer;
  border-bottom: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.country-item-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.country-item img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  object-fit: contain;
  flex-shrink: 0;
}

.country-item:hover {
  background-color: #222222; /* DIUBAH: dari #f8f9fa menjadi #222222 */
}

.country-item.active {
  background-color: #1a3c72; /* DIUBAH: dari #e3f2fd menjadi lebih gelap */
  color: #ffffff;
  font-weight: 500;
}

.country-toggle {
  transition: transform 0.3s ease;
  color: #ffffff; /* DIUBAH: Tambah warna */
}

.country-item.active .country-toggle {
  transform: rotate(180deg);
}

.leagues-under-country {
  display: none;
  background-color: #1a1a1a; /* DIUBAH: dari #fafafa menjadi #1a1a1a */
  padding: 5px 0;
  border-bottom: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
}

.league-sub-item {
  padding: 10px 15px 10px 45px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 14px;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.league-sub-item img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  object-fit: contain;
  flex-shrink: 0;
}

.league-sub-item:hover {
  background-color: #222222; /* DIUBAH: dari #e9ecef menjadi #222222 */
}

.league-list {
  padding: 10px 0;
}

.league-item {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
  cursor: pointer;
  border-bottom: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.league-item:last-child {
  border-bottom: none;
}

.league-item:hover {
  background-color: #222222; /* DIUBAH: dari #f8f9fa menjadi #222222 */
}

.league-item.active {
  background-color: #1a3c72; /* DIUBAH: dari #e3f2fd menjadi lebih gelap */
}

.league-item img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  object-fit: contain;
  flex-shrink: 0;
}

.slider-container {
  position: relative;
  width: 850px;
  height: 200px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slider-item {
  min-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 5px;
  transition: background-color 0.3s;
  z-index: 10;
}

.slider-nav:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.slider-nav.prev {
  left: 10px;
}

.slider-nav.next {
  right: 10px;
}

.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.dot.active {
  background-color: #ff5722;
  transform: scale(1.2);
}

#event-page .event-grid,
.event-card {
  display: none !important;
}

.more-news-container {
  text-align: right;
  padding: 0 15px 15px;
}

.more-news-btn {
  background: #333333; /* DIUBAH: dari none menjadi #333333 */
  border: 1px solid #555555; /* DIUBAH: dari #ddd menjadi #555555 */
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.more-news-btn:hover {
  background-color: #1e3c72;
  color: white;
  border-color: #1e3c72;
}

.more-matches-btn {
  background-color: #2a5298;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.more-matches-btn:hover {
  background-color: #1e3c72;
}

.prediction-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.prediction-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.prediction-item:last-child {
  border-bottom: none;
}

.prediction-item .prediction-type {
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
  color: white;
  margin-right: 10px;
}

.prediction-item .prediction-type.win {
  background-color: #4caf50;
}

.prediction-item .prediction-type.draw {
  background-color: #ffc107;
}

.prediction-item .prediction-type.lose {
  background-color: #f44336;
}

.prediction-item .prediction-details {
  font-size: 12px;
  color: #aaaaaa; /* DIUBAH: dari #666 menjadi #aaaaaa */
  margin-left: auto;
}

.favorite-count {
  background-color: #ff5722;
  color: white;
  font-size: 10px;
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 6px;
  margin-left: 5px;
  vertical-align: super;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

.mobile-only {
  display: none;
}

.bottom-nav {
  display: none;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111111; /* DIUBAH: dari #fff menjadi #111111 */
  border-top: 1px solid #333333; /* DIUBAH: dari #ddd menjadi #333333 */
  z-index: 1000;
  padding: 5px 0;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.bottom-nav a {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  font-size: 12px;
  color: #cccccc; /* DIUBAH: dari #333 menjadi #cccccc */
  text-decoration: none;
  transition: color 0.3s;
  min-width: 0;
}

.bottom-nav a i {
  display: block;
  font-size: 18px;
  margin-bottom: 3px;
}

.bottom-nav a.active {
  color: #ff5722;
}

#event-bottom {
  display: none !important;
}

.loading-spinner {
  border: 4px solid #333333; /* DIUBAH: dari #f3f3f3 menjadi #333333 */
  border-top: 4px solid #1e3c72;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.search-overlay {
  display: none;
  position: fixed;
  z-index: 2001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
  animation: fadeIn 0.3s;
}

.search-overlay-content {
  position: relative;
  background-color: #111111; /* DIUBAH: dari #fefefe menjadi #111111 */
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  animation: slideInTop 0.3s;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.close-search {
  color: #cccccc; /* DIUBAH: dari #aaa menjadi #cccccc */
  float: right;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 20px;
}

.close-search:hover,
.close-search:focus {
  color: #ffffff; /* DIUBAH: dari #333 menjadi #ffffff */
  text-decoration: none;
}

#search-input {
  width: calc(100% - 60px);
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #555555; /* DIUBAH: dari #ddd menjadi #555555 */
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
  background-color: #222222; /* DIUBAH: Tambah background */
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.search-results {
  max-height: 60vh;
  overflow-y: auto;
  border-top: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
  padding-top: 10px;
}

.search-result-item {
  padding: 10px 0;
  border-bottom: 1px solid #333333; /* DIUBAH: dari #f0f0f0 menjadi #333333 */
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background-color: #222222; /* DIUBAH: dari #f8f9fa menjadi #222222 */
}

.search-result-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.search-result-item .result-type {
  font-size: 11px;
  color: #aaaaaa; /* DIUBAH: dari #888 menjadi #aaaaaa */
  background-color: #333333; /* DIUBAH: dari #e9ecef menjadi #333333 */
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: auto;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideInTop {
  from {transform: translateY(-50px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

.league-sidebar {
  display: none;
}

.team-detail-page-header {
  padding: 15px;
  background: linear-gradient(to right, #1e3c72, #2a5298);
  color: white;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  border-radius: 5px;
}

.team-detail-page-header .back-button {
  position: absolute;
  left: 15px;
  top: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.team-detail-page-header .back-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: white;
}

.team-detail-page-header img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: contain;
  background-color: white;
  padding: 5px;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.team-detail-page-header h2 {
  font-size: 28px;
  margin-bottom: 5px;
}

.team-detail-page-header p {
  font-size: 16px;
  opacity: 0.9;
}

.team-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  padding: 15px;
}

.team-info-card {
  background: #111111; /* DIUBAH: dari white menjadi #111111 */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 15px;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.team-info-card h4 {
  color: #ffffff; /* DIUBAH: dari #1e3c72 menjadi #ffffff */
  margin-bottom: 10px;
  border-bottom: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
  padding-bottom: 5px;
}

.team-info-card ul {
  list-style: none;
  padding: 0;
}

.team-info-card ul li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #444444; /* DIUBAH: dari #f0f0f0 menjadi #444444 */
  font-size: 14px;
  color: #cccccc; /* DIUBAH: Tambah warna */
}

.team-info-card ul li:last-child {
  border-bottom: none;
}

.team-info-card ul li strong {
  color: #ffffff; /* DIUBAH: dari #333 menjadi #ffffff */
}

.team-squad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  padding: 15px;
}

.team-player-card {
  background: #222222; /* DIUBAH: dari #f8f9fa menjadi #222222 */
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.team-player-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.team-player-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 5px;
  border: 2px solid #555555; /* DIUBAH: dari #ddd menjadi #555555 */
}

.team-player-card .player-number {
  font-size: 13px;
  font-weight: bold;
  color: #aaaaaa; /* DIUBAH: dari #666 menjadi #aaaaaa */
  margin-bottom: 3px;
}

.team-player-card .player-name {
  font-weight: bold;
  font-size: 15px;
  color: #ffffff; /* DIUBAH: dari #333 menjadi #ffffff */
  line-height: 1.2;
}

.team-player-card .player-position {
  font-size: 12px;
  color: #aaaaaa; /* DIUBAH: dari #888 menjadi #aaaaaa */
  margin-top: 3px;
}

.team-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
  padding: 15px;
}

.team-stats-card {
  background: #111111; /* DIUBAH: dari white menjadi #111111 */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 15px;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.team-stats-card h4 {
  color: #ffffff; /* DIUBAH: dari #1e3c72 menjadi #ffffff */
  margin-bottom: 10px;
  border-bottom: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
  padding-bottom: 5px;
}

.team-stats-card .ranking-list .ranking-item {
  padding: 8px 0;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.team-stats-card .ranking-list .ranking-name {
  font-weight: normal;
  color: #cccccc; /* DIUBAH: Tambah warna */
}

.team-stats-card .ranking-list .ranking-value {
  color: #aaccff; /* DIUBAH: dari #2a5298 menjadi lebih terang */
}

#transfer-page .card {
  margin-bottom: 20px;
}

#all-transfer-content {
  padding: 15px;
}

.transfer-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
  transition: background-color 0.3s;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.transfer-item:last-child {
  border-bottom: none;
}

.transfer-item:hover {
  background-color: #222222; /* DIUBAH: dari #f8f9fa menjadi #222222 */
}

.transfer-player-info {
  display: flex;
  align-items: center;
  flex: 2;
}

.transfer-player-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid #555555; /* DIUBAH: dari #ddd menjadi #555555 */
}

.transfer-player-name {
  font-weight: bold;
  color: #ffffff; /* DIUBAH: dari #1e3c72 menjadi #ffffff */
  font-size: 16px;
}

.transfer-details {
  flex: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #cccccc; /* DIUBAH: Tambah warna */
}

.transfer-club {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cccccc; /* DIUBAH: dari #555 menjadi #cccccc */
}

.transfer-club img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.transfer-arrow {
  font-size: 20px;
  color: #aaccff; /* DIUBAH: dari #2a5298 menjadi lebih terang */
  margin: 0 10px;
}

.transfer-fee {
  font-weight: bold;
  color: #4caf50;
  white-space: nowrap;
  margin-left: 15px;
}

.transfer-date {
  font-size: 12px;
  color: #aaaaaa; /* DIUBAH: dari #888 menjadi #aaaaaa */
  margin-left: 15px;
  white-space: nowrap;
}

#news-detail-page {
  display: none;
}

#news-detail-page.active {
  display: block;
}

.news-detail-content-wrapper {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.news-detail-main {
  flex: 1;
}

.news-detail-sidebar {
  width: 300px;
}

.news-detail-header {
  padding: 15px;
  background-color: #222222; /* DIUBAH: dari #f8f9fa menjadi #222222 */
  border-bottom: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
}

.news-detail-header h2 {
  font-size: 28px;
  color: #ffffff; /* DIUBAH: dari #1e3c72 menjadi #ffffff */
  margin-top: 10px;
  margin-bottom: 5px;
}

.news-detail-meta {
  font-size: 14px;
  color: #aaaaaa; /* DIUBAH: dari #666 menjadi #aaaaaa */
  margin-bottom: 15px;
}

.news-detail-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
}

.news-detail-body {
  padding: 0 15px 20px;
  line-height: 1.8;
  font-size: 16px;
  color: #ffffff; /* DIUBAH: dari #333 menjadi #ffffff */
}

.news-detail-body p {
  margin-bottom: 1em;
}

.news-detail-tags {
  padding: 0 15px 15px;
  border-top: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
  margin-top: 15px;
}

.news-tag {
  display: inline-block;
  background-color: #333333; /* DIUBAH: dari #e0e0e0 menjadi #333333 */
  color: #cccccc; /* DIUBAH: dari #555 menjadi #cccccc */
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  margin-right: 8px;
  margin-bottom: 8px;
}

.news-list-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
  cursor: pointer;
  transition: background-color 0.3s;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.news-list-item:last-child {
  border-bottom: none;
}

.news-list-item:hover {
  background-color: #222222; /* DIUBAH: dari #f8f9fa menjadi #222222 */
}

.news-list-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 10px;
}

.news-list-item-content h4 {
  font-size: 15px;
  color: #ffffff; /* DIUBAH: dari #1e3c72 menjadi #ffffff */
  margin-bottom: 5px;
  line-height: 1.3;
}

.news-list-item-content p {
  font-size: 12px;
  color: #aaaaaa; /* DIUBAH: dari #888 menjadi #aaaaaa */
}

.comments-section {
  margin-top: 20px;
}

.comments-list {
  padding: 15px;
  border-bottom: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
}

.comment-item {
  background-color: #222222; /* DIUBAH: dari #f9f9f9 menjadi #222222 */
  border: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
  border-radius: 5px;
  padding: 12px;
  margin-bottom: 10px;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.comment-author {
  font-weight: bold;
  color: #aaccff; /* DIUBAH: dari #1e3c72 menjadi lebih terang */
}

.comment-date {
  font-size: 12px;
  color: #aaaaaa; /* DIUBAH: dari #888 menjadi #aaaaaa */
}

.comment-text {
  font-size: 14px;
  color: #cccccc; /* DIUBAH: dari #333 menjadi #cccccc */
  line-height: 1.5;
}

.no-comments {
  text-align: center;
  color: #aaaaaa; /* DIUBAH: dari #888 menjadi #aaaaaa */
  padding: 15px;
  font-style: italic;
}

.comment-form {
  padding: 15px;
}

.comment-form h3 {
  font-size: 18px;
  color: #ffffff; /* DIUBAH: dari #1e3c72 menjadi #ffffff */
  margin-bottom: 15px;
}

.comment-form input[type="text"],
.comment-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #555555; /* DIUBAH: dari #ddd menjadi #555555 */
  border-radius: 5px;
  font-size: 14px;
  box-sizing: border-box;
  background-color: #222222; /* DIUBAH: Tambah background */
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.comment-form textarea {
  resize: vertical;
  min-height: 80px;
}

.comment-form button {
  background-color: #2a5298;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.3s;
}

.comment-form button:hover {
  background-color: #1e3c72;
}

#player-page .player-controls {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

#player-page .player-controls select,
#player-page .player-controls input[type="text"],
#player-page .player-controls button {
  padding: 8px 12px;
  border: 1px solid #555555; /* DIUBAH: dari #ddd menjadi #555555 */
  border-radius: 5px;
  font-size: 14px;
  background-color: #222222; /* DIUBAH: Tambah background */
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

#player-page .player-controls input[type="text"] {
  flex-grow: 1;
}

#player-page .player-grid {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}

#player-page .player-card {
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  background: #222222; /* DIUBAH: Tambah background */
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

#player-page .player-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.player-profile-card {
  text-align: center;
  padding: 20px;
  margin-bottom: 20px;
  background: #111111; /* DIUBAH: Tambah background */
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.player-profile-header img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #1e3c72;
}

.player-profile-header h2 {
  font-size: 28px;
  color: #ffffff; /* DIUBAH: dari #1e3c72 menjadi #ffffff */
  margin-bottom: 5px;
}

.player-profile-header p {
  font-size: 16px;
  color: #cccccc; /* DIUBAH: dari #555 menjadi #cccccc */
  margin-bottom: 5px;
}

.player-profile-info {
  margin-top: 20px;
  text-align: left;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

.player-profile-info h4 {
  color: #ffffff; /* DIUBAH: dari #2a5298 menjadi #ffffff */
  margin-bottom: 10px;
  border-bottom: 1px solid #333333; /* DIUBAH: dari #eee menjadi #333333 */
  padding-bottom: 5px;
}

.player-profile-info ul {
  list-style: none;
  padding: 0;
}

.player-profile-info ul li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #444444; /* DIUBAH: dari #f0f0f0 menjadi #444444 */
  font-size: 15px;
  color: #cccccc; /* DIUBAH: Tambah warna */
}

.player-profile-info ul li:last-child {
  border-bottom: none;
}

.player-stats-card {
  margin-bottom: 20px;
  background: #111111; /* DIUBAH: Tambah background */
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

#player-stats-content {
  padding: 15px;
}

#player-stats-content .ranking-list .ranking-item {
  padding: 8px 0;
  color: #ffffff; /* DIUBAH: Tambah warna teks putih */
}

#player-stats-content .ranking-list .ranking-name {
  font-weight: normal;
  color: #cccccc; /* DIUBAH: Tambah warna */
}

#player-stats-content .ranking-list .ranking-value {
  color: #aaccff; /* DIUBAH: dari #2a5298 menjadi lebih terang */
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 0 10px;
  }

  .sidebar {
    display: none;
  }

  .main-content {
    margin-top: 10px;
  }

  header {
    padding: 10px 0;
  }

  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
  }

  .logo {
    flex: none;
    justify-content: flex-start;
    font-size: 0;
  }

  nav.desktop-nav {
    display: none;
  }

  .desktop-search-container {
    display: none;
  }

  .mobile-only {
    display: flex;
    gap: 5px;
  }

  .mobile-only button {
    background-color: transparent;
    box-shadow: none;
    border: none;
    color: white;
    font-size: 24px;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s, color 0.3s;
  }

  .mobile-only button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ff5722;
  }

  .mobile-only button i {
    font-size: 20px;
  }

  .bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111111;
    border-top: 1px solid #333333;
    z-index: 1000;
    padding: 5px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  }

  .bottom-nav a {
    flex: 1;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
    min-width: 0;
  }

  .bottom-nav a i {
    display: block;
    font-size: 18px;
    margin-bottom: 3px;
  }

  .bottom-nav a.active {
    color: #ff5722;
  }

  #event-bottom {
    display: none !important;
  }

  .slider-container {
    width: 100%;
    height: 180px;
    margin: 10px auto;
  }

  .card {
    margin-bottom: 15px;
  }

  .section-title {
    padding: 8px 10px;
    font-size: 14px;
  }

  .date-navigation-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding-right: 10px;
  }

  .date-navigation {
    margin-left: 0;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 3px;
  }

  .date-nav-btn {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .current-date {
    font-size: 13px;
    min-width: 80px;
    margin-left: 0;
    color: white;
  }

  .tab-container {
    padding: 0 5px;
  }

  .tab {
    padding: 8px 10px;
    font-size: 13px;
  }

  .match-row {
    padding: 10px;
    font-size: 14px;
  }

  .match-time {
    width: 45px;
    font-size: 13px;
  }

  .match-time.finished {
    font-size: 11px;
  }

  .score {
    width: 25px;
    font-size: 14px;
  }

  .team-badge {
    width: 18px;
    height: 18px;
    margin-right: 5px;
  }

  .match-actions {
    gap: 5px;
    min-width: 90px;
  }

  .match-action {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .no-matches {
    padding: 15px;
    font-size: 14px;
  }

  .no-matches i {
    font-size: 40px !important;
  }

  .news-card, .event-card, .prediction-card {
    margin-bottom: 10px;
  }

  .news-img, .event-img, .prediction-img {
    height: 140px;
  }

  .news-content h3, .event-content h3, .prediction-content h3 {
    font-size: 15px;
  }

  .news-content p, .prediction-content p {
    font-size: 12px;
  }

  .more-news-container {
    padding: 0 10px 10px;
  }

  .more-news-btn {
    padding: 6px 12px;
    font-size: 13px;
  }

  .match-detail-header {
    padding: 8px 10px;
  }

  .back-button {
    padding: 6px 10px;
    font-size: 13px;
  }

  .match-info {
    padding: 15px 10px;
  }

  .team-detail img {
    width: 60px;
    height: 60px;
  }

  .team-detail h3 {
    font-size: 16px;
  }

  .match-score {
    font-size: 36px;
    margin: 0 15px;
  }

  .match-detail-tabs .tab {
    padding: 8px;
    font-size: 12px;
  }

  .featured-item {
    padding: 10px;
  }

  .featured-item h4 {
    font-size: 16px;
  }

  .ranking-item, .prediction-item {
    padding: 8px 0;
    font-size: 13px;
  }

  .player-card {
    padding: 10px;
  }

  .player-name {
    font-size: 13px;
  }

  .player-position {
    font-size: 11px;
  }

  .odds-container {
    gap: 10px;
  }

  .odd-item {
    padding: 10px;
  }

  .odd-title {
    font-size: 13px;
  }

  .odd-value {
    font-size: 16px;
  }

  footer {
    padding: 20px 0;
    margin-top: 20px;
  }

  .footer-content {
    flex-direction: column;
    padding: 0 10px;
    gap: 20px;
  }

  .footer-section:not(:last-child) {
    margin-bottom: 15px;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section ul {
    padding: 0;
  }

  .footer-section h3 {
    font-size: 16px;
  }

  .footer-section ul li a {
    font-size: 13px;
  }

  .copyright {
    font-size: 12px;
    padding-top: 15px;
    margin-top: 15px;
  }

  .search-overlay-content {
    margin: 5% auto;
    width: 95%;
  }

  #search-input {
    width: calc(100% - 30px);
    font-size: 14px;
    padding: 10px 12px;
  }

  .close-search {
    display: block;
    font-size: 30px;
    top: 5px;
    right: 10px;
  }

  .search-result-item {
    font-size: 14px;
  }

  .search-result-item img {
    width: 20px;
    height: 20px;
  }

  .league-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: #111111;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    z-index: 2000;
    transition: right 0.3s ease-out;
    overflow-y: auto;
  }

  .league-sidebar.active {
    right: 0;
    display: block;
  }

  .league-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: linear-gradient(to right, #1e3c72, #2a5298);
    color: #fff;
  }

  .league-sidebar-header h3 {
    margin: 0;
    font-size: 18px;
  }

  .league-sidebar-header span {
    cursor: pointer;
    font-size: 24px;
  }

  .league-sidebar-content {
    padding-bottom: 60px;
  }

  .team-detail-page-header {
    padding: 10px;
    margin-bottom: 15px;
  }

  .team-detail-page-header .back-button {
    left: 10px;
    top: 10px;
    padding: 6px 10px;
    font-size: 13px;
  }

  .team-detail-page-header img {
    width: 80px;
    height: 80px;
  }

  .team-detail-page-header h2 {
    font-size: 22px;
  }

  .team-detail-page-header p {
    font-size: 14px;
  }

  .team-info-grid {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .team-info-card {
    padding: 12px;
  }

  .team-info-card h4 {
    font-size: 16px;
  }

  .team-info-card ul li {
    font-size: 13px;
    padding: 6px 0;
  }

  .team-info-card ul li strong {
    color: #ffffff;
  }

  .team-squad-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    padding: 10px;
  }

  .team-player-card img {
    width: 50px;
    height: 50px;
  }

  .team-player-card .player-name {
    font-size: 13px;
  }

  .team-player-card .player-position {
    font-size: 11px;
  }

  .team-stats-grid {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .team-stats-card h4 {
    font-size: 16px;
  }

  .team-stats-card .ranking-list .ranking-item {
    font-size: 13px;
  }

  .transfer-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }

  .transfer-player-info {
    margin-bottom: 10px;
  }

  .transfer-player-info img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }

  .transfer-player-name {
    font-size: 15px;
  }

  .transfer-details {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .transfer-club {
    margin-bottom: 5px;
  }

  .transfer-club img {
    width: 20px;
    height: 20px;
  }

  .transfer-arrow {
    display: none;
  }

  .transfer-fee, .transfer-date {
    margin-left: 0;
    margin-top: 5px;
    font-size: 12px;
  }

  .match-events-container {
    padding: 10px;
  }

  .match-events-container h4 {
    font-size: 16px;
    padding-bottom: 8px;
  }

  .event-item {
    padding: 8px 10px;
  }

  .event-time {
    width: 50px;
    font-size: 13px;
  }

  .event-content {
    margin-left: 10px;
    gap: 8px;
  }

  .event-icon {
    font-size: 16px;
    width: 20px;
    height: 20px;
  }

  .event-description {
    font-size: 13px;
  }

  .news-detail-content-wrapper {
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
  }

  .news-detail-sidebar {
    width: 100%;
  }

  .news-detail-header {
    padding: 10px;
  }

  .news-detail-header h2 {
    font-size: 22px;
    margin-top: 8px;
    margin-bottom: 3px;
  }

  .news-detail-meta {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .news-detail-img {
    max-height: 250px;
    margin-bottom: 15px;
  }

  .news-detail-body {
    padding: 0 10px 15px;
    font-size: 14px;
  }

  .news-detail-tags {
    padding: 0 10px 10px;
    margin-top: 10px;
  }

  .news-tag {
    font-size: 11px;
    padding: 4px 8px;
    margin-right: 5px;
    margin-bottom: 5px;
  }

  .news-list-item {
    padding: 8px 10px;
  }

  .news-list-item img {
    width: 50px;
    height: 50px;
  }

  .news-list-item-content h4 {
    font-size: 13px;
  }

  .news-list-item-content p {
    font-size: 10px;
  }

  .comments-section {
    margin-top: 15px;
  }

  .comments-list {
    padding: 10px;
  }

  .comment-item {
    padding: 10px;
    margin-bottom: 8px;
  }

  .comment-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3px;
  }

  .comment-author {
    font-size: 14px;
  }

  .comment-date {
    font-size: 10px;
  }

  .comment-text {
    font-size: 13px;
  }

  .comment-form {
    padding: 10px;
  }

  .comment-form h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .comment-form input[type="text"],
  .comment-form textarea {
    padding: 8px;
    font-size: 13px;
  }

  .comment-form button {
    padding: 8px 15px;
    font-size: 13px;
  }
  
  .running-text {
    background: linear-gradient(90deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
    color: #fff;
    padding: 10px 0;
    margin: 12px 0;
    font-weight: bold;
    font-size: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .running-text marquee {
    font-family: Segoe UI, sans-serif;
    letter-spacing: 0.5px;
  }
} /* End of @media (max-width: 768px) */

/* Vertical Banners Styles */
.vertical-banner {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  z-index: 999;
  transition: all 0.3s ease;
  display: none;
}

.vertical-banner.left {
  left: 10px;
}

.vertical-banner.right {
  right: 10px;
}

.vertical-banner img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.vertical-banner img:hover {
  transform: scale(1.05);
}

/* Tampilkan banner hanya di desktop */
@media (min-width: 1024px) {
  .vertical-banner {
    display: block;
  }
}

/* Welcome Popup Styles */
.welcome-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.5s ease;
}

.popup-content {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 30px;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: slideUp 0.5s ease;
}

.popup-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #ffc107;
}

.popup-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #e3f2fd;
}

.popup-highlight {
  color: #ffc107;
  font-weight: bold;
}

.popup-features {
  text-align: left;
  margin: 20px 0;
  padding-left: 20px;
}

.popup-features li {
  margin-bottom: 10px;
  font-size: 14px;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.3s;
}

.popup-close:hover {
  color: #ffc107;
}

.popup-button {
  background: linear-gradient(to right, #ff5722, #ff9800);
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.popup-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
  background: linear-gradient(to right, #ff9800, #ff5722);
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}