@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Lora:wght@100;300&display=swap');

:root {
  --primary: #FFFFFF;
  --accent: #75AADB;
  --highlight: #2E7D32;
  --text: #333333;
  --bg: #FFFFFF;
}

body.t2-body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Lora', serif;
  font-weight: 100;
  letter-spacing: 1px;
}

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

/* ── Nav ── */
.t2-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.95);
}

.t2-nav-logo {
  font-family: 'Lora', serif;
  font-weight: 100;
  font-size: 1.4rem;
}

.t2-nav-logo img { height: 36px; }

.t2-nav-links { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
.t2-nav-links a { font-size: 0.9rem; font-weight: 500; }
.t2-nav-links a:hover { color: var(--accent); }

.t2-hamburger { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; }

.t2-mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: #fff;
  padding: 20px 40px;
  z-index: 999;
}

.t2-mobile-menu.open { display: block; }
.t2-mobile-menu a { display: block; padding: 12px 0; font-weight: 500; }

/* ── Hero ── */
.t2-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  background-size: cover;
  background-position: center;
}

.t2-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.7);
}

.t2-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 680px;
}

.t2-hero-inner h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin: 0 0 20px;
}

.t2-hero-inner p {
  font-size: 1.05rem;
  opacity: 0.75;
  margin: 0 0 36px;
}

.t2-btn-outline {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 500;
  background: transparent;
  cursor: pointer;
}

.t2-btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* ── Sections ── */
.t2-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 40px;
}

.t2-section-title {
  font-size: 2rem;
  text-align: center;
  margin: 0 0 48px;
  color: var(--highlight);
}

.t2-text-card { text-align: center; }
.t2-text-card p { max-width: 560px; margin: 0 auto; opacity: 0.75; }

.t2-image-block {
  width: 100%;
  height: 45vh;
  min-height: 280px;
  background-size: cover;
  background-position: center;
}

/* ── contest_list + sidebar minimal ── */
.t2-body .t1-main,
.t2-body .body-wrapper,
.t2-body .home-page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 120px;
}

.t2-body .left-wrapper,
.t2-body .list-match-container.left-wrapper {
  margin-bottom: 24px;
  padding: 0;
}

.t2-body .left-container .title { color: var(--highlight) !important; font-family: 'Lora', serif; font-weight: 100; }

.t2-body .match-row {
  border-bottom: 1px solid #eee !important;
  box-shadow: none !important;
}

.t2-body .match-row:hover { color: var(--accent); background: transparent; }

.t2-body .match-time { color: var(--accent) !important; }
.t2-body .list-match-home { box-shadow: none; border: none; }
.t2-body .match_filter { box-shadow: none; }
.t2-body .match_filter_item.active a { background: var(--accent) !important; color: #fff !important; }

.t2-body .bt-view {
  border: 1px solid var(--accent) !important;
  background: transparent !important;
  color: var(--accent) !important;
  box-shadow: none !important;
}

.t2-body .bt-view.start { background: var(--accent) !important; color: #fff !important; }

.t2-body .load_more,
.t2-body .zb-area_btn.load_more {
  border: 1px solid var(--accent) !important;
  background: transparent !important;
  color: var(--accent) !important;
  box-shadow: none !important;
}

.t2-body .score-wrapper { color: var(--highlight) !important; }
.t2-body .page-content-title { color: var(--highlight); font-family: 'Lora', serif; font-weight: 100; margin-bottom: 24px; }
.t2-body .breadcrumb a { color: var(--accent); }
.t2-body #pages .current { color: var(--accent); }

.t2-news-item { display: block; padding: 20px 0; }
.t2-news-date { font-size: 0.8rem; opacity: 0.45; margin-bottom: 6px; }
.t2-news-title { font-family: 'Lora', serif; font-weight: 300; font-size: 1.15rem; }
.t2-news-item:hover { color: var(--accent); }

.t2-leagues { display: flex; flex-wrap: wrap; gap: 32px; justify-content: center; }
.t2-league-item { text-align: center; }
.t2-league-item img { width: 48px; height: 48px; object-fit: contain; }
.t2-league-item span { display: block; font-size: 0.8rem; opacity: 0.55; margin-top: 8px; }

/* ── Contact ── */
.t2-contact {
  text-align: center;
  padding: 120px 40px;
  background: #fafafa;
}

.t2-contact h2 { margin: 0 0 20px; color: var(--highlight); }
.t2-contact p { opacity: 0.55; margin: 0 0 6px; }

.t2-footer {
  text-align: center;
  padding: 40px;
  font-size: 0.8rem;
  opacity: 0.45;
  line-height: 2;
}

.t2-body #pages .current { color: var(--accent); }

/* ── Detail pages ── */
.t2-body .theme-detail { padding: 120px 40px; max-width: 900px; margin: 0 auto; }
.t2-body .theme-detail-title { font-family: 'Lora', serif; font-weight: 100; font-size: 1.75rem; color: var(--highlight); margin: 0 0 20px; }
.t2-body .theme-detail-meta { opacity: 0.55; margin: 0 0 40px; font-size: 0.9rem; }
.t2-body .theme-detail-meta a { color: var(--accent); }
.t2-body .theme-detail-label { font-family: 'Lora', serif; color: var(--highlight); margin: 0 0 16px; }
.t2-body .theme-detail-watch a { display: inline-block; padding: 14px 32px; border: 2px solid var(--accent); color: var(--accent); font-weight: 500; }
.t2-body .theme-detail-watch a:hover { background: var(--accent); color: #fff; }
.t2-body .theme-detail-note { opacity: 0.45; font-size: 0.85rem; margin: 20px 0 0; }
.t2-body .theme-detail-info { list-style: none; margin: 40px 0; padding: 0; line-height: 2.2; }
.t2-body .theme-detail-info a { color: var(--accent); }
.t2-body .theme-detail-nav { padding-top: 40px; line-height: 2.2; font-size: 0.9rem; }
.t2-body .theme-detail-nav a { color: var(--accent); }

.t2-body .theme-detail-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  margin-bottom: 40px;
  overflow: hidden;
}
.t2-body .theme-detail-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.t2-body .theme-detail-article {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.t2-body .theme-detail-article img { max-width: 100%; height: auto; margin: 16px 0; }
.t2-body .theme-detail-article p { margin: 0 0 20px; }
.t2-body .theme-detail-article a { color: var(--accent); }

/* ── Live detail page ── */
.t2-body .body-wrapper { background: transparent !important; }

.t2-body .theme-live-title {
  font-family: 'Lora', serif;
  font-weight: 100;
  font-size: 1.75rem;
  color: var(--highlight);
  margin: 24px 0 32px;
  text-align: center;
}

.t2-body .teams-info {
  background: #fafafa;
  border-color: rgba(117, 170, 219, 0.25);
  border-radius: 4px;
}

.t2-body .teams-info .item-info a { color: var(--accent); }
.t2-body .teams-info .match-info .item-match-info { color: var(--text); }
.t2-body .teams-info .match-info .item-match-info .status {
  background: var(--highlight);
  color: #fff;
}

.t2-body .server-share .list-server {
  align-items: center;
  background: #fafafa;
  border: 1px solid rgba(117, 170, 219, 0.25);
  border-radius: 4px;
  padding: 16px;
  flex-wrap: wrap;
  gap: 8px;
  margin-right: 0;
}

.t2-body .server-share .xhytit {
  color: var(--highlight);
  font-weight: 600;
  line-height: 44px;
  flex-shrink: 0;
}

.t2-body .server-share .detail-list-server .item-server {
  background: #fff;
  border: 1px solid rgba(117, 170, 219, 0.35);
  color: var(--text);
}

.t2-body .server-share .detail-list-server .item-server.active,
.t2-body .server-share .detail-list-server .item-server:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.t2-body .common-table-wrapper {
  background: #fafafa;
  border-color: rgba(117, 170, 219, 0.25);
  margin-top: 24px;
}

.t2-body .common-table-wrapper .txt-live-title,
.t2-body .common-table-wrapper .header-title {
  color: var(--highlight);
  margin: 0;
}

.t2-body .list-match-container .match-row {
  background: #fff;
  border-top-color: rgba(0, 0, 0, 0.06);
  color: var(--text);
}

.t2-body .list-match-container .match-row:hover {
  background: rgba(117, 170, 219, 0.08);
}

.t2-body .list-match-container .club-name,
.t2-body .list-match-container .league-name,
.t2-body .list-match-container .match-time {
  color: var(--text);
}

.t2-body .list-match-container .score-wrapper {
  color: var(--highlight);
  font-weight: 600;
}

.t2-body .list-match-container .bt-view {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 4px;
  padding: 4px 12px;
}

.t2-body .list-match-container .bt-view.start {
  background: var(--highlight);
  border-color: var(--highlight);
  color: #fff;
}

@media (max-width: 768px) {
  .t2-nav-links { display: none; }
  .t2-hamburger { display: block; }
  .t2-section { padding: 80px 20px; }
  .t2-body .home-page-wrapper, .t2-body .body-wrapper { padding: 0 20px 80px; }
}
