:root {
  --bg: #0b0e14;
  --panel: #101521;
  --panel-alt: #0e1320;
  --text: #e7eaf0;
  --muted: #a9b1c3;
  --brand: #5aa2ff;
  --brand-2: #7bdcfe;
  --card: #121826;
  --border: #1e2636;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  max-width: 450px;
  margin: 0 auto;
}
body{
  background-color: #f68084;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;

}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: saturate(130%) blur(8px);
  /*background: linear-gradient(to bottom, rgba(11,14,20,0.85), rgba(11,14,20,0.55));*/
  /*border-bottom: 1px solid var(--border);*/
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  font-weight: 800;
  font-size: 22px;
  color: white;
  text-decoration: none;
  letter-spacing: 0.3px;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 18px;
  font-size: 14px;
}

.site-nav a:hover {
  color: var(--text);
}

/* Hero */
.hero {
  padding: 56px 0 28px;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 12px;
}

.hero p {
  color: var(--muted);
  max-width: 900px;
  margin: 0;
}

/* Sections */
.content-section {
  padding: 26px 0 10px;
  /*background: var(--panel);*/
  /*border-top: 1px solid var(--border);*/
  /*border-bottom: 1px solid var(--border);*/
}

.content-section.alt {
  /*background: var(--panel-alt);*/
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: 18px;
  margin: 0;
}

.more {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.more:hover {
  color: var(--brand-2);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 700px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.0));
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.card-thumb {
  height: 120px;
  background: linear-gradient(135deg, rgba(90,162,255,0.18), rgba(123,220,254,0.15)),
              linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
              var(--card);
  border-bottom: 1px solid var(--border);
}
.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-title {
  font-size: 14px;
  margin: 10px 10px 12px;
  color: var(--text);
}

/* Footer */
.site-footer {
  background: #0b0f18;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}

.footer-inner {
  padding: 22px 0 36px;
  text-align: center;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 8px;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-text {
  color: var(--muted);
  margin: 8px 0 0;
}

.copyright {
  color: #7e8aa7;
  margin: 8px 0 0;
  font-size: 13px;
}

.jump-link{
  color: white;
  text-decoration: none;
}

.ad-box{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  overflow: hidden;
}