:root {
  --bg1: #f8e6d3;
  --bg2: #f6c99d;
  --accent: #f3994a;
  --accent-dark: #c86b25;
  --brown: #5b3b25;
}

/* BASE */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: linear-gradient(160deg, var(--bg1), var(--bg2));
  margin: 0;
  text-align: center;
  color: #2a1a12;
  overflow-x: hidden;
  animation: bgShift 8s infinite alternate ease-in-out;
}

@keyframes bgShift {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 20px;
}

/* HEADER */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.tag {
  background: rgba(255,255,255,0.8);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.follow-btn {
  font-size: 12px;
  text-decoration: none;
  color: var(--accent-dark);
  border-bottom: 1px dashed rgba(200, 107, 37, 0.6);
}

/* HERO */

.hero {
  margin-top: 60px;
  margin-bottom: 40px;
}

.title {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 800;
  margin-bottom: 10px;
}

.title span {
  color: var(--accent-dark);
}

.subtitle {
  color: #6b5444;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 20px;
}

.meme-label {
  display: inline-block;
  margin-top: 18px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  font-size: 12px;
  color: var(--accent-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  animation: fadeIn 2s ease-out;
}

/* 🔁 TICKER */

.ticker {
  width: 100%;
  overflow: hidden;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.6);
  padding: 10px 0;
  margin-top: 20px;
  margin-bottom: 40px;
}

.ticker-content {
  display: inline-block;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-dark);
  animation: scrollText 25s linear infinite;
}

@keyframes scrollText {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* INFO */

.info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.info-box {
  background: rgba(255,255,255,0.85);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}

.info-box:hover {
  transform: translateY(-4px);
}

.info-box h3 {
  color: var(--accent-dark);
  font-size: 16px;
  margin-bottom: 6px;
}

.info-box p {
  font-size: 13px;
  color: #6b5444;
}

/* FOOTER */

footer {
  font-size: 12px;
  color: #6b5444;
  margin-top: 60px;
}
