/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Roboto, system-ui, sans-serif;
  background-color: #0a0c12;
  color: #eaeef2;
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  color: #ff4444;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #ff7777;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.highlight {
  color: #ff4444;
}

/* ===== HEADER & NAV ===== */
.site-header {
  background: #0f1219;
  border-bottom: 2px solid #ff4444;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.6rem;
  font-weight: 700;
  color: #eaeef2;
  letter-spacing: -0.5px;
}

.logo .highlight {
  color: #ff4444;
}

.logo-icon {
  font-size: 1.8rem;
  margin-right: 6px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #eaeef2;
  border-radius: 2px;
  transition: 0.3s;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  color: #c8ced6;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
}

.nav-links a.active,
.nav-links a:hover {
  color: #ff4444;
  border-bottom-color: #ff4444;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 60px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.hero-text h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-tagline {
  font-size: 1.2rem;
  color: #ff4444;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-text p {
  margin-bottom: 18px;
  color: #cfd5dd;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #2a2f3a;
}

.img-caption {
  font-size: 0.9rem;
  color: #8892a0;
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

/* ===== META SECTION ===== */
.meta {
  padding: 50px 0 40px;
  border-top: 1px solid #1e232c;
}

.section-intro {
  margin-bottom: 30px;
  color: #bcc3cd;
  font-size: 1.05rem;
}

.tier-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 40px;
}

.tier-table-wrap {
  overflow-x: auto;
}

.tier-table {
  width: 100%;
  border-collapse: collapse;
  background: #13181f;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

.tier-table th,
.tier-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #262d38;
}

.tier-table th {
  background: #1c232e;
  color: #ff4444;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.tier-table td {
  color: #d0d7e0;
}

.tier-s td:first-child {
  background: #4a1a1a;
  color: #ff6b6b;
  font-weight: bold;
}
.tier-a td:first-child {
  background: #2a3a4a;
  color: #4fc3f7;
  font-weight: bold;
}
.tier-b td:first-child {
  background: #3a3a2a;
  color: #ffd54f;
  font-weight: bold;
}
.tier-c td:first-child {
  background: #2a2a2a;
  color: #9e9e9e;
  font-weight: bold;
}

.tier-analysis h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: #ff4444;
}

.tier-analysis p {
  margin-bottom: 16px;
  color: #cbd2dc;
}

.tier-image {
  margin-top: 20px;
}

.tier-image img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #2a2f3a;
}

/* ===== PROS SECTION ===== */
.pros {
  padding: 50px 0 40px;
  border-top: 1px solid #1e232c;
}

.pro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.pro-card {
  background: #13181f;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #262d38;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.pro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 68, 68, 0.15);
}

.pro-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.pro-info {
  padding: 20px;
}

.pro-info h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
  color: #ff4444;
}

.pro-team {
  font-size: 0.95rem;
  color: #aab2bd;
  margin-bottom: 8px;
}

.pro-achievements {
  font-size: 0.9rem;
  color: #ffd54f;
  margin-bottom: 12px;
}

.pro-info p:last-child {
  color: #ccd3dd;
  line-height: 1.5;
}

.pro-team-image {
  margin-top: 20px;
}

.pro-team-image img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #2a2f3a;
}

/* ===== TOURNAMENTS ===== */
.tournaments {
  padding: 50px 0 40px;
  border-top: 1px solid #1e232c;
}

.tournament-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.tournament-results h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: #ff4444;
}

.tournament-results p {
  margin-bottom: 16px;
  color: #cbd2dc;
}

.tournament-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}

.tournament-list li {
  padding: 6px 0;
  border-bottom: 1px solid #1e232c;
  color: #d0d7e0;
}

.tournament-highlights {
  background: #13181f;
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid #262d38;
}

.tournament-highlights h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: #ff4444;
}

.tournament-highlights ul {
  list-style: none;
  padding: 0;
}

.tournament-highlights li {
  padding: 10px 0;
  border-bottom: 1px solid #1e232c;
  font-size: 1rem;
}

.tournament-highlights li:last-child {
  border-bottom: none;
}

/* ===== TIPS ===== */
.tips {
  padding: 50px 0 40px;
  border-top: 1px solid #1e232c;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.tip-card {
  background: #13181f;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #ff4444;
}

.tip-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ff4444;
}

.tip-card p {
  color: #ccd3dd;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0f1219;
  border-top: 2px solid #ff4444;
  padding: 30px 0;
  margin-top: 20px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-brand .logo-icon {
  font-size: 1.4rem;
}

.footer-brand p {
  margin: 4px 0;
}

.footer-tagline {
  color: #8892a0;
}

.footer-location {
  color: #6b7a8a;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #b0b8c4;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ff4444;
}

.footer-copy {
  color: #6b7a8a;
  font-size: 0.9rem;
  width: 100%;
  text-align: center;
  margin-top: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-grid,
  .tier-grid,
  .tournament-content {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    background: #0f1219;
    padding: 20px 0;
    border-top: 1px solid #1e232c;
  }

  .nav-links.open {
    display: block;
  }

  .nav-links ul {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .pro-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===== TERMS & PRIVACY PAGES ===== */
.page-content {
  padding: 40px 0 60px;
}

.page-content h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #ff4444;
  border-bottom: 2px solid #1e232c;
  padding-bottom: 16px;
}

.page-content h2 {
  font-size: 1.8rem;
  margin: 30px 0 14px;
  color: #eaeef2;
}

.page-content h3 {
  font-size: 1.3rem;
  margin: 24px 0 10px;
  color: #ff4444;
}

.page-content p {
  margin-bottom: 16px;
  color: #cbd2dc;
}

.page-content ul {
  margin: 12px 0 20px 24px;
  color: #cbd2dc;
}

.page-content ul li {
  margin-bottom: 6px;
}

.page-content .back-link {
  display: inline-block;
  margin-top: 30px;
  color: #ff4444;
  font-weight: 500;
}

.page-content .back-link:hover {
  text-decoration: underline;
}
