/* =============================================
   BLOCKCHAIN POKER — AFFILIATE LANDING PAGE
   Mobile-First Responsive Stylesheet
   ============================================= */

/* ---- CSS VARIABLES ---- */
:root {
  --primary: #1e90ff;
  --primary-dark: #0066cc;
  --orange: #ffa500;
  --orange-dark: #ff8c00;
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --bg-warm: #fdf8f0;
  --text: #1a1a2e;
  --text-muted: #555577;
  --border: rgba(30, 144, 255, 0.15);
  --card-bg: rgba(248, 249, 250, 0.8);
  --radius: 12px;
  --shadow-blue: 0 0 20px rgba(30,144,255,0.2), 0 0 40px rgba(30,144,255,0.1);
  --shadow-orange: 0 0 20px rgba(255,165,0,0.2), 0 0 40px rgba(255,165,0,0.1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(1.9rem, 6vw, 4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1rem, 2vw, 1.35rem); font-weight: 600; }

p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  color: var(--text-muted);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 480px) {
  .container { padding: 0 1.25rem; }
}

@media (min-width: 640px) {
  .container { padding: 0 2rem; }
}

/* ---- UTILITY ---- */
.text-blue  { color: var(--primary); }
.text-orange { color: var(--orange); }
.arrow { margin-left: 0.3rem; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #1e90ff, #0066cc);
  box-shadow: 0 4px 15px rgba(30,144,255,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 44px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(30,144,255,0.4), 0 10px 20px rgba(0,0,0,0.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #fff;
  background: linear-gradient(135deg, orange, #ff8c00);
  box-shadow: 0 4px 15px rgba(255,165,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 44px;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255,165,0,0.4), 0 10px 20px rgba(0,0,0,0.1);
}

/* ---- CARD ---- */
.card-glass {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .card-glass { padding: 1.75rem; }
}

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30,144,255,0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
  min-height: 70px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  gap: 1rem;
}

@media (min-width: 640px) {
  .nav-inner { min-height: 100px; }
}

@media (min-width: 900px) {
  .nav-inner { min-height: 140px; }
}

.nav-logo { display: flex; align-items: center; }

.logo-img {
  height: 50px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

@media (min-width: 480px) {
  .logo-img { height: 65px; max-width: 300px; }
}

@media (min-width: 640px) {
  .logo-img { height: 85px; max-width: 380px; }
}

@media (min-width: 900px) {
  .logo-img { height: 120px; max-width: 500px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { padding: 0.6rem 1.5rem; font-size: 0.9rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-top: 1px solid rgba(30,144,255,0.1);
  padding: 0.75rem 1rem 1rem;
}

.mobile-menu.open { display: flex; }

.mobile-link {
  padding: 0.9rem 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-link:hover { color: var(--primary); }
.mobile-cta {
  margin-top: 1rem;
  text-align: center;
  justify-content: center;
  width: 100%;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ---- HERO SECTION ---- */
.hero-section {
  min-height: auto;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f0f7ff 0%, #fff8f0 50%, #f0f7ff 100%);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .hero-section { padding: 2.5rem 0; }
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30,144,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,165,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; }

.hero-content {
  max-width: 680px;
}

.hero-title {
  margin-bottom: 1.25rem;
  color: var(--text);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-btn { padding: 0.85rem 2rem; font-size: 1rem; }

@media (min-width: 640px) {
  .hero-btn { padding: 0.9rem 2.5rem; font-size: 1.05rem; }
}

/* ---- VALUE BAR ---- */
.value-bar {
  background: #fff;
  border-top: 1px solid rgba(30,144,255,0.08);
  border-bottom: 1px solid rgba(30,144,255,0.08);
  padding: 2rem 0;
}

@media (min-width: 640px) {
  .value-bar { padding: 2.5rem 0; }
}

.value-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .value-bar-inner { gap: 1.5rem; }
}

@media (min-width: 900px) {
  .value-bar-inner { grid-template-columns: repeat(4, 1fr); }
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.value-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  line-height: 1.2;
}

.value-desc {
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  color: var(--text-muted);
  line-height: 1.4;
}

/* ---- ABOUT SECTION ---- */
.about-section {
  padding: 4rem 0;
  background: #fff;
}

@media (min-width: 640px) {
  .about-section { padding: 5rem 0; }
}

@media (min-width: 900px) {
  .about-section { padding: 6rem 0; }
}

.about-inner {
  max-width: 820px;
  margin: 0 auto;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .about-body { gap: 1.5rem; }
}

.about-para {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.8;
}

.about-tagline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--orange);
  font-style: italic;
  margin-top: 0.5rem;
}

/* ---- SECTION HEADER ---- */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .section-header { margin-bottom: 3rem; }
}

@media (min-width: 900px) {
  .section-header { margin-bottom: 3.5rem; }
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- HOW IT WORKS ---- */
.how-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
}

@media (min-width: 640px) {
  .how-section { padding: 5rem 0; }
}

@media (min-width: 900px) {
  .how-section { padding: 6rem 0; }
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 3rem;
  }
}

.step-card {
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .step-number { width: 48px; height: 48px; font-size: 1.2rem; margin-bottom: 1.25rem; }
}

.step-blue  { background: var(--primary); }
.step-orange { background: var(--orange); }

.step-title {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  margin-bottom: 0.65rem;
  color: var(--text);
}

.step-desc {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.badge-blue  { color: var(--primary); background: rgba(30,144,255,0.1); }
.badge-orange { color: var(--orange); background: rgba(255,165,0,0.1); }

.badge-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.section-cta {
  text-align: center;
  margin-top: 1rem;
}

/* ---- EARNINGS SECTION ---- */
.earnings-section {
  padding: 4rem 0;
  background: #fff;
}

@media (min-width: 640px) {
  .earnings-section { padding: 5rem 0; }
}

@media (min-width: 900px) {
  .earnings-section { padding: 6rem 0; }
}

.earnings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .earnings-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

.earnings-card {
  transition: transform 0.3s, box-shadow 0.3s;
}

.earnings-card-blue:hover  { box-shadow: var(--shadow-blue); transform: translateY(-4px); }
.earnings-card-orange:hover { box-shadow: var(--shadow-orange); transform: translateY(-4px); }

.earnings-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.earnings-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .earnings-icon-wrap { width: 48px; height: 48px; }
}

.icon-blue   { background: rgba(30,144,255,0.12); color: var(--primary); }
.icon-orange { background: rgba(255,165,0,0.12); color: var(--orange); }

.earnings-icon { width: 24px; height: 24px; }
.why-icon      { width: 22px; height: 22px; }

.earnings-title {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text);
}

.earnings-desc {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.earnings-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.earnings-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bullet-blue   { background: var(--primary); }
.bullet-orange { background: var(--orange); }

/* ---- WHY JOIN SECTION ---- */
.why-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #fdf8f0 0%, #f8faff 100%);
}

@media (min-width: 640px) {
  .why-section { padding: 5rem 0; }
}

@media (min-width: 900px) {
  .why-section { padding: 6rem 0; }
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 560px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .why-grid { gap: 2rem; }
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.why-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

@media (min-width: 640px) {
  .why-icon-wrap { width: 44px; height: 44px; }
}

.why-title {
  font-size: clamp(1rem, 2vw, 1.1rem);
  margin-bottom: 0.4rem;
  color: var(--text);
}

.why-desc { font-size: 0.95rem; }

/* ---- CTA SECTION ---- */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f0f7ff 0%, #fff8f0 50%, #f0f7ff 100%);
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .cta-section { padding: 5.5rem 0; }
}

@media (min-width: 900px) {
  .cta-section { padding: 7rem 0; }
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(30,144,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  margin-bottom: 1.25rem;
  color: var(--text);
}

.cta-desc {
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.cta-btn { padding: 0.85rem 2rem; font-size: 1rem; }

@media (min-width: 640px) {
  .cta-btn { padding: 0.9rem 2.5rem; font-size: 1.05rem; }
}

/* ---- FOOTER ---- */
.footer {
  background: #fff;
  border-top: 1px solid rgba(30,144,255,0.08);
  padding: 2.5rem 0 1.75rem;
}

@media (min-width: 640px) {
  .footer { padding: 3rem 0 2rem; }
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .footer-logo-img { height: 70px; max-width: 300px; }
}

@media (min-width: 640px) {
  .footer-logo-img { height: 90px; max-width: 380px; }
}

@media (min-width: 900px) {
  .footer-logo-img { height: 120px; max-width: 500px; }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}

@media (min-width: 480px) {
  .footer-links { gap: 2rem; }
}

.footer-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-link:hover { color: var(--primary); }

.footer-copy {
  font-size: 0.82rem;
  color: #999;
  line-height: 1.6;
  max-width: 600px;
  padding: 0 0.5rem;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in-up.delay-1 { animation-delay: 0.1s; }
.fade-in-up.delay-2 { animation-delay: 0.2s; }
.fade-in-up.delay-3 { animation-delay: 0.3s; }
.fade-in-up.delay-4 { animation-delay: 0.4s; }
.fade-in-up.delay-5 { animation-delay: 0.5s; }

/* Intersection observer driven reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   TWITTER / X FEED SECTION
   ============================================= */
.twitter-feed-section {
  padding: 3.5rem 0 3rem;
  background: linear-gradient(180deg, #0d1117 0%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .twitter-feed-section { padding: 5rem 0 4rem; }
}

.twitter-feed-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30,144,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.twitter-feed-section .section-title {
  color: #f1f5f9;
}

.twitter-feed-section .section-sub {
  color: #94a3b8;
}

/* Follow button */
.twitter-follow-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.btn-twitter {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: #000;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 480px) {
  .btn-twitter { padding: 0.7rem 1.75rem; font-size: 0.95rem; }
}

.btn-twitter:hover {
  background: #1a1a1a;
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.twitter-icon-btn {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* =============================================
   TWEET CARDS
   ============================================= */
.tweet-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 2rem auto 0;
}

@media (min-width: 640px) {
  .tweet-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2.5rem auto 0;
  }
}

.tweet-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.2rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 480px) {
  .tweet-card { padding: 1.4rem 1.5rem; gap: 0.85rem; }
}

.tweet-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(30,144,255,0.4);
  transform: translateY(-3px);
}

.tweet-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

@media (min-width: 480px) {
  .tweet-header { gap: 0.75rem; }
}

.tweet-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.1);
}

@media (min-width: 480px) {
  .tweet-avatar { width: 44px; height: 44px; }
}

.tweet-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.tweet-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #f1f5f9;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 480px) {
  .tweet-name { font-size: 0.95rem; }
}

.tweet-handle {
  font-size: 0.78rem;
  color: #64748b;
}

@media (min-width: 480px) {
  .tweet-handle { font-size: 0.82rem; }
}

.tweet-x-logo {
  color: #fff;
  opacity: 0.7;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
  padding: 4px;
  min-width: 32px;
  min-height: 32px;
  justify-content: center;
}

.tweet-x-logo:hover { opacity: 1; }

.tweet-text {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
  flex: 1;
  word-break: break-word;
}

@media (min-width: 480px) {
  .tweet-text { font-size: 0.97rem; }
}

.tweet-link {
  color: #1e90ff;
  text-decoration: none;
}

.tweet-link:hover { text-decoration: underline; }

.tweet-media {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  max-height: 200px;
}

@media (min-width: 480px) {
  .tweet-media { max-height: 220px; }
}

.tweet-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}

@media (min-width: 480px) {
  .tweet-footer { gap: 1rem; flex-wrap: nowrap; }
}

.tweet-stat {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: #64748b;
}

@media (min-width: 480px) {
  .tweet-stat { font-size: 0.82rem; }
}

.tweet-stat svg { flex-shrink: 0; }

.tweet-date {
  margin-left: auto;
  font-size: 0.75rem;
  color: #475569;
  white-space: nowrap;
}

@media (min-width: 480px) {
  .tweet-date { font-size: 0.8rem; }
}

/* Loading skeleton */
.tweet-skeleton {
  pointer-events: none;
  animation: skeletonPulse 1.4s ease-in-out infinite;
}

.sk-line {
  height: 14px;
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  margin-bottom: 0.6rem;
}

.sk-line-short { width: 40%; }
.sk-line-med   { width: 65%; }

@keyframes skeletonPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* =============================================
   DUAL BUTTON ROWS (hero + cta)
   ============================================= */
.hero-btns,
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

@media (min-width: 480px) {
  .hero-btns, .cta-btns { gap: 1rem; }
}

.cta-btns {
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
}

/* Stack buttons on small phones */
@media (max-width: 400px) {
  .hero-btns,
  .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-btns .hero-btn,
  .cta-btns .cta-btn,
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary,
  .cta-btns .btn-primary,
  .cta-btns .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
