* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none !important;
  text-decoration: none;
}

:root {
  --green: #00c853;
  --dark-green: #007b33;
  --black: #0a0a0a;
  --dark: #111827;
  --card: #1a2332;
  --border: #243044;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --accent: #00c853;
}

body {
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-cta {
  background: var(--green);
  color: #000 !important;
  font-weight: 700;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  font-size: 0.85rem !important;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 0%,
      rgba(0, 200, 83, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 40% at 80% 80%,
      rgba(0, 123, 51, 0.08) 0%,
      transparent 50%
    );
}

.hero-badge.active {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 200, 83, 0.12);
  border: 1px solid rgba(0, 200, 83, 0.3);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero-badge.active::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -2px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--green), #00e676);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--green);
  color: #000;
  font-weight: 800;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(0, 200, 83, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 200, 83, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  border: 1px solid var(--border);
  transition:
    border-color 0.2s,
    color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
}
.error_page h1 .parent_title{
  font-size: 6rem;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── LIVE NOW ─── */
.section {
  padding: 80px 5%;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 800;
}

.section-title span {
  color: var(--green);
}

.view-all {
  color: var(--green);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
}

.match-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem;
  transition:
    border-color 0.2s,
    transform 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.match-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
}

.match-meta {
  text-align: end;
  margin-bottom: 1rem;
}


.live-tag {
  background: #dc2626;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
  animation: blink 2s infinite;
}

.upcoming-tag {
  background: var(--accent);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.team {
  text-align: center;
  flex: 1;
}

.team-flag {
  display: block;
  margin-bottom: 0.3rem;
  line-height: 0;
}
.team-flag img {
  width: 40px;
  height: 40px;
}
.team-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

.score-block {
  text-align: center;
  padding: 0 1rem;
}

.score {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.vs-text {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--muted);
}

/* ─── FEATURES ─── */
.features-bg {
  background: var(--dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: var(--green);
}

.feature-icon {
  margin-bottom: 1rem;
  line-height: 0;
}
.feature-icon svg {
  width: 40px;
  height: 40px;
  color: var(--green);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ─── SCHEDULE ─── */


.schedule-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: border-color 0.2s;
}

.schedule-item:hover {
  border-color: var(--green);
}

.sch-time {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
  min-width: 50px;
}

.sch-league {
  font-size: 0.75rem;
  color: var(--muted);
  min-width: 40px;
  text-align: center;
}

.sch-match .team {
  font-size: 0.9rem;
  font-weight: 700;
  flex: 1;
  text-align: left;
}

.sch-channel {
  margin-left: auto;
}
.sch-channel a svg {
  fill: var(--green);
}

/* ─── CTA BANNER ─── */
.cta-section {
  background: linear-gradient(135deg, var(--dark-green), #005724);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 8.5 9.5 10.5l1 3.5h3l1-3.5z'/%3E%3Cpath d='M12 8.5V3M9.5 10.5 4 9M14.5 10.5 20 9M10.5 14 7.5 19M13.5 14l3 5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.05;
  top: -50px;
  right: -50px;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  background: #fff;
  color: var(--dark-green);
  font-weight: 800;
  padding: 0.9rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.2s;
  display: inline-block;
}

.btn-white:hover {
  transform: translateY(-2px);
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.active {
  border-color: var(--green);
}

.faq-question {
  width: 100%;
  background: var(--card);
  border: none;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, color 0.2s;
}

.faq-item.active .faq-question {
  color: var(--green);
  background: rgba(0, 200, 83, 0.06);
}

.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.3s ease, color 0.2s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--green);
}

.faq-answer {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  padding: 0 1.4rem;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.4rem 1.2rem;
}

/* ─── FOOTER ─── */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 50px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.section-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.section-article .image {
    display: inline-flex;
}
.section-article img {
    width: 100%;
    object-fit: cover;
}
.section-article article {
    padding: 80px 5%;
    background: var(--dark-green);
}
.section-article article h2 {
    margin-bottom: 1rem;
}
.section-article article p {
    margin-bottom: 12px;
}
.section-article article p:last-child {
    margin-bottom: 0;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.8rem;
}

footer h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 1rem;
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

footer ul a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

footer ul a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .schedule-list {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  .nav-links li {
    display: none;
  }
  .nav-links li:last-child {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .section-article {
    grid-template-columns: 1fr;
  }
  .schedule-item {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .hero-stats {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 450px) {
    .hero-buttons {
        display: grid;
        justify-content: unset;
    }
}

/* ─── LIVE SECTION ─── */
:root {
  --live-red: #ef4444;
}

#live {
  padding: 4rem 5%;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}



.live-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.list-group {
  overflow: hidden;
}

.lg-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lg-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

.lg-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.rich-row {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  color: var(--text);
}

.rich-row:last-child {
  border-bottom: none;
}

.rich-row:hover {
  background: rgba(255,255,255,0.04);
}

.rr-col {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.rr-col.home {
  justify-content: flex-end;
  text-align: right;
}

.rr-col.away {
  justify-content: flex-start;
  text-align: left;
}

.rr-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.rr-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
  border-right: 1px solid var(--card);
  border-left: 1px solid var(--card);
  margin: 0 10px;
  flex-shrink: 0;
}

.rr-score {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.live-txt {
  color: var(--accent);
}

.rr-status {
  font-size: 0.5rem;
  font-weight: 700;
  margin-top: 2px;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .rr-col {
    font-size: 0.75rem;
  }

  .rr-logo {
    width: 22px;
    height: 22px;
  }

  .rr-center {
    width: 85px;
  }

  .rr-score {
    font-size: 0.95rem;
  }
}

.league-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  scrollbar-width: none;
}

.league-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.tab-btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  border-radius: 2px;
}

.tab-btn:hover {
  border-color: var(--accent);
  color: var(--text);
}

.tab-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

/* ─── END LIVE SECTION ─── */

.footer-bottom {
  a {
    color: #fff;
  }
}