:root{
  --red:#c61b43;
  --red-dark:#a91435;
  --text:#222;
  --muted:#666;
  --line:#e5e5e5;
  --bg:#fff;
  --soft:#f7f7f7;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#fff;
  color:var(--text);
  font-size:15px;
  line-height:1.5;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:1180px;
  margin:0 auto;
}

.top-line{
  height:5px;
  background:#111;
}

.header{
  background:#fff;
  border-bottom:1px solid #eee;
}

.header-inner{
  height:145px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo-area{
  display:flex;
  align-items:center;
  gap:24px;
}

.logo-area img{
  width:110px;
  height:110px;
  object-fit:contain;
}

.site-title{
  font-size:72px;
  line-height:1;
  color:#ef2b32;
  font-weight:900;
  font-style:italic;
  letter-spacing:2px;
}

.site-title span{
  font-size:42px;
  font-weight:500;
}

.langs{
  display:flex;
  gap:8px;
  align-items:center;
  font-size:13px;
}

.langs a{
  padding:7px 10px;
  background:var(--red);
  color:#fff;
}

.nav{
  background:var(--red);
}

.nav-inner{
  display:flex;
  align-items:center;
  min-height:43px;
}

.nav a{
  color:#fff;
  padding:14px 14px;
  font-size:13px;
  text-transform:uppercase;
}

.nav a:hover,
.nav a.active{
  background:var(--red-dark);
}

.main{
  padding:2px 0 35px;
}

.hero-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:10px;
  margin-top:2px;
}

.hero-card{
  position:relative;
  min-height:360px;
  overflow:hidden;
  background:#111;
}

.hero-card.small{
  min-height:175px;
}

.hero-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  position:absolute;
  inset:0;
}

.hero-card:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.05), rgba(0,0,0,.65));
}

.hero-content{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:16px 18px;
  background:rgba(198,27,67,.88);
  color:#fff;
}

.hero-content h1{
  font-size:25px;
  line-height:1.25;
  margin-bottom:7px;
  font-weight:700;
}

.hero-content p{
  font-size:14px;
  color:#fff;
}

.side-hero{
  display:grid;
  gap:10px;
}

.section{
  margin-top:28px;
}

.section-title{
  color:var(--red);
  font-size:26px;
  line-height:1.2;
  margin-bottom:15px;
  font-weight:700;
  text-transform:none;
}

.layout{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:28px;
  align-items:start;
}

.content-box{
  border-top:4px solid var(--red);
  background:#fff;
  padding-top:14px;
}

.content-box p{
  margin-bottom:13px;
}

.info-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:15px;
}

.info-card{
  border:1px solid var(--line);
  background:var(--soft);
  padding:15px;
}

.info-card strong{
  display:block;
  color:var(--red);
  font-size:18px;
  margin-bottom:5px;
}

.match-table,
.standings-table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
}

.match-table th,
.match-table td,
.standings-table th,
.standings-table td{
  border:1px solid #dfdfdf;
  padding:10px;
  text-align:left;
}

.match-table th,
.standings-table th{
  background:var(--red);
  color:#fff;
  font-weight:700;
}

.match-table td.score{
  color:var(--red);
  font-weight:700;
  text-align:center;
  white-space:nowrap;
}

.team-row{
  display:flex;
  align-items:center;
  gap:9px;
}

.team-row img{
  width:28px;
  height:28px;
  object-fit:contain;
}

.sidebar-box{
  margin-bottom:26px;
}

.sidebar-title{
  color:var(--red);
  font-size:24px;
  margin-bottom:12px;
}

.news-list{
  display:grid;
  gap:14px;
}

.news-item{
  display:grid;
  grid-template-columns:115px 1fr;
  gap:12px;
  align-items:start;
}

.news-item img{
  width:115px;
  height:78px;
  object-fit:cover;
}

.news-item h3{
  font-size:15px;
  line-height:1.25;
  color:var(--red);
  margin-bottom:5px;
}

.news-item time{
  font-size:12px;
  color:#333;
}

.club-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
}

.club-card{
  border:1px solid var(--line);
  background:#fff;
  text-align:center;
  padding:14px 8px;
  min-height:132px;
}

.club-card img{
  height:72px;
  margin:0 auto 8px;
  object-fit:contain;
}

.club-card span{
  font-weight:700;
  font-size:14px;
  color:#333;
}

.text-card{
  border:1px solid var(--line);
  padding:15px;
  background:#fff;
}

.text-card h3{
  color:var(--red);
  font-size:18px;
  margin-bottom:7px;
}

.faq{
  display:grid;
  gap:10px;
}

.faq details{
  border:1px solid var(--line);
  background:#fff;
  padding:12px 14px;
}

.faq summary{
  cursor:pointer;
  color:var(--red);
  font-weight:700;
}

.faq p{
  margin-top:8px;
}

.footer{
  background:#222;
  color:#ddd;
  margin-top:35px;
  padding:24px 0;
  font-size:13px;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
}

.breadcrumbs{
  font-size:13px;
  color:#777;
  margin:18px 0;
}

.breadcrumbs a{
  color:var(--red);
}

.category-header,
.article-header{
  border-top:4px solid var(--red);
  padding-top:14px;
  margin-top:20px;
}

.category-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.category-card{
  border:1px solid var(--line);
  background:#fff;
}

.category-card img{
  height:160px;
  width:100%;
  object-fit:cover;
}

.category-card-content{
  padding:13px;
}

.category-card h2{
  color:var(--red);
  font-size:19px;
  line-height:1.25;
  margin-bottom:7px;
}

.article-body{
  max-width:820px;
}

.article-body h2{
  color:var(--red);
  margin:24px 0 10px;
  font-size:24px;
}

.article-body p{
  margin-bottom:14px;
}

.article-image{
  margin:18px 0;
}

@media(max-width:1200px){
  .container{
    width:94%;
  }

  .site-title{
    font-size:56px;
  }
}

@media(max-width:900px){
  .header-inner{
    height:auto;
    padding:18px 0;
    align-items:flex-start;
    gap:14px;
  }

  .logo-area{
    gap:14px;
  }

  .logo-area img{
    width:82px;
    height:82px;
  }

  .site-title{
    font-size:38px;
  }

  .site-title span{
    font-size:25px;
  }

  .nav-inner{
    overflow-x:auto;
    white-space:nowrap;
  }

  .hero-grid,
  .layout{
    grid-template-columns:1fr;
  }

  .info-grid,
  .club-grid,
  .category-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-inner{
    display:block;
  }
}

@media(max-width:560px){
  .info-grid,
  .club-grid,
  .category-grid{
    grid-template-columns:1fr;
  }

  .news-item{
    grid-template-columns:95px 1fr;
  }

  .news-item img{
    width:95px;
    height:70px;
  }

  .hero-card{
    min-height:300px;
  }

  .hero-content h1{
    font-size:21px;
  }
}