:root {
  --primary-color: #2c3e50;
  --secondary-color: #27ae60;
  --background-color: #f4f7f6;
  --card-bg: #ffffff;
  --text-color: #333;
  --text-muted: #666;
  --border-radius: 8px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  padding-bottom: 40px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 30px;
}

h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: normal;
}

/* Ad Placeholders */
.ad-placeholder {
  background-color: #eee;
  border: 2px dashed #ccc;
  color: #999;
  text-align: center;
  padding: 20px;
  margin: 20px 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Pick Cards */
.picks-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pick-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.pick-card:hover {
  transform: translateY(-2px);
}

.match-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.match-name {
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.odds {
  background: var(--secondary-color);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: bold;
}

.pick-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pick-type {
  font-weight: 600;
  color: var(--secondary-color);
}

.note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 10px;
  font-style: italic;
}

/* Button */
.bet-now-btn {
  display: block;
  width: 100%;
  background-color: var(--secondary-color);
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: background 0.3s;
}

.bet-now-btn:hover {
  background-color: #219150;
}

/* Admin Form */
.admin-form {
  background: var(--card-bg);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

button[type="submit"] {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
}

button[type="submit"]:hover {
  background-color: #34495e;
}

.success-msg {
    color: var(--secondary-color);
    text-align: center;
    margin-top: 15px;
    display: none;
}

/* Total Odds Section */
.total-odds-container {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 30px;
    text-align: center;
    box-shadow: var(--shadow);
}

.total-odds-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    opacity: 0.9;
}

.total-odds-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.total-odds-note {
    font-size: 0.8rem;
    margin-top: 10px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }

  .match-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .odds {
    margin-top: 5px;
  }
}
