/* style.css */

:root {
  --bg:#031f1d;
  --bg2:#07332f;
  --card:#0d4038;
  --card2:#103f39;
  --border:rgba(143,255,225,.18);
  --text:#eefbf6;
  --muted:#b9d5cd;
  --accent:#62e0c2;
  --accent2:#38bfa3;
  --dark:#021816;
  --red:#ff3535;
}

* {
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body {
  font-family:Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, rgba(35,130,120,.45), transparent 35%),
    linear-gradient(180deg,#062f2c 0%,#021817 55%,#031f1d 100%);
  color:var(--text);
  line-height:1.6;
}

a {
  color:inherit;
  text-decoration:none;
}

img {
  max-width:100%;
  display:block;
}

.container {
  width:min(1160px, calc(100% - 32px));
  margin:0 auto;
}

.site-header {
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(2,28,26,.94);
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(14px);
}

.header-inner {
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.brand {
  display:flex;
  align-items:center;
  gap:12px;
}

.brand img {
  width:46px;
  height:46px;
  border-radius:14px;
}

.brand-title {
  font-size:20px;
  font-weight:800;
  letter-spacing:.5px;
}

.brand-subtitle {
  font-size:12px;
  color:var(--muted);
  margin-top:-3px;
}

.nav {
  display:flex;
  align-items:center;
  gap:26px;
  font-size:14px;
  color:#d9eee8;
}

.nav a:hover {
  color:var(--accent);
}

.header-actions {
  display:flex;
  align-items:center;
  gap:10px;
}

.lang {
  display:flex;
  padding:6px;
  border:1px solid var(--border);
  border-radius:999px;
  background:rgba(255,255,255,.04);
}

.lang a {
  padding:8px 13px;
  border-radius:999px;
  font-size:13px;
}

.lang .active {
  background:var(--accent);
  color:#06201d;
  font-weight:800;
}

.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:999px;
  padding:12px 18px;
  background:linear-gradient(180deg,var(--accent),var(--accent2));
  color:#06201d;
  font-weight:800;
  border:0;
  cursor:pointer;
}

.btn-outline {
  background:rgba(255,255,255,.05);
  border:1px solid var(--border);
  color:var(--text);
}

.section {
  margin-top:18px;
  border:1px solid var(--border);
  background:linear-gradient(180deg,rgba(17,75,67,.92),rgba(8,49,44,.92));
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 20px 80px rgba(0,0,0,.22);
}

.section-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:20px 24px;
  border-bottom:1px solid var(--border);
}

.section h2 {
  font-size:20px;
  line-height:1.25;
}

.section-note {
  color:var(--muted);
  font-size:14px;
}

.hero {
  padding:34px 0 8px;
}

.hero-grid {
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
}

.hero-card {
  padding:30px;
  min-height:390px;
  background:
    linear-gradient(90deg,rgba(3,27,25,.88),rgba(5,44,41,.5)),
    url("images/banner1.jpg") center/cover no-repeat;
  border:1px solid var(--border);
  border-radius:24px;
  overflow:hidden;
  position:relative;
}

.hero-card:after {
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 20% 15%,rgba(98,224,194,.26),transparent 30%);
  pointer-events:none;
}

.hero-content {
  position:relative;
  z-index:2;
  max-width:640px;
}

.eyebrow {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(98,224,194,.12);
  border:1px solid var(--border);
  color:#dffbf4;
  font-size:13px;
  margin-bottom:18px;
}

.live-dot {
  width:9px;
  height:9px;
  background:var(--red);
  border-radius:50%;
  box-shadow:0 0 0 6px rgba(255,53,53,.14);
}

h1 {
  font-size:48px;
  line-height:1.05;
  letter-spacing:-1px;
  max-width:760px;
  margin-bottom:18px;
}

.hero-text {
  max-width:650px;
  color:#d2e9e3;
  font-size:16px;
  margin-bottom:24px;
}

.hero-buttons {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.match-panel {
  background:linear-gradient(180deg,rgba(17,75,67,.95),rgba(8,49,44,.95));
  border:1px solid var(--border);
  border-radius:24px;
  padding:18px;
}

.panel-title {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:14px;
}

.video-box {
  min-height:240px;
  border-radius:18px;
  background:
    linear-gradient(180deg,rgba(0,0,0,.16),rgba(0,0,0,.55)),
    url("images/playerbanner.webp") center/cover no-repeat;
  position:relative;
  overflow:hidden;
  border:1px solid var(--border);
}

.play {
  position:absolute;
  inset:0;
  margin:auto;
  width:74px;
  height:74px;
  border-radius:50%;
  background:rgba(0,0,0,.55);
  display:grid;
  place-items:center;
  font-size:34px;
}

.video-bottom {
  position:absolute;
  left:16px;
  right:16px;
  bottom:16px;
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
}

.progress {
  flex:1;
  height:6px;
  border-radius:999px;
  background:rgba(255,255,255,.35);
  overflow:hidden;
}

.progress span {
  display:block;
  width:42%;
  height:100%;
  background:var(--accent);
}

.channel-row {
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:12px;
  padding:18px;
}

.channel-card {
  min-height:74px;
  border:1px solid var(--border);
  border-radius:14px;
  background:rgba(255,255,255,.04);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px;
  color:#dffbf4;
  font-weight:800;
}

.telegram {
  display:grid;
  grid-template-columns:1fr auto;
  gap:20px;
  align-items:center;
  padding:24px;
  background:
    linear-gradient(90deg,rgba(22,118,106,.9),rgba(10,56,51,.96)),
    radial-gradient(circle at left,rgba(98,224,194,.35),transparent 40%);
}

.telegram-name {
  font-size:26px;
  font-weight:900;
  margin:6px 0;
}

.grid-2 {
  display:grid;
  grid-template-columns:1.55fr .95fr;
  gap:18px;
  padding:18px;
}

.content-box {
  background:rgba(255,255,255,.035);
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
}

.match-list {
  display:grid;
  gap:10px;
}

.match-item {
  display:grid;
  grid-template-columns:72px 1fr;
  gap:14px;
  padding:14px;
  border:1px solid var(--border);
  border-radius:14px;
  background:rgba(98,224,194,.06);
}

.match-time {
  font-weight:800;
}

.match-title {
  font-weight:800;
}

.tags {
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-top:7px;
}

.tag {
  font-size:12px;
  border:1px solid var(--border);
  border-radius:999px;
  padding:4px 9px;
  color:#d7eee8;
  background:rgba(0,0,0,.13);
}

.cards {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  padding:18px;
}

.card {
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  border-radius:16px;
  padding:16px;
}

.card h3 {
  font-size:16px;
  margin-bottom:7px;
}

.card p {
  color:var(--muted);
  font-size:14px;
}

.score-table {
  display:grid;
  gap:10px;
  padding:18px;
}

.score-row {
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
}

.about {
  padding:24px;
  color:#d8eee8;
}

.about p + p {
  margin-top:14px;
}

.news-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  padding:18px;
}

.news-card {
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  background:rgba(255,255,255,.04);
}

.news-card img {
  width:100%;
  height:150px;
  object-fit:cover;
}

.news-body {
  padding:14px;
}

.news-body h3 {
  font-size:16px;
  line-height:1.35;
  margin-bottom:7px;
}

.news-body p {
  color:var(--muted);
  font-size:14px;
}

.faq {
  padding:18px;
  display:grid;
  gap:10px;
}

.faq details {
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px 16px;
  background:rgba(255,255,255,.04);
}

.faq summary {
  cursor:pointer;
  font-weight:800;
}

.faq p {
  color:var(--muted);
  margin-top:10px;
}

.footer {
  margin-top:32px;
  background:#021615;
  border-top:1px solid var(--border);
  padding:30px 0;
}

.footer-grid {
  display:grid;
  grid-template-columns:1fr auto;
  gap:20px;
  align-items:center;
}

.footer-links {
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  color:var(--muted);
}

.mobile-menu {
  display:none;
}

@media (max-width:980px) {
  .nav {
    display:none;
  }

  .hero-grid,
  .grid-2,
  .telegram {
    grid-template-columns:1fr;
  }

  h1 {
    font-size:36px;
  }

  .channel-row,
  .cards,
  .news-grid {
    grid-template-columns:repeat(2,1fr);
  }

  .footer-grid {
    grid-template-columns:1fr;
  }
}

@media (max-width:560px) {
  .header-inner {
    height:auto;
    padding:14px 0;
    align-items:flex-start;
  }

  .brand-subtitle {
    display:none;
  }

  .header-actions .btn-outline {
    display:none;
  }

  .hero-card {
    padding:22px;
    min-height:360px;
  }

  h1 {
    font-size:30px;
  }

  .channel-row,
  .cards,
  .news-grid {
    grid-template-columns:1fr;
  }

  .section-head {
    align-items:flex-start;
    flex-direction:column;
  }

  .score-row {
    flex-direction:column;
  }
}