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

body {
  background: #0b0b0f;
  color: #f8fafc;
  font-family: Arial, sans-serif;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #111111;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 1000;
  gap: 12px;
}

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

.logo-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffd000, #ff7a00, #e11d48);
  color: white;
  font-weight: 900;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 22px rgba(255, 140, 0, 0.35);
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 900;
}

.hotts {
  color: #ffffff;
}

.news {
  color: #ef4444;
}

.menu-toggle {
  display: none;
  background: none;
  color: white;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 1rem;
}

main {
  padding: 20px;
}

.promo-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.promo-bar a {
  text-decoration: none;
  background: #15151c;
  color: #fff;
  border: 1px solid #2a2a35;
  padding: 12px 16px;
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.hero-slider {
  position: relative;
}

.hero-main,
.mini-card,
.card,
.page-hero {
  background: #15151c;
  border: 1px solid #22232d;
  border-radius: 20px;
  overflow: hidden;
}

.hero-main {
  display: none;
}

.hero-main.active {
  display: block;
}

.hero-image,
.card-image {
  background: linear-gradient(135deg, #2a2a35, #15151c);
  height: 280px;
}

.hero-image.alt {
  background: linear-gradient(135deg, #3a1c1c, #15151c);
}

.hero-content,
.card-content,
.page-hero {
  padding: 20px;
}

.hero-content h1,
.page-hero h1 {
  font-size: 2rem;
  margin: 10px 0;
  line-height: 1.2;
}

.hero-content p,
.card-content p,
.mini-card p,
.page-hero p {
  color: #cbd5e1;
  line-height: 1.6;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mini-card {
  padding: 20px;
  min-height: 160px;
}

.tag {
  display: inline-block;
  background: #e11d48;
  color: white;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-title h2 {
  font-size: 1.5rem;
}

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

.card-image {
  height: 190px;
}

.card-content h3 {
  margin: 10px 0;
  font-size: 1.1rem;
  line-height: 1.4;
}

.page-hero {
  margin-bottom: 24px;
}

.site-footer {
  margin-top: 40px;
  padding: 24px 20px;
  background: #111111;
  border-top: 1px solid #222;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}

.footer-links a {
  color: #e5e7eb;
  text-decoration: none;
}

.site-footer p {
  color: #94a3b8;
}

@media (max-width: 900px) {
  .hero,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #111111;
    padding-top: 10px;
  }

  .nav.show {
    display: flex;
  }

  .topbar {
    flex-wrap: wrap;
  }

  .logo-text {
    font-size: 1.5rem;
  }
}
