/* ===================================================== VARIABLES ===================================================== */
:root {
  --purple-primary: #9741EB;
  --purple-deep: #5A00B2;
  --purple-dark: #542681;
  --cyan-primary: #14b8a6;
  --cyan-light: #5eead4;
  --bg-base: #0a0a0f;
  --bg-card: rgba(18, 20, 28, 0.6);
  --border-glow: rgba(151, 65, 235, 0.3);
}

/* ===================================================== GLOBAL ===================================================== */
body {
  padding-top: 0;
}

.landing-main {
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(151, 65, 235, 0.15), transparent 50%),
              radial-gradient(ellipse 60% 40% at 80% 60%, rgba(90, 0, 178, 0.1), transparent),
              #0a0a0f;
  min-height: 100vh;
}

main {
  padding-bottom: 0;
  margin-bottom: 0;
}

#footer {
  margin-top: 0;
}

/* ===================================================== HERO ===================================================== */
.nav:not(.scrolled) {
  background: transparent !important;
  backdrop-filter: none;
  border-bottom: none;
}

.nav.scrolled {
  background: rgba(10, 10, 20, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
  .nav:not(.scrolled) {
    background: var(--scrolled-nav-bg) !important;
    backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  }
}

.hero-new {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(92px, 12vh, 132px) 24px clamp(48px, 8vh, 84px);
  box-sizing: border-box;
  margin: 0;
  background: #050507;
  background: -webkit-linear-gradient(to top, #050507, #111216);
  background: linear-gradient(to top, #050507, #111216);
}

#bouncyBall,
.hero-bouncy-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content-new {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 88px 24px 0;
}

.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  padding-bottom: 0.2em;
  overflow: visible;
}

.title-line {
  display: block;
  opacity: 0;
  padding-bottom: 0.15em;
  will-change: transform;
  animation: titleSlideUp 0.8s ease-out forwards;
}

.title-line:nth-child(2) {
  animation-delay: 0.2s;
}

.title-line.title-gradient {
  white-space: nowrap;
}

@keyframes titleSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.title-gradient {
  background: linear-gradient(135deg, #9741EB 0%, #5A00B2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 24px);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
  font-weight: 400;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.4s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-cta {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.6s forwards;
}

@media (min-width: 769px) {
  .hero-new {
    min-height: 84svh;
    padding-top: clamp(74px, 9.2vh, 108px);
  }

  .hero-content-new {
    padding-top: 64px;
  }

  .hero-cta {
    gap: 38px;
  }
}

@media (min-width: 769px) and (max-width: 1499px) {
  .hero-new {
    padding-top: clamp(72px, 8.8vh, 98px);
    padding-bottom: clamp(40px, 6vh, 64px);
  }

}

@media (min-width: 769px) and (max-height: 860px) {
  .hero-new {
    min-height: clamp(560px, 85svh, 670px);
    padding-top: 74px;
    padding-bottom: 44px;
  }

  .hero-content-new {
    padding-top: 50px;
  }

  .hero-cta {
    gap: 30px;
  }

  .cta-inner {
    padding: 11px 18px 11px 11px;
  }
}

.cta-pill {
  display: inline-block;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-pill.primary {
  background: linear-gradient(135deg, #9741EB, #5A00B2);
  border-radius: 100px;
  padding: 3px;
  box-shadow: 0 0 30px rgba(151, 65, 235, 0.3);
}

.cta-pill.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(151, 65, 235, 0.5);
}

.cta-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 10, 15, 0.9);
  border-radius: 100px;
  padding: 12px 14px 12px 12px;
}

.cta-arrow {
  font-size: 18px;
  color: white;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-pill:hover .cta-arrow {
  transform: translateX(3px) rotate(-45deg);
}

.cta-pill:hover .cta-circle {
  box-shadow: 0 0 20px rgba(151, 65, 235, 0.6),
              0 0 40px rgba(151, 65, 235, 0.4);
}

.cta-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9741EB, #5A00B2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: box-shadow 0.4s ease;
}

.cta-text {
  font-size: 15px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}

/* ===================================================== PREVIEW - NEW DESIGN ===================================================== */
.platform-preview {
  max-width: 1400px;
  margin: 80px auto 60px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.preview-layout-new {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.preview-typing-left,
.preview-carousel-container,
.preview-carousel-box,
.active-card,
.news-item {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.preview-typing-left {
  max-width: 600px;
}

.typing-wrapper-large {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 100px;
  margin-bottom: 20px;
  word-wrap: break-word;
}

.typing-text {
  display: inline;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.typing-cursor {
  color: #9741EB;
  animation: blink 1s infinite;
  font-weight: 300;
}

@keyframes blink {
  50% { opacity: 0; }
}

.typing-subtext {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  line-height: 1.6;
}

.typing-subtext.visible {
  opacity: 1;
}

.preview-carousel-container {
  perspective: 1200px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.preview-carousel-box {
  background: linear-gradient(135deg, rgba(18, 20, 28, 0.85), rgba(12, 14, 20, 0.85));
  backdrop-filter: blur(30px);
  border: 1px solid rgba(151, 65, 235, 0.25);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 0 0 1px rgba(151, 65, 235, 0.15), 0 30px 70px rgba(0, 0, 0, 0.6);
  width: 100%;
  max-width: 620px;
}

/* Header with Dots */
.preview-carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 0;
  border-bottom: none;
}

.preview-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  font-weight: 700;
}

/* Dots Indicator */
.preview-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background: var(--purple-primary);
  box-shadow: 0 0 12px rgba(151, 65, 235, 0.45);
}

/* Tab Pills Row */
.preview-tabs-row {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(151, 65, 235, 0.15);
}

.tab-description-pill {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.tab-pill-btn {
  padding: 8px 20px;
  border: 1px solid rgba(151, 65, 235, 0.3);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab-pill-btn.active {
  background: var(--purple-deep);
  color: #fff;
  border-color: var(--purple-primary);
  box-shadow: 0 0 20px rgba(151, 65, 235, 0.45);
}

.tab-pill-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: rgba(151, 65, 235, 0.5);
}

/* Mini Description */
.preview-mini-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  padding-left: 4px;
}

/* Data Container - Clean List Design */
.preview-data-container {
  padding: 0;
}

/* Stats Grid - Simple Clean Design */
.stats-grid-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-card-preview {
  text-align: center;
  padding: 20px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(151, 65, 235, 0.12);
  transition: all 0.3s ease;
}

.stat-card-preview:hover {
  background: rgba(151, 65, 235, 0.08);
  transform: translateY(-2px);
}

.stat-value-preview {
  font-size: 28px;
  font-weight: 900;
  color: var(--purple-primary);
  margin-bottom: 6px;
}

.stat-label-preview {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

/* Tournaments List - Clean Design */
.tournaments-list-preview {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tournament-item-preview {
  padding: 16px 0;
  background: transparent;
  border-radius: 0;
  border-left: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.tournament-item-preview:last-child {
  border-bottom: none;
}

.tournament-item-preview:hover {
  background: rgba(151, 65, 235, 0.05);
  padding-left: 12px;
  margin-left: -12px;
  margin-right: -12px;
  padding-right: 12px;
}

.tournament-info-preview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  gap: 12px;
}

.tournament-name-preview {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex: 1;
}

.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.status-ongoing {
  background: rgba(34, 197, 94, 0.18);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.status-upcoming {
  background: rgba(151, 65, 235, 0.18);
  color: #c4b5fd;
  border: 1px solid rgba(151, 65, 235, 0.35);
}

.status-completed {
  background: rgba(148, 163, 184, 0.15);
  color: #9ca3af;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.tournament-winner-preview {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 4px;
}

/* ===================================================== ACTIVE TOURNAMENT ===================================================== */
.active-tournament-section {
  padding: 80px 24px;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(151, 65, 235, 0.08), transparent);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(151, 65, 235, 0.15);
  border: 1px solid rgba(151, 65, 235, 0.3);
  color: var(--purple-primary);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.75rem;
  box-shadow: none;
}

.section-badge.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: none;
}

.live-pulse {
  display: inline-block;
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: liveDotBlink 1s infinite;
}

.live-pulse::after {
  display: none;
}

@keyframes livePulse {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(2.6); opacity: 0; }
}

@keyframes liveDotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.active-tournament-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 28px;
}

.active-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(151, 65, 235, 0.3);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.active-card:hover {
  transform: translateY(-4px);
  border-color: rgba(151, 65, 235, 0.5);
  box-shadow: 0 0 30px rgba(151, 65, 235, 0.2);
}

.active-card-header {
  padding: 20px;
  border-bottom: 1px solid rgba(151, 65, 235, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.active-card-header h3 {
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.active-tournament-name,
.active-group-name {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-align: right;
  flex: 1;
  min-width: 150px;
}

.active-card-body {
  padding: 20px;
  max-height: 280px;
  overflow-y: auto;
}

.mvp-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.mvp-row:hover {
  background: rgba(151, 65, 235, 0.1);
  transform: translateX(4px);
}

.rank-number {
  font-size: 16px;
  font-weight: 700;
  color: var(--purple-primary);
}

.player-name {
  font-size: 14px;
  font-weight: 600;
}

.mvp-points {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.standings-table-header {
  display: grid;
  grid-template-columns: 2.2fr 0.6fr 0.6fr 0.6fr 0.7fr 0.8fr;
  gap: 6px;
  padding: 10px 12px;
  background: rgba(151, 65, 235, 0.12);
  border-radius: 8px 8px 0 0;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.standings-table-row {
  display: grid;
  grid-template-columns: 2.2fr 0.6fr 0.6fr 0.6fr 0.7fr 0.8fr;
  gap: 6px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  transition: all 0.3s ease;
  align-items: center;
}

.standings-table-row:hover {
  background: rgba(151, 65, 235, 0.1);
  transform: translateX(4px);
}

.team-cell {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  overflow: hidden;
}

.rank-badge-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #9741EB, #5A00B2);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.total-points {
  font-weight: 700;
  color: var(--purple-primary);
}

.active-card-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(151, 65, 235, 0.2);
}

.view-tournament-btn {
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, #9741EB, #5A00B2);
  color: white;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-tournament-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(151, 65, 235, 0.5);
}

/* ===================================================== NEWS ===================================================== */
.news-section {
  padding: 80px 24px;
}

.news-timeline {
  max-width: 900px;
  margin: 0 auto 48px;
}

.news-item {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(151, 65, 235, 0.2);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.news-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--purple-primary), var(--purple-deep));
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.news-item:hover {
  transform: translateX(8px);
  border-color: rgba(151, 65, 235, 0.4);
}

.news-item:hover::before {
  transform: scaleY(1);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.news-category {
  padding: 4px 12px;
  background: rgba(151, 65, 235, 0.2);
  border-radius: 100px;
  color: var(--purple-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-time {
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-summary {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ===================================================== MOTIVATION ===================================================== */
.motivation-section {
  padding: 80px 24px 60px;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(151, 65, 235, 0.15), transparent);
}

.motivation-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.motivation-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(151, 65, 235, 0.15);
  border: 1px solid rgba(151, 65, 235, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}

.motivation-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.gradient-text-blink {
  background: linear-gradient(135deg, #9741EB 0%, #5A00B2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientBlink 3s ease-in-out infinite;
}

@keyframes gradientBlink {
  0%, 100% { opacity: 1; filter: brightness(1); }
  50% { opacity: 0.7; filter: brightness(1.3); }
}

.motivation-text {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.motivation-stats-inline {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.inline-stat-number {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--purple-primary);
  margin-bottom: 6px;
}

.inline-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ===================================================== SHOWCASE ===================================================== */
.showcase-container {
  max-width: 1400px;
  margin: 0 auto;
}

.showcase-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(151, 65, 235, 0.15);
  border: 1px solid rgba(151, 65, 235, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.showcase-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.showcase-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple-primary);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.showcase-link:hover {
  color: var(--purple-deep);
  gap: 12px;
}

.loading-shimmer,
.loading-state {
  padding: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

/* ===================================================== RESPONSIVE ===================================================== */
@media (max-width: 1024px) {
  .preview-layout-new {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .active-tournament-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-new {
    min-height: 78svh;
    padding: 76px 20px 16px !important;
    align-items: center !important;
  }

  .hero-content-new {
    max-width: 480px;
    padding: 0;
  }

  .hero-title {
    font-size: clamp(34px, 9.6vw, 50px);
    line-height: 1.04;
    margin-bottom: 18px;
  }

  /* Mobile CTA - Smaller size */
  .cta-inner {
    padding: 10px 10px 10px 10px;
    gap: 7px;
  }

  .cta-circle {
    width: 32px;
    height: 32px;
  }

  .cta-arrow {
    font-size: 16px;
  }

  .cta-text {
    font-size: 14px;
    margin-left: 0;
    white-space: nowrap;
  }

  .platform-preview,
  .active-tournament-section,
  .news-section,
  .motivation-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .platform-preview {
    margin: 60px auto 40px;
  }

  .typing-wrapper-large {
    font-size: 34px;
    min-height: 70px;
    line-height: 1.3;
  }

  .typing-subtext {
    font-size: 17px;
  }

  .preview-carousel-box {
    padding: 20px;
    border-radius: 16px;
    max-width: 100%;
  }

  .tab-description-pill {
    flex-wrap: wrap;
    gap: 8px;
  }

  .tab-pill-btn {
    flex: 1;
    min-width: 120px;
    padding: 8px 16px;
    font-size: 12px;
  }

  .stats-grid-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .stat-card-preview {
    padding: 18px 10px;
  }

  .stat-value-preview {
    font-size: 24px;
  }

  .stat-label-preview {
    font-size: 10px;
  }

  .hero-cta {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .cta-pill {
    width: auto;
    max-width: none;
    flex: 0 1 auto;
  }

  .active-tournament-grid {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .active-card-body {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .active-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .active-tournament-name,
  .active-group-name {
    text-align: left;
    min-width: 100%;
  }

  .standings-table-header,
  .standings-table-row {
    grid-template-columns: 1.8fr 0.5fr 0.5fr 0.5fr 0.6fr 0.7fr;
    gap: 4px;
    padding: 10px 8px;
    font-size: 11px;
  }

  .standings-table-header {
    font-size: 9px;
  }

  .rank-badge-small {
    min-width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .news-item {
    padding: 20px;
  }

  .news-title {
    font-size: 18px;
  }

  .motivation-section {
    padding: 60px 20px 40px;
  }
}

@media (max-width: 480px) {
  .hero-new {
    min-height: 72svh;
    padding: 72px 16px 12px !important;
  }

  .hero-content-new {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(30px, 11.8vw, 38px);
    line-height: 1.03;
    margin-bottom: 16px;
  }

  /* Even smaller CTA on very small screens */
  .cta-inner {
    padding: 8px 8px 8px 8px;
    gap: 5px;
  }

  .cta-circle {
    width: 28px;
    height: 28px;
  }

  .cta-arrow {
    font-size: 14px;
  }

  .cta-text {
    font-size: 12px;
  }

  .hero-cta {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .cta-pill {
    width: auto;
    max-width: none;
    flex: 0 1 auto;
  }

  .cta-inner {
    justify-content: center;
  }

  .typing-wrapper-large {
    font-size: 30px;
    min-height: 60px;
  }

  .typing-subtext {
    font-size: 15px;
  }

  .preview-carousel-box {
    padding: 16px;
  }

  .showcase-container,
  .news-timeline {
    max-width: 100%;
  }

  .active-card-header,
  .active-card-body,
  .active-card-footer,
  .news-item {
    padding-left: 16px;
    padding-right: 16px;
  }

  .tab-pill-btn {
    padding: 7px 14px;
    font-size: 11px;
  }

  .stats-grid-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .stat-card-preview {
    padding: 16px 10px;
  }

  .stat-value-preview {
    font-size: 22px;
  }

  .standings-table-header,
  .standings-table-row {
    grid-template-columns: 1.5fr 0.4fr 0.4fr 0.4fr 0.5fr 0.6fr;
    gap: 3px;
    padding: 8px 6px;
    font-size: 10px;
  }

  .standings-table-header {
    font-size: 8px;
  }

  .rank-badge-small {
    min-width: 18px;
    height: 18px;
    font-size: 9px;
  }

  .team-cell {
    gap: 6px;
    font-size: 11px;
  }

  .motivation-section {
    padding: 50px 16px 30px;
  }

  .motivation-stats-inline {
    gap: 32px;
  }
}

/* MOBILE LAYOUT FOR CTAS */
@media (max-width: 768px) {
  .hero-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .cta-pill {
    width: auto;
    max-width: none;
    flex: 0 1 auto;
  }

  /* keep normal circle */
  .cta-circle {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #9741EB, #5A00B2);
  }

  /* ❗ hide the comet / oval glow behind the circle */
  .cta-circle::before,
  .cta-circle::after {
    display: none !important;
    content: none !important;
  }

  /* simple hover, no rotation */
  .cta-pill:hover .cta-arrow {
    transform: translateX(3px);
  }

  .cta-pill.primary:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .cta-pill {
    max-width: none;
  }
}

@media (min-width: 1500px) {
  .hero-new {
    min-height: 100svh;
    padding-inline: clamp(48px, 6vw, 96px);
    padding-top: clamp(84px, 9vh, 118px);
    padding-bottom: clamp(56px, 7vh, 92px);
  }

  .hero-content-new {
    max-width: 1120px;
    padding-top: 82px;
  }

  .hero-title {
    font-size: clamp(78px, 5.9vw, 124px);
    margin-bottom: 40px;
  }

  .cta-inner {
    padding: 15px 20px 15px 15px;
    gap: 13px;
  }

  .cta-circle {
    width: 42px;
    height: 42px;
  }

  .cta-text {
    font-size: 17px;
  }

  .hero-cta {
    gap: 42px;
  }

  .platform-preview,
  .showcase-container {
    max-width: 1600px;
  }

  .platform-preview {
    margin-top: 96px;
  }

  .preview-layout-new {
    grid-template-columns: minmax(0, 1fr) minmax(720px, 1.15fr);
    gap: 84px;
  }

  .preview-typing-left {
    max-width: 720px;
  }

  .preview-carousel-box {
    max-width: 720px;
  }

  .news-timeline {
    max-width: 1180px;
  }

  .motivation-container {
    max-width: 1240px;
  }

  .motivation-text {
    max-width: 980px;
  }
}
