/* === Enhanced Theme for Soccer Manager MMO === */

:root {
  --primary: #1c1c1c;
  --secondary: #0066cc;
  --accent: #f0b000;
  --background: #f2f2f2;
  --card-bg: #ffffff;
  --text-light: #ffffff;
  --text-dark: #333333;
  --highlight: #008f4c;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--background);
  margin: 0;
  padding: 0;
  text-align: center;
  color: var(--text-dark);
}

.header {
  background: var(--primary);
  color: var(--text-light);
  padding: 40px 20px;
  position: relative;
}

.header img {
  max-width: 120px;
  display: block;
  margin: 0 auto 20px;

}

.main-header {
    background-color: #0f0f0f;
    color: white;
    padding-bottom: 30px;
    border-bottom: 4px solid #3a8643;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    text-align: left;
}

.site-logo {
    width: 100px;
    height: auto;
    margin-right: 20px;
	border: thin;
	border-style: solid;
	border-color: darkgreen;
	border-radius: 15px;
}

.header-text h1 {
    font-size: 2.4em;
    margin: 0;
    color: #c59d39;
}

.header-text p {
    margin: 6px 0;
    font-size: 1.1em;
    color: #ccc;
}

.tagline {
    font-style: italic;
    color: #3a8643;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.roles-highlight {
    margin-top: 30px;
    text-align: center;
    background: #1a1a1a;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.roles-highlight h2 {
    color: #c59d39;
    font-size: 1.8em;
}

.roles-highlight ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-size: 1.1em;
}

.roles-highlight li {
    margin: 10px 0;
}

.roles-caption {
    margin-top: 15px;
    font-style: italic;
    color: #aaa;
}

.live-snippets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 40px auto;
  width: 90%;
  max-width: 1000px;
  background: #1c1c1c;
  padding: 25px 20px;
  border-radius: 12px;
  color: white;
  border: 1px solid #3a8643;
  box-shadow: 0 0 10px rgba(0, 255, 100, 0.1);
}

.live-snippets h3 {
  color: #c59d39;
  margin-bottom: 12px;
  font-size: 1.3em;
  text-align: center;
}

.live-table-preview, .live-matches-preview {
  flex: 1 1 400px;
  padding: 10px;
}

.live-table-preview table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95em;
  background: #181818;
  border-radius: 6px;
  overflow: hidden;
}

.live-table-preview th, .live-table-preview td {
  padding: 10px;
  border-bottom: 1px solid #2a2a2a;
  text-align: left;
}

.live-table-preview th {
  background: #222;
  color: #c59d39;
}

.live-table-preview tr:last-child td {
  border-bottom: none;
}

.live-matches-preview ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95em;
}

.match-list-grid {
  display: grid;
  gap: 12px;
}

.match-row {
  background: #202020;
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95em;
  border-left: 4px solid #3a8643;
  transition: background 0.3s;
}

.match-row:hover {
  background: #2a2a2a;
}
.match-info {
  padding: 8px;
  border-bottom: 1px solid #444;
  justify-content: center;
  text-align: center;
}

.teams-line {
  font-weight: bold;
  font-size: 1.1em;
}

.status-line {
  font-size: 0.9em;
  color: #ccc;
}

.goal-msg {
  font-weight: bold;
  text-align: center;
  color: lightgreen;
  font-size: 1.1em;
  padding: 5px;
  transition: opacity 0.5s;
  border:thin;
  border-radius: 15px;
}

.goal-flash {
  animation: flashGoal 0.5s ease-in-out 3;
}

@keyframes flashGoal {
  0%, 100% { color: gold; background: darkgreen; }
  50% { color: red; background: yellow; }
}

/* Responsive tweaks */
@media (max-width: 768px) {
	  .live-snippets {
		flex-direction: column;
	  }
    .header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .site-logo {
        margin: 0 0 15px 0;
    }
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.cta-buttons {
  margin: 20px 0;
}

.cta-buttons .btn {
  display: inline-block;
  margin: 10px;
  padding: 14px 28px;
  background: var(--secondary);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-buttons .btn:hover {
  background: #004b99;
}

.cta-buttons .btn.outline {
  background: white;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.cta-buttons .btn.admin {
  background: var(--accent);
  color: var(--primary);
}

.features, .ads {
  background: var(--card-bg);
  margin: 30px auto;
  padding: 30px;
  width: 85%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.features h2, .ads h2 {
  color: var(--highlight);
  margin-bottom: 20px;
}

.features ul {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
}

.features li {
  margin: 10px 0;
}

.ad-box {
  background: #e0e0e0;
  margin: 10px auto;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
}

.footer {
  margin-top: 60px;
  padding: 20px;
  background: var(--primary);
  color: var(--text-light);
}
.alpha-info {
    background: #252525;
    color: #fff;
    padding: 40px 20px;
    margin: 40px auto;
    width: 90%;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    border-left: 5px solid #c59d39;
}

.alpha-info h2 {
    color: #c59d39;
    font-size: 2em;
    margin-bottom: 10px;
}

.alpha-info p {
    font-size: 1.1em;
    margin: 15px 0;
    line-height: 1.6;
}

.interest-form {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.interest-form input[type="email"] {
    padding: 12px;
    border-radius: 6px;
    border: none;
    width: 280px;
    max-width: 100%;
    font-size: 1em;
}

.interest-form button {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    background-color: #3a8643;
    color: white;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.interest-form button:hover {
    background-color: #2e6d35;
}

.form-disclaimer {
    margin-top: 10px;
    font-size: 0.85em;
    color: #ccc;
}
