/* ============================================================
   STR – Six Thirty Records | Global Stylesheet
   ============================================================
   Table of Contents:
   1. CSS Variables & Reset
   2. Base & Typography
   3. Navigation / Header
   4. Hamburger Menu (Mobile)
   5. Hero Section (Home)
   6. Animated Background Effects
   7. Game Cards
   8. About Page
   9. Team Cards
   10. V4 Page
   11. Footer
   12. Utility Classes & Animations
   13. Responsive Breakpoints
   ============================================================ */

/* ── 1. CSS Variables & Reset ─────────────────────────── */
:root {
  --bg-primary:   #080808;
  --bg-secondary: #101010;
  --bg-card:      #141414;
  --bg-card-hover:#1a1a1a;

  --accent:       #c423f5;       /* warm gold – "record" feel  */
  --accent-dim:   #c40e97;
  --accent-glow:  rgba(168, 35, 245, 0.25);
  --accent-2:     #FF4D4D;       /* hot-red for badges/alerts  */

  --text-primary: #FFFFFF;
  --text-secondary:#A0A0A0;
  --text-muted:   #555555;

  --border:       rgba(255,255,255,0.07);
  --border-accent:rgba(245, 35, 245, 0.35);

  --radius-sm:    10px;
  --radius-md:    18px;
  --radius-lg:    28px;
  --radius-xl:    40px;
  --radius-full:  9999px;

  --font-display: 'Bebas Neue', cursive;
  --font-body:    'Outfit', sans-serif;

  --transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card:  0 8px 40px rgba(0,0,0,0.6);
  --shadow-glow:  0 0 40px var(--accent-glow);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* ── 2. Base & Typography ─────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  line-height: 1.1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

ul { list-style: none; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.7;
}

/* Reusable section wrapper */
.section {
  padding: 100px 0;
  position: relative;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── 3. Navigation / Header ───────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  /* Glassy dark bar */
  background: rgba(8,8,8,0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

/* Logo text */
.nav-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo span {
  color: var(--accent);         /* accent colour on "STR" */
}

/* Nav logo icon badge */
.logo-badge {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #000;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

/* Active / hover underline */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* CTA button in nav */
.nav-cta {
  background: var(--accent);
  color: #000 !important;
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--accent-dim) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* ── 4. Hamburger Menu (Mobile) ───────────────────────── */
.hamburger {
  display: none;               /* hidden on desktop */
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.hamburger span {
  display: block;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

/* Animate hamburger → X when open */
.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 74px; left: 0; right: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 24px 5%;
  flex-direction: column;
  gap: 0;
  transform: translateY(-20px);
  opacity: 0;
  transition: var(--transition);
}

.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--accent);
}

/* ── 5. Hero Section (Home) ───────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* Small overline above hero title */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(39, 35, 245, 0.12);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  padding: 7px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  animation: fadeUp 0.7s ease both;
}

.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 13vw, 10rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  animation: fadeUp 0.8s ease 0.15s both;
}

.hero-title .accent {
  color: var(--accent);
}

.hero-desc {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 1.5rem auto 2.5rem;
  line-height: 1.75;
  animation: fadeUp 0.8s ease 0.3s both;
}

/* Primary + secondary CTA buttons */
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.45s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 30px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-3px);
  box-shadow: 0 0 50px var(--accent-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 13px 30px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

/* Scroll indicator caret */
.scroll-caret {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: bounce 2.2s infinite;
  opacity: 0.45;
  z-index: 2;
}

.scroll-caret span {
  display: block;
  width: 20px; height: 20px;
  border-right: 2px solid var(--text-secondary);
  border-bottom: 2px solid var(--text-secondary);
  transform: rotate(45deg);
}

/* ── 6. Animated Background Effects ──────────────────── */

/* Large radial glow blobs */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.bg-glow-1 {
  width: 600px; height: 600px;
  top: -200px; left: -150px;
  background: radial-gradient(circle, rgba(49, 35, 245, 0.12), transparent 70%);
  animation: floatGlow 10s ease-in-out infinite alternate;
}

.bg-glow-2 {
  width: 500px; height: 500px;
  bottom: -150px; right: -100px;
  background: radial-gradient(circle, rgba(255,77,77,0.1), transparent 70%);
  animation: floatGlow 13s ease-in-out infinite alternate-reverse;
}

.bg-glow-3 {
  width: 400px; height: 400px;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(35, 119, 245, 0.06), transparent 70%);
  animation: floatGlow 8s ease-in-out infinite alternate;
}

/* Grid overlay texture */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Noise grain overlay */
.bg-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ── 7. Game Cards ────────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 3rem;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card), 0 0 30px var(--accent-glow);
}

/* Card thumbnail area */
.game-card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  background: #1a1a1a;
}

.game-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover .game-card-thumb img {
  transform: scale(1.06);
}

/* Badge overlaid on thumbnail */
.game-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(8,8,8,0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 4px 12px;
  backdrop-filter: blur(6px);
}

.game-badge.new {
  background: rgba(221, 35, 245, 0.15);
  border-color: var(--border-accent);
  color: var(--accent);
}

.game-badge.soon {
  background: rgba(255,77,77,0.12);
  border-color: rgba(255,77,77,0.35);
  color: var(--accent-2);
}

.game-card-body {
  padding: 22px;
}

.game-card-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.game-card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.game-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  transition: var(--transition);
}

.game-card-link:hover {
  gap: 10px;
  color: var(--accent-dim);
}

/* ── 8. About Page ────────────────────────────────────── */
.about-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 5% 60px;
  position: relative;
  overflow: hidden;
}

/* Horizontal rule accent */
.accent-rule {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 2.5rem;
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}

.stat-box:hover {
  border-color: var(--border-accent);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* About image placeholder / cloudinary */
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
}

.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ── 9. Team Cards ────────────────────────────────────── */
/*
   TEAM CARD TEMPLATE
   Duplicate .team-card to add a new team member.
   Replace:
     • data-name with the member's display name
     • src on .team-avatar img with a Cloudinary URL
     • .team-role text with their role/title
*/
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 3rem;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(49, 35, 245, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.team-card:hover::before {
  opacity: 1;
}

/* Round profile picture */
.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 3px solid var(--border-accent);
  box-shadow: 0 0 20px var(--accent-glow);
  position: relative;
  z-index: 1;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fallback initials if no image */
.team-avatar-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.team-role {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(35, 49, 245, 0.1);
  border: 1px solid rgba(168, 35, 245, 0.25);
  border-radius: var(--radius-full);
  padding: 4px 14px;
  position: relative;
  z-index: 1;
}

/* ── 10. V4 Page ──────────────────────────────────────── */
.v4-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

/* Giant blurred "V4" behind everything */
.v4-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(180px, 35vw, 340px);
  color: rgba(81, 35, 245, 0.04);
  letter-spacing: -0.02em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.v4-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 12rem);
  line-height: 0.88;
  color: var(--text-primary);
  animation: fadeUp 0.8s ease 0.1s both;
}

.v4-title .accent { color: var(--accent); }

/* "COMING SOON" countdown / teaser card */
.v4-teaser {
  margin: 3rem auto 0;
  max-width: 560px;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.8s ease 0.35s both;
}

.v4-teaser::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(35, 74, 245, 0.3), transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.v4-teaser > * { position: relative; z-index: 1; }

.coming-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.v4-teaser p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Hype features list */
.v4-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 3rem;
}

.v4-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  transition: var(--transition);
}

.v4-feature:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.v4-feature-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.v4-feature h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.v4-feature p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── 11. Footer ───────────────────────────────────────── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 5% 36px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 300px;
  margin-top: 14px;
  line-height: 1.7;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.7rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-copy span {
  color: var(--accent);
}

/* ── 12. Utility Classes & Animations ────────────────── */

/* Fade + slide up (used on page load) */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating glow blobs */
@keyframes floatGlow {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 40px) scale(1.1); }
}

/* Pulsing dot */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

/* Scroll caret bounce */
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Scroll-reveal helper — JS toggles .visible */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Staggered delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Divider line */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 60px 0;
}

/* Pill tag */
.pill {
  display: inline-block;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  color: var(--text-secondary);
}

/* ── 13. Responsive Breakpoints ──────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Show hamburger, hide desktop links */
  .hamburger { display: flex; }
  .nav-links  { display: none; }

  /* Hero adjustments */
  .hero {
    padding: 100px 5% 60px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
    width: 100%;
  }

  /* Games grid single column */
  .games-grid {
    grid-template-columns: 1fr;
  }

  /* Team grid 2 columns */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer single column */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* About stats */
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  /* V4 features */
  .v4-features {
    grid-template-columns: 1fr;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

/* From Uiverse.io by JaydipPrajapati1910 */ 
button12 {
  text-align: center;
  display: block;
  margin: 0 auto;
  background: transparent;
  position: relative;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(88, 101, 242, 1);
  border-radius: 25px;
  outline: none;
  overflow: hidden;
  color: rgba(88, 101, 242, 1);
  transition: color 0.3s 0.1s ease-out;

}




button12:hover {
  color: #fff;
  border: 1px solid rgba(88, 101, 242, 1);
}

button12:hover::before {
  box-shadow: inset 0 0 0 10em rgba(88, 101, 242, 1);
}
