* { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    min-height: 100vh;
  }
  .container { max-width: 1000px; margin: 0 auto; padding: 20px; }
  .header {
    background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-radius: 20px;
    padding: 40px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); text-align: center;
  }
  .header h1 {
    font-size: 2.8em; font-weight: 700;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: 10px;
  }
  .header .subtitle { font-size: 1.2em; color: #666; font-weight: 400; }
  .back-link {
    display: inline-block; background: rgba(76,175,80,0.1); color: #4CAF50;
    padding: 10px 20px; text-decoration: none; border-radius: 25px; font-weight: 500; margin-bottom: 20px;
    transition: all 0.3s ease;
  }
  .back-link:hover { background: #4CAF50; color: white; transform: translateY(-2px); }
  .matches-container { background: white; border-radius: 20px; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
  .matches-list { list-style: none; }
  .match-item {
    background: #f8f9fa; border-radius: 15px; padding: 25px; margin-bottom: 20px;
    border-left: 5px solid #4CAF50; transition: all 0.3s ease;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px;
  }
  .match-item:hover { transform: translateX(10px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); background: #fff; }
  .match-info { flex: 1; min-width: 300px; }
  .match-title { font-size: 1.3em; font-weight: 600; color: #333; margin-bottom: 8px; text-decoration: none; }
  .match-title:hover { color: #4CAF50; }
  .match-meta { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
  .match-type { background: linear-gradient(135deg, #4CAF50, #2E7D32); color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.85em; font-weight: 500; }
  .match-year { color: #666; font-weight: 500; }
  .match-actions { display: flex; gap: 10px; align-items: center; }
  .data-link { background: #4CAF50; color: white; padding: 10px 20px; text-decoration: none; border-radius: 8px; font-weight: 500; font-size: 0.9em; display: inline-flex; align-items: center; gap: 5px; transition: all 0.3s ease; }
  .data-link:hover { background: #2E7D32; transform: translateY(-2px); }
  .data-video { background: #f2511f; color: white; padding: 10px 20px; text-decoration: none; border-radius: 8px; font-weight: 500; font-size: 0.9em; display: inline-flex; align-items: center; gap: 5px; transition: all 0.3s ease; }
  .stats { background: linear-gradient(135deg, #4CAF50, #2E7D32); color: white; border-radius: 15px; padding: 25px; margin-top: 30px; text-align: center; }
  .stats h3 { font-size: 1.5em; margin-bottom: 15px; }
  .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 20px; margin-top: 20px; }
  .stat-item { background: rgba(255,255,255,0.1); border-radius: 10px; padding: 15px; }
  .stat-number { font-size: 2em; font-weight: 700; display: block; }
  .stat-label { font-size: 0.9em; opacity: 0.9; }
  @media (max-width:768px) {
    .container { padding:10px; }
    .header, .matches-container { padding:20px; }
    .header h1 { font-size:2.2em; }
    .match-item { flex-direction: column; align-items:flex-start; }
    .match-actions { width:100%; justify-content:flex-start; }
    .stats-grid { grid-template-columns: repeat(auto-fit, minmax(100px,1fr)); }
  }
  .upload-section {
    background:#f8f9fa; border-radius:15px; padding:30px; margin:40px auto; max-width:500px; text-align:center;
    box-shadow:0 4px 15px rgba(76,175,80,0.08);
  }
  .upload-section h3 { color:#2E7D32; font-weight:700; margin-bottom:18px; font-size:1.35em; letter-spacing:0.5px; }
  .upload-section button { background:linear-gradient(135deg,#4CAF50,#2E7D32); color:white; border:none; border-radius:8px; padding:12px 32px; font-weight:600; font-size:1.08em; cursor:pointer; box-shadow:0 2px 8px rgba(76,175,80,0.08); margin-bottom:10px; transition:background 0.3s; }
