:root {
  --bg: #0f172a;
  --panel: #ffffff;
  --muted: #64748b;
  --text: #0f172a;
  --line: #e2e8f0;
  --main: #16a34a;
  --dark: #020617;
  --soft: #f8fafc;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Roboto, Arial, sans-serif;
  background: #f1f5f9;
  color: var(--text);
}
a {
  text-decoration: none;
}
.tsn-container {
  width: min(1160px, calc(100% - 32px));
  margin: auto;
}
.tsn-topbar {
  background: #020617;
  color: #cbd5e1;
  font-size: 13px;
}
.tsn-topbar .tsn-container {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
}
.tsn-topbar a {
  color: #86efac;
  font-weight: 800;
}
.tsn-nav-wrap {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.tsn-nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tsn-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111827;
  font-weight: 900;
}
.tsn-brand .custom-logo {
  max-height: 54px;
  width: auto;
}
.tsn-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #16a34a, #0f172a);
  display: grid;
  place-items: center;
  color: white;
  font-size: 26px;
}
.tsn-brand-text {
  font-size: 25px;
  letter-spacing: 0.3px;
}
.tsn-menu-list {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tsn-menu-list a {
  display: block;
  color: #111827;
  font-weight: 800;
  padding: 12px 14px;
  border-radius: 12px;
}
.tsn-menu-list a:hover {
  background: #dcfce7;
  color: #15803d;
}
.tsn-menu-toggle {
  display: none;
  background: #0f172a;
  color: #fff;
  border: 0;
  border-radius: 10px;
  font-size: 24px;
  padding: 8px 11px;
}
.tsn-home-hero {
  margin: 26px 0;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 20px;
  background: radial-gradient(circle at 20% 10%, #22c55e, #0f172a 55%);
  color: #fff;
  border-radius: 28px;
  padding: 34px;
  overflow: hidden;
}
.tsn-kicker {
  display: inline-block;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}
.tsn-home-hero h1 {
  font-size: 42px;
  line-height: 1.08;
  margin: 14px 0 12px;
}
.tsn-home-hero p {
  font-size: 17px;
  color: #dbeafe;
  max-width: 720px;
}
.tsn-hero-panel {
  background: rgba(2, 6, 23, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tsn-hero-panel strong {
  font-size: 42px;
  color: #86efac;
}
.tsn-hero-panel span {
  margin: 10px 0 18px;
}
.tsn-hero-panel a {
  background: #fff;
  color: #15803d;
  font-weight: 900;
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
}
.tsn-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 26px;
  margin-top: 26px;
}
.tsn-main {
  min-width: 0;
}
.tsn-block-head,
.tsn-page-head {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 16px;
}
.tsn-block-head h2,
.tsn-page-head h1 {
  margin: 0;
  font-size: 25px;
  font-weight: 900;
}
.tsn-page-head span {
  color: #16a34a;
  font-weight: 900;
  font-size: 13px;
}
.tsn-mt {
  margin-top: 28px;
}
.tsn-score-board {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tsn-score-line {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 16px;
  color: #0f172a;
  transition: 0.2s;
}
.tsn-score-line:hover {
  transform: translateX(4px);
  border-color: #16a34a;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}
.tsn-score-league {
  font-size: 12px;
  font-weight: 900;
  color: #15803d;
  text-transform: uppercase;
}
.tsn-score-teams {
  display: grid;
  grid-template-columns: 1fr 74px 1fr;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.tsn-score-teams b {
  font-size: 15px;
}
.tsn-score-teams strong {
  background: #0f172a;
  color: #fff;
  border-radius: 12px;
  padding: 8px 6px;
  font-size: 18px;
}
.tsn-score-date {
  text-align: right;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}
.tsn-predict-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.tsn-predict-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: 0.2s;
}
.tsn-predict-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.tsn-predict-link {
  display: flex;
  min-height: 136px;
  color: #0f172a;
}
.tsn-predict-img {
  width: 140px;
  flex: 0 0 140px;
  background: #e2e8f0;
}
.tsn-predict-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tsn-predict-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tsn-predict-content em {
  font-style: normal;
  color: #16a34a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.tsn-predict-content strong {
  font-size: 16px;
  line-height: 1.4;
}
.tsn-predict-content small {
  margin-top: auto;
  color: #64748b;
}
.tsn-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tsn-widget {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.tsn-widget-title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 900;
}
.tsn-hot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.tsn-hot-tags h3 {
  width: 100%;
}
.tsn-hot-tags a {
  background: #f1f5f9;
  color: #0f172a;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
}
.tsn-hot-tags a:hover {
  background: #16a34a;
  color: #fff;
}
.wp-block-search__inside-wrapper {
  display: flex;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 7px;
}
.wp-block-search__input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 11px;
  outline: 0;
}
.wp-block-search__button {
  border: 0;
  background: #16a34a;
  color: #fff;
  font-weight: 900;
  border-radius: 10px;
  padding: 10px 15px;
}
.tsn-post-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 16px;
}
.tsn-post-thumb img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
}
.tsn-post-body time,
.tsn-single-meta {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}
.tsn-post-body h2 {
  margin: 8px 0;
}
.tsn-post-body a {
  color: #0f172a;
}
.tsn-single {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  line-height: 1.8;
}
.tsn-single h1 {
  font-size: 36px;
  line-height: 1.2;
}
.tsn-single-thumb img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}
.tsn-front-content {
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  line-height: 1.8;
}
.tsn-footer {
  margin-top: 60px;
  background: #020617;
  color: #cbd5e1;
}
.tsn-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  padding: 46px 0;
}
.tsn-footer h3,
.tsn-footer h4 {
  color: #fff;
  margin-top: 0;
}
.tsn-footer a {
  display: block;
  color: #cbd5e1;
  margin-bottom: 10px;
}
.tsn-footer a:hover {
  color: #86efac;
}
.tsn-social {
  display: flex;
  gap: 10px;
}
.tsn-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #172554;
  display: grid;
  place-items: center;
}
.tsn-copy {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
  color: #94a3b8;
}
.tramscore-wc-standings{
    display:grid;
    gap:22px;
}

.wc-group-box{
    background:#fff;
    border-radius:16px;
    padding:18px;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
}

.wc-group-box h3{
    font-size:20px;
    font-weight:800;
    margin:0 0 14px;
}

.wc-group-box table{
    width:100%;
    border-collapse:collapse;
}

.wc-group-box th,
.wc-group-box td{
    padding:10px 8px;
    border-bottom:1px solid #eee;
    font-size:14px;
    text-align:center;
}

.wc-group-box th{
    background:#f7f7f7;
    font-weight:800;
}

.wc-group-box .team{
    text-align:left;
    font-weight:700;
}

.wc-group-box .team img{
    width:22px;
    height:22px;
    object-fit:contain;
    margin-right:8px;
    vertical-align:middle;
}

.tramscore-wc-fixtures{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    border:1px solid #ececec;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
}

.wc-live-row{
    display:grid;
    grid-template-columns:62px 1fr 86px;
    align-items:center;
    gap:10px;
    padding:10px 12px;
    border-bottom:1px solid #f1f1f1;
    transition:.2s;
}

.wc-live-row:last-child{
    border-bottom:none;
}

.wc-live-row:hover{
    background:#fff7f0;
}

.wc-live-time{
    text-align:center;
    color:#ff6a00;
    line-height:1.2;
}

.wc-live-time strong{
    display:block;
    font-size:15px;
    font-weight:900;
}

.wc-live-time span{
    display:block;
    font-size:12px;
    color:#888;
    margin-top:2px;
}

.wc-live-teams{
    min-width:0;
}

.wc-team{
    font-size:13px;
    font-weight:700;
    color:#222;
    line-height:1.35;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.wc-vs{
    font-size:11px;
    color:#aaa;
    font-weight:700;
    line-height:1.1;
    margin:1px 0;
}

.wc-live-stage{
    font-size:11px;
    color:#777;
    text-align:right;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.wc-team{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    font-weight:700;
}

.wc-team img{
    width:22px;
    height:22px;
    object-fit:contain;
    flex-shrink:0;
}
a.custom-logo-link img {
    height: 60px;
    width: auto;
}
@media(max-width:480px){
    .wc-live-row{
        grid-template-columns:55px 1fr;
    }

    .wc-live-stage{
        grid-column:2;
        text-align:left;
        margin-top:-4px;
    }
}
@media (max-width: 900px) {
  .tsn-layout,
  .tsn-home-hero {
    grid-template-columns: 1fr;
  }
  .tsn-menu-toggle {
    display: block;
  }
  .tsn-menu {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  }
  .tsn-menu.is-open {
    display: block;
  }
  .tsn-menu-list {
    display: block;
  }
  .tsn-predict-grid {
    grid-template-columns: 1fr;
  }
  .tsn-score-line {
    grid-template-columns: 1fr;
  }
  .tsn-score-teams {
    grid-template-columns: 1fr 70px 1fr;
  }
  .tsn-footer-grid {
    grid-template-columns: 1fr;
  }
  .tsn-post-card {
    grid-template-columns: 1fr;
  }
  .tsn-home-hero h1 {
    font-size: 32px;
  }
}
