
:root {

  --primary: #1a1a2e;

  --secondary: #16213e;

  --accent: #0f3460;

  --gold: #e94560;

  --success: #00d26a;

  --danger: #ff6b6b;

  --warning: #ffc107;

  --text: #eaeaea;

  --text-muted: #a0a0a0;

}



* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}



body {

  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;

  background: var(--primary);

  color: var(--text);

  line-height: 1.6;

  min-height: 100vh;

}



.container {

  max-width: 1200px;

  margin: 0 auto;

  padding: 0 20px;

}



/* Header */

header {

  background: var(--secondary);

  padding: 1rem 0;

  border-bottom: 2px solid var(--accent);

  position: sticky;

  top: 0;

  z-index: 100;

}



.header-content {

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 1rem;

}



.logo {

  font-size: 1.5rem;

  font-weight: 700;

  color: var(--gold);

  text-decoration: none;

}



.logo span {

  color: var(--text);

}



nav ul {

  display: flex;

  list-style: none;

  gap: 1.5rem;

  flex-wrap: wrap;

}



nav a {

  color: var(--text);

  text-decoration: none;

  font-weight: 500;

  transition: color 0.3s;

}



nav a:hover {

  color: var(--gold);

}



/* Language Selector */

.lang-selector {

  position: relative;

}



.lang-selector select {

  background: var(--accent);

  color: var(--text);

  border: none;

  padding: 0.5rem 1rem;

  border-radius: 5px;

  cursor: pointer;

}



/* Hero Section */

.hero {

  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);

  padding: 3rem 0;

  text-align: center;

  margin-bottom: 2rem;

}



.hero h1 {

  font-size: 2.5rem;

  margin-bottom: 0.5rem;

}



.hero p {

  color: var(--text-muted);

  font-size: 1.1rem;

}



/* Stats Bar */

.stats-bar {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));

  gap: 1rem;

  margin-bottom: 2rem;

}



.stat-card {

  background: var(--secondary);

  padding: 1.5rem;

  border-radius: 10px;

  text-align: center;

  border: 1px solid var(--accent);

}



.stat-card .number {

  font-size: 2rem;

  font-weight: 700;

  color: var(--gold);

}



.stat-card .label {

  color: var(--text-muted);

  font-size: 0.9rem;

}



/* Tips Section */

.tips-section {

  margin-bottom: 3rem;

}



.section-header {

  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 1.5rem;

  flex-wrap: wrap;

  gap: 1rem;

}



.section-title {

  font-size: 1.5rem;

  display: flex;

  align-items: center;

  gap: 0.5rem;

}



.tier-badge {

  padding: 0.3rem 0.8rem;

  border-radius: 20px;

  font-size: 0.8rem;

  font-weight: 600;

}



.tier-platinum {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

}



.tier-gold {

  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);

}



/* Tips Grid */

.tips-grid {

  display: grid;

  gap: 1rem;

}



.tip-card {

  background: var(--secondary);

  border-radius: 10px;

  padding: 1.5rem;

  border: 1px solid var(--accent);

  transition: transform 0.3s, box-shadow 0.3s;

}



.tip-card:hover {

  transform: translateY(-3px);

  box-shadow: 0 10px 30px rgba(0,0,0,0.3);

}



.tip-card a {

  text-decoration: none;

  color: inherit;

}



.tip-header {

  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  margin-bottom: 1rem;

  flex-wrap: wrap;

  gap: 0.5rem;

}



.tip-league {

  color: var(--text-muted);

  font-size: 0.85rem;

}



.tip-time {

  background: var(--accent);

  padding: 0.3rem 0.6rem;

  border-radius: 5px;

  font-size: 0.85rem;

}



.tip-teams {

  font-size: 1.2rem;

  font-weight: 600;

  margin-bottom: 1rem;

}



.tip-prediction {

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 1rem;

}



.tip-pick {

  display: flex;

  align-items: center;

  gap: 0.5rem;

}



.pick-label {

  background: var(--gold);

  color: white;

  padding: 0.4rem 1rem;

  border-radius: 5px;

  font-weight: 600;

}



.pick-odds {

  font-size: 1.3rem;

  font-weight: 700;

}



.tip-confidence {

  text-align: right;

}



.confidence-bar {

  width: 100px;

  height: 8px;

  background: var(--accent);

  border-radius: 4px;

  overflow: hidden;

  margin-top: 0.3rem;

}



.confidence-fill {

  height: 100%;

  background: var(--success);

  border-radius: 4px;

}



/* Result Status */

.result-status {

  display: inline-block;

  padding: 0.3rem 0.8rem;

  border-radius: 5px;

  font-weight: 600;

  font-size: 0.85rem;

}



.result-win {

  background: var(--success);

  color: white;

}



.result-loss {

  background: var(--danger);

  color: white;

}



.result-pending {

  background: var(--warning);

  color: #333;

}



/* Match Article */

.match-article {

  background: var(--secondary);

  border-radius: 10px;

  padding: 2rem;

  margin-bottom: 2rem;

}



.match-article h1 {

  font-size: 2rem;

  margin-bottom: 1rem;

}



.match-meta {

  display: flex;

  gap: 2rem;

  margin-bottom: 2rem;

  flex-wrap: wrap;

  color: var(--text-muted);

}



.article-content {

  line-height: 1.8;

}



.article-content h2 {

  color: var(--gold);

  margin: 2rem 0 1rem;

  font-size: 1.4rem;

}



.article-content p {

  margin-bottom: 1rem;

}



/* Stats Table */

.stats-table {

  width: 100%;

  border-collapse: collapse;

  margin: 1.5rem 0;

}



.stats-table th,

.stats-table td {

  padding: 1rem;

  text-align: left;

  border-bottom: 1px solid var(--accent);

}



.stats-table th {

  background: var(--accent);

  font-weight: 600;

}



.stats-table tr:hover {

  background: rgba(255,255,255,0.05);

}



/* Prediction Box */

.prediction-box {

  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);

  border: 2px solid var(--gold);

  border-radius: 10px;

  padding: 2rem;

  text-align: center;

  margin: 2rem 0;

}



.prediction-box h3 {

  color: var(--gold);

  margin-bottom: 1rem;

}



.prediction-main {

  font-size: 2rem;

  font-weight: 700;

  margin-bottom: 0.5rem;

}



.prediction-odds {

  font-size: 1.5rem;

  color: var(--success);

}



/* Footer */

footer {

  background: var(--secondary);

  padding: 3rem 0 1rem;

  margin-top: 3rem;

  border-top: 2px solid var(--accent);

}



.footer-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

  gap: 2rem;

  margin-bottom: 2rem;

}



.footer-section h4 {

  color: var(--gold);

  margin-bottom: 1rem;

}



.footer-section ul {

  list-style: none;

}



.footer-section a {

  color: var(--text-muted);

  text-decoration: none;

  line-height: 2;

}



.footer-section a:hover {

  color: var(--text);

}



.footer-bottom {

  text-align: center;

  padding-top: 2rem;

  border-top: 1px solid var(--accent);

  color: var(--text-muted);

  font-size: 0.9rem;

}



/* Disclaimer Banner */

.disclaimer-banner {

  background: var(--warning);

  color: #333;

  padding: 0.8rem;

  text-align: center;

  font-size: 0.85rem;

}



/* Cookie Banner */

.cookie-banner {

  position: fixed;

  bottom: 0;

  left: 0;

  right: 0;

  background: var(--secondary);

  padding: 1rem;

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 1rem;

  border-top: 2px solid var(--accent);

  z-index: 1000;

}



.cookie-banner.hidden {

  display: none;

}



.cookie-btn {

  background: var(--gold);

  color: white;

  border: none;

  padding: 0.6rem 1.5rem;

  border-radius: 5px;

  cursor: pointer;

  font-weight: 600;

}



/* Responsive */

@media (max-width: 768px) {

  .hero h1 {

    font-size: 1.8rem;

  }

  

  .header-content {

    flex-direction: column;

    text-align: center;

  }

  

  nav ul {

    justify-content: center;

  }

  

  .tip-prediction {

    flex-direction: column;

    align-items: flex-start;

  }

  

  .tip-confidence {

    text-align: left;

  }

}



/* Track Record */

.track-record {

  background: var(--secondary);

  border-radius: 10px;

  padding: 2rem;

  margin-bottom: 2rem;

}



.record-summary {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));

  gap: 1rem;

  margin-bottom: 2rem;

}



.record-item {

  text-align: center;

  padding: 1rem;

  background: var(--accent);

  border-radius: 8px;

}



.record-item .value {

  font-size: 1.8rem;

  font-weight: 700;

}



.record-item .value.positive {

  color: var(--success);

}



.record-item .value.negative {

  color: var(--danger);

}



.record-item .label {

  font-size: 0.85rem;

  color: var(--text-muted);

}

