* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, sans-serif; background: #1a1a2e; color: #fff; }

.section-label {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 20px 0 10px;
  color: #e94560;
  text-transform: uppercase;
}

/* ===== TICKER ===== */
.ticker-wrap {
  position: relative;
  background: #0f3460;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 2px solid #e94560;
}
.ticker-track-wrap {
  overflow: hidden;
}
.ticker-track {
  display: inline-block;
  animation: scroll-left 80s linear infinite;
}
.ticker-track span {
  display: inline-block;
  margin: 0 18px;
  font-size: 14px;
}
.ticker-track .league { color: #aaa; font-weight: bold; }
.ticker-track .finished { color: #888; }
.ticker-track .upcoming { color: #f0c040; }

@keyframes scroll-left {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}
.ticker-fade-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(to right, transparent, #0f3460);
  pointer-events: none;
}

/* ===== GRID ===== */
.asset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 14px;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.asset-card {
  background: #16213e;
  border: 1px solid #0f3460;
  border-radius: 8px;
  padding: 16px;
  line-height: 1.55;
  transition: border-color 0.2s;
  overflow: hidden;
}
.asset-card:hover { border-color: #e94560; }
.asset-card .league-name {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}
.asset-card .match {
  font-size: 13.5px;
  padding: 6px 0;
}
.asset-card .match:last-of-type {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #2a2a4a;
}
.asset-card .finished { color: #888; }
.asset-card .upcoming { color: #f0c040; }
.asset-card .trade-btn {
  display: block;
  margin: 6px -16px -16px -16px;
  background: #e94560;
  color: #fff;
  border: none;
  border-radius: 0 0 6px 6px;
  padding: 14px;
  width: calc(100% + 32px);
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.asset-card .trade-btn:hover {
  background: #ff5470;
}
.asset-card .trade-btn:active {
  transform: scale(0.99);
}

/* ===== FEATURED - Grid Layout ===== */
.featured-section {
  max-width: 1100px;
  margin: 40px auto;
  background: #16213e;
  border: 2px solid #e94560;
  border-radius: 12px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}
.feat-name {
  grid-column: 1 / -1;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  color: #fff;
}
.summary {
  grid-column: 1 / -1;
  font-size: 14.5px;
  line-height: 1.6;
  color: #ddd;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid #333;
}
.updated {
  font-size: 12px;
  color: #777;
  margin-top: 20px;
}
.match-block h4 {
  color: #e94560;
  margin-bottom: 10px;
  font-size: 15px;
}
.match {
  padding: 9px 0;
  border-bottom: 1px solid #333;
  font-size: 14.5px;
}
.match:last-child { border-bottom: none; }
.venue { font-size: 12.5px; color: #888; }

/* Mobile adjustments */
@media (max-width: 768px) {
  .featured-section {
    grid-template-columns: 1fr;
  }
}