/* =========================
   RESET
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, sans-serif;
}

body {
  background: linear-gradient(135deg, #eaf9ff, #d7f3ff);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* =========================
   HERO LAYOUT
========================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 24px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* =========================
   IMAGE
========================= */
.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 880px;
  animation: float 4s ease-in-out infinite;
  user-select: none;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* =========================
   CONTENT
========================= */
.hero-content h1 {
  font-size: 64px;
  font-weight: 900;
  color: #ffb84d;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.tagline {
  font-size: 20px;
  color: #222;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 420px;
}

/* =========================
   BADGE
========================= */
.badge {
  display: inline-block;
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
}

/* =========================
   BUTTONS
========================= */
.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  transform: translateY(-4px);
}

/* Buy */
.primary {
  background: #ffb84d;
  color: #fff;
  box-shadow: 0 8px 20px rgba(255,184,77,.35);
}

/* TikTok */
.tiktok {
  background: #000;
  color: #fff;
}

/* X */
.x {
  background: #111;
  color: #fff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-group {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 44px;
  }
}


/* =========================
   SECTION 2 — VIDEOS
========================= */

.videos {
  padding: 120px 24px;
  background: #fff;
}

/* wrapper */
.videos-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* header */
.videos-header {
  margin-bottom: 60px;
}

/* title */
.section-title {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 28px;
}

/* profile banner */
.tiktok-profile img {
  width: 420px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
  transition: 0.25s;
}

.tiktok-profile:hover img {
  transform: translateY(-6px);
}

/* videos row */
.video-grid {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* video style */
.video-grid video {
  width: 280px;
  height: 520px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
  background: black;
  transition: 0.25s;
}

.video-grid video:hover {
  transform: translateY(-6px);
}

/* mobile */
@media (max-width: 900px) {
  .video-grid {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 40px;
  }
}

/* =========================
   SIMPLE FOOTER
========================= */

.footer {
  background: #111;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.footer h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer p {
  margin: 6px 0;
  color: #bbb;
  font-size: 14px;
}

/* links */
.footer a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}

.footer a:hover {
  opacity: 1;
}

/* =========================
   CA BOX (Hero)
========================= */

.ca-box {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #fff;
  border: 2px solid #eee;
  border-radius: 12px;

  padding: 8px 14px;
  cursor: pointer;

  font-family: monospace;
  font-size: 12px;

  transition: 0.2s;
}

.ca-box:hover {
  border-color: #ffb84d;
  transform: translateY(-2px);
}

.copy-label {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #ffb84d;
}

.ca-box {
  margin-top: 20px;
  margin-bottom: 32px;
}
