/* ile-do-ilu.pl – Sport CSS */
:root {
  --brand-dark: #0f172a;
  --brand-primary: #22c55e;
  --brand-accent: #f97316;
  --brand-blue: #3b82f6;
}

/* Unified Hero Override */
.uhero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%) !important;
}

/* General */
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cards */
.sport-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  transition: .2s;
}
.sport-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  transform: translateY(-1px);
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
}
table th {
  background: var(--brand-dark);
  color: #fff;
  padding: 10px 12px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
}
table td {
  padding: 10px 12px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
}
table tr:hover td {
  background: #f8fafc;
}

/* Links */
a { color: var(--brand-primary); }
a:hover { color: #16a34a; }

/* Buttons */
.btn-sport {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--brand-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: .2s;
}
.btn-sport:hover {
  background: #16a34a;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .idi-hero h1 { font-size: 28px; }
  .idi-hero-score { font-size: 24px; padding: 8px 16px; }
  .idi-quick { grid-template-columns: 1fr; }
}
