/* Bilardo Scoreboard Site - Premium Landing Page Design */
:root {
  --bg: #0a0e13;
  --bg-alt: #0d1117;
  --card: #111827;
  --card2: #0f1621;
  --card-glass: rgba(17, 24, 39, .65);
  --text: #f1f5f9;
  --text-bright: #ffffff;
  --muted: #94a3b8;
  --accent: #fbbf24;
  --accent2: #f59e0b;
  --accent-glow: rgba(251, 191, 36, .4);
  --green: #22c55e;
  --green-glow: rgba(34, 197, 94, .3);
  --red: #ef4444;
  --purple: #a855f7;
  --blue: #3b82f6;
  --border: rgba(255, 255, 255, .08);
  --border-accent: rgba(251, 191, 36, .25);
  --shadow: 0 14px 35px rgba(0, 0, 0, .4);
  --shadow-xl: 0 25px 60px rgba(0, 0, 0, .5);
  --shadow-glow: 0 0 40px rgba(251, 191, 36, .15);
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1180px;
  --transition-fast: .2s cubic-bezier(.4, 0, .2, 1);
  --transition-medium: .35s cubic-bezier(.4, 0, .2, 1);
  --transition-slow: .5s cubic-bezier(.4, 0, .2, 1);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none
}

body {
  margin: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 1400px 700px at 15% -5%, rgba(251, 191, 36, .12), transparent 55%),
    radial-gradient(ellipse 1000px 600px at 85% 10%, rgba(168, 85, 247, .08), transparent 50%),
    radial-gradient(ellipse 800px 400px at 50% 100%, rgba(59, 130, 246, .06), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body>* {
  position: relative;
  z-index: 1
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast)
}

img {
  max-width: 100%;
  height: auto
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: 100px 0
}

.section.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), transparent)
}

/* === SECTION DIVIDERS === */
.section-divider {
  position: relative;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* .section-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 14, 19, 0) 0%,
      rgba(251, 191, 36, .08) 30%,
      rgba(251, 191, 36, .12) 50%,
      rgba(251, 191, 36, .08) 70%,
      rgba(10, 14, 19, 0) 100%);
  z-index: 0;
} */

.section-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(251, 191, 36, .3) 20%,
      rgba(251, 191, 36, .5) 50%,
      rgba(251, 191, 36, .3) 80%,
      transparent);
}

.divider-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg);
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, .25);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .4), 0 0 40px rgba(251, 191, 36, .1);
}

.divider-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.divider-icon svg {
  width: 20px;
  height: 20px;
}

.divider-text {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Scroll reveal animations - JS adds 'js-loaded' to html when ready */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 1;
  transform: none;
}

html.js-loaded .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

html.js-loaded .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

html.js-loaded .reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .6s ease, transform .6s ease;
}

html.js-loaded .reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

html.js-loaded .reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .6s ease, transform .6s ease;
}

html.js-loaded .reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

html.js-loaded .reveal-scale {
  opacity: 0;
  transform: scale(.95);
  transition: opacity .5s ease, transform .5s ease;
}

html.js-loaded .reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger animation delays for children */
.stagger>*:nth-child(1) {
  transition-delay: .05s
}

.stagger>*:nth-child(2) {
  transition-delay: .1s
}

.stagger>*:nth-child(3) {
  transition-delay: .15s
}

.stagger>*:nth-child(4) {
  transition-delay: .2s
}

.stagger>*:nth-child(5) {
  transition-delay: .25s
}

.stagger>*:nth-child(6) {
  transition-delay: .3s
}

.stagger>*:nth-child(7) {
  transition-delay: .35s
}

.stagger>*:nth-child(8) {
  transition-delay: .4s
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1
}

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: -.01em
}

h3 {
  font-size: 1.15rem;
  margin: 0 0 12px;
  font-weight: 700
}

p {
  margin: 0 0 14px
}

.muted {
  color: var(--muted)
}

.tiny {
  font-size: .88rem
}

.kicker {
  color: var(--accent);
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.accent {
  color: var(--accent)
}

/* Gradient text effect */
.gradient-text {
  background: linear-gradient(135deg, var(--accent), #ff9500, var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px
}

.section-header h2 {
  margin-bottom: 16px
}

.section-header p {
  font-size: 1.1rem
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  padding: 6px 14px;
  background: rgba(251, 191, 36, .1);
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, .2);
}

/* === NAVBAR === */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  transition: all var(--transition-medium);
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 20px;
  background: rgba(15, 20, 28, .85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .05);
  position: relative;
}

.topbar-inner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(251, 191, 36, .2), transparent 40%, rgba(168, 85, 247, .15));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.topbar.scrolled .topbar-inner {
  background: rgba(10, 14, 19, .95);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .05);
  border-color: rgba(251, 191, 36, .15);
}

.topbar.scrolled .topbar-inner::before {
  opacity: 1
}

/* Brand */
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  transition: transform var(--transition-fast);
}

.brand:hover {
  transform: scale(1.02)
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(251, 191, 36, .15), rgba(251, 191, 36, .05));
  border: 1px solid rgba(251, 191, 36, .25);
  border-radius: 12px;
}

.brand-logo {
  height: 30px;
  width: auto
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-bright);
  letter-spacing: -.01em;
}

.brand-tagline {
  font-size: .75rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: .02em;
}

.brand.foot .brand-logo {
  height: 28px
}

/* Navigation */
.nav {
  display: flex;
  gap: 4px;
  align-items: center;
  background: rgba(255, 255, 255, .03);
  padding: 6px;
  border-radius: 10px;
}

.nav a {
  color: var(--muted);
  font-weight: 500;
  font-size: .88rem;
  padding: 10px 16px;
  border-radius: 8px;
  position: relative;
  transition: all var(--transition-fast);
}

.nav a:hover {
  color: var(--text-bright);
  background: rgba(255, 255, 255, .08);
}

.nav a.active {
  color: var(--text-bright);
  background: rgba(251, 191, 36, .1);
}

/* CTA Button in Nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--accent), #f59e0b);
  color: #0a0e13;
  font-weight: 700;
  font-size: .9rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(251, 191, 36, .3);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
  transition: left .5s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(251, 191, 36, .4);
}

.nav-cta:hover::before {
  left: 100%
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0a0e13;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 20px rgba(251, 191, 36, .35), inset 0 1px 0 rgba(255, 255, 255, .2);
  transition: all var(--transition-fast);
  cursor: pointer;
  font-size: .95rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, .3) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .6s ease;
}

.btn:hover::before {
  transform: translateX(100%)
}

.btn.primary {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: 14px
}

.btn.full {
  width: 100%
}

.btn.small {
  padding: 10px 18px;
  font-size: .9rem;
  font-weight: 700;
  border-radius: 10px
}

.btn.ghost {
  background: rgba(255, 255, 255, .05);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(251, 191, 36, .15);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(251, 191, 36, .5), inset 0 1px 0 rgba(255, 255, 255, .3);
  filter: brightness(1.05);
}

.btn:active {
  transform: translateY(0)
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  margin: 28px 0 36px;
  width: 100%;
}

.cta-row .btn {
  flex: 1;
  white-space: nowrap;
  padding: 14px 12px;
  font-size: 0.9rem;
  min-width: 0;
}

/* Stats mini counters */
.stats-mini {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px
}

.stat-mini {
  padding: 16px 0;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.stat-mini-value {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-mini-label {
  font-size: .9rem;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .05);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.burger:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--accent)
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.burger.active span:nth-child(2) {
  opacity: 0
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 16px;
  right: 16px;
  margin-top: 8px;
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: max-height .35s ease, opacity .3s ease, padding .3s ease;
  background: rgba(15, 20, 28, .95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}

.mobile-nav.open {
  max-height: 400px;
  opacity: 1;
  pointer-events: auto;
  padding: 16px;
}

.mobile-nav a {
  display: block;
  padding: 14px 16px;
  color: var(--muted);
  font-weight: 600;
  border-radius: 10px;
  margin-bottom: 4px;
  transition: all var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--accent);
  background: rgba(251, 191, 36, .1);
}

.mobile-nav a:last-child {
  margin-top: 8px;
  background: linear-gradient(135deg, var(--accent), #f59e0b);
  color: #0a0e13;
  text-align: center;
  font-weight: 700;
}

/* === HERO SECTION === */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .grid {
  gap: 100px;
}

/* Hero background decorative logo */
.hero-bg-logo {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(50%, 50%);
  width: clamp(500px, 65vw, 1200px);
  height: auto;
  opacity: 1;
  pointer-events: none;
  z-index: -1;
  filter: blur(4px);
}

/* Floating shapes */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, .08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, .06) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: float 25s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(30px, -30px) scale(1.05)
  }

  66% {
    transform: translate(-20px, 20px) scale(.95)
  }
}

.hero h1 {
  line-height: 1.08;
  margin-bottom: 24px
}

.hero .kicker {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px
}

.grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 54ch;
  line-height: 1.7
}

/* Hero Showcase - Clean Floating Mockups */
.hero-showcase {
  position: relative;
}

.showcase-wrapper {
  position: relative;
  padding: 60px 20px 80px 60px;
}

.showcase-main {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, .5),
    0 0 0 1px rgba(255, 255, 255, .1),
    0 0 80px rgba(251, 191, 36, .08);
  background: #0a0e13;
  cursor: pointer;
  transition: transform .4s ease, box-shadow .4s ease;
}

.showcase-main:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, .6),
    0 0 0 1px rgba(255, 255, 255, .15),
    0 0 100px rgba(251, 191, 36, .12);
}

.showcase-main img {
  width: 100%;
  height: auto;
  display: block;
}

.showcase-zoom-hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  color: var(--accent);
  opacity: 0;
  transform: scale(.8);
  transition: all .3s ease;
}

.showcase-main:hover .showcase-zoom-hint {
  opacity: 1;
  transform: scale(1);
}

/* Floating devices */
.showcase-float {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  background: #0a0e13;
  cursor: pointer;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, .6),
    0 0 0 1px rgba(255, 255, 255, .12);
  transition: transform .4s ease, box-shadow .4s ease;
}

.showcase-float img {
  width: 100%;
  height: auto;
  display: block;
}

.showcase-float:hover {
  z-index: 10;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, .7),
    0 0 0 1px rgba(251, 191, 36, .3),
    0 0 40px rgba(251, 191, 36, .15);
}

/* Tablet - top right */
.showcase-tablet {
  width: 55%;
  top: -30px;
  right: -50px;
  z-index: 3;
  transform: rotate(5deg);
}

.showcase-tablet:hover {
  transform: rotate(2deg) scale(1.08) translateY(-8px);
}

/* Phone - bottom left */
.showcase-phone {
  width: 45%;
  bottom: -40px;
  left: -30px;
  z-index: 3;
  transform: rotate(-6deg);
}

.showcase-phone:hover {
  transform: rotate(-3deg) scale(1.08) translateY(-8px);
}

/* Stats bar under showcase */
.hero-showcase .hero-stats {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--card-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.hero-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(251, 191, 36, .3), transparent 50%, rgba(168, 85, 247, .2));
  z-index: -1;
  opacity: .5;
}

.hero-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(251, 191, 36, .2);
}

.hero-media {
  padding: 16px
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .4);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border)
}

.stat {
  padding: 18px;
  text-align: center;
  transition: background var(--transition-fast);
}

.stat:hover {
  background: rgba(255, 255, 255, .03)
}

.stat-k {
  font-weight: 800;
  font-size: .95rem;
  white-space: nowrap;
}

.stat-v {
  color: var(--muted);
  font-size: .88rem;
  margin-top: 4px
}

/* Scroll down indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .85rem;
  animation: bounce 2s ease-in-out infinite;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.scroll-indicator:hover {
  color: var(--accent)
}

.scroll-indicator svg {
  width: 24px;
  height: 24px
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  40% {
    transform: translateX(-50%) translateY(-10px)
  }

  60% {
    transform: translateX(-50%) translateY(-5px)
  }
}

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px
}

.badge {
  font-size: .82rem;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .04);
  color: var(--muted);
  transition: all var(--transition-fast);
}

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

/* === TRUST BAR === */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), transparent);
  position: relative;
  overflow: hidden;
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: .95rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.trust-item:hover {
  border-color: var(--border-accent);
  background: rgba(251, 191, 36, .05);
}

.trust-item svg {
  color: var(--accent);
  flex-shrink: 0
}

/* === CARDS === */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.card {
  background: var(--card-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
  border-color: rgba(251, 191, 36, .25);
}

.card:hover::before {
  opacity: 1
}

.video.card {
  height: 100%
}

.card.highlight {
  background: linear-gradient(145deg, rgba(251, 191, 36, .12), rgba(245, 158, 11, .06));
  border-color: rgba(251, 191, 36, .3);
}

.card.highlight::before {
  opacity: 1
}

.card h3 {
  color: var(--text-bright)
}

.card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted)
}

.card li {
  margin: 8px 0;
  line-height: 1.5
}

/* === FEATURES GRID === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, .04) 0%, rgba(255, 255, 255, .01) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(251, 191, 36, .06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .3), 0 0 80px rgba(251, 191, 36, .08);
}

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

/* Feature header: icon + title inline */
.feature-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(251, 191, 36, .15), rgba(251, 191, 36, .05));
  border: 1px solid rgba(251, 191, 36, .25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent);
}

.feature-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.feature-content {
  position: relative;
  z-index: 1;
}

.feature-content>p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  opacity: .7;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

/* Features CTA */
.features-cta {
  margin-top: 48px;
  background: linear-gradient(135deg, rgba(251, 191, 36, .1) 0%, rgba(168, 85, 247, .05) 100%);
  border: 1px solid rgba(251, 191, 36, .25);
  border-radius: 20px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.features-cta-content {
  display: flex;
  align-items: center;
  gap: 24px;
}

.features-cta-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.features-cta-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--dark);
}

.features-cta h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.features-cta p {
  font-size: .95rem;
  color: var(--muted);
  margin: 0;
}

/* === GAME MODES GRID === */
.game-modes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.game-mode-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, .03) 0%, rgba(255, 255, 255, .01) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.game-mode-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(251, 191, 36, .08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.game-mode-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .3), 0 0 60px rgba(251, 191, 36, .1);
}

.game-mode-card:hover::before {
  opacity: 1
}

.game-mode-card.featured {
  background: linear-gradient(135deg, rgba(251, 191, 36, .08) 0%, rgba(251, 191, 36, .02) 100%);
  border-color: rgba(251, 191, 36, .3);
}

.game-mode-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 6px 12px;
  border-radius: 20px;
}

.game-mode-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(251, 191, 36, .15), rgba(251, 191, 36, .05));
  border: 1px solid rgba(251, 191, 36, .2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.game-mode-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent);
}

.game-mode-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.game-mode-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.game-mode-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.game-tag {
  background: rgba(251, 191, 36, .12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(251, 191, 36, .2);
  transition: all var(--transition-fast);
}

.game-mode-card:hover .game-tag {
  background: rgba(251, 191, 36, .2);
  border-color: rgba(251, 191, 36, .4);
}

.game-mode-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Legacy pill styles (keep for compatibility) */
.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.pill {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all var(--transition-medium);
  position: relative;
}

.pill::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(251, 191, 36, .1), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

.pill:hover::after {
  opacity: 1
}

.pill h3 {
  position: relative;
  z-index: 1;
  color: var(--accent);
  margin-bottom: 8px
}

.pill p {
  position: relative;
  z-index: 1;
  margin: 0
}

/* === USE CASES === */
.use-cases {
  background: linear-gradient(180deg, transparent, rgba(251, 191, 36, .03), transparent);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.use-case {
  background: var(--card-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-medium);
  position: relative;
}

.use-case::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, .1), transparent);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.use-case:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .4);
  border-color: rgba(251, 191, 36, .3);
}

.use-case:hover::before {
  opacity: 1
}

.use-case.featured {
  background: linear-gradient(145deg, rgba(251, 191, 36, .12), rgba(245, 158, 11, .05));
  border-color: rgba(251, 191, 36, .35);
  border-width: 2px;
  transform: scale(1.03);
}

.use-case.featured::before {
  opacity: 1
}

.use-case.featured:hover {
  transform: translateY(-8px) scale(1.03)
}

.use-case-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
}

.use-case h3 {
  font-size: 1.15rem;
  margin-bottom: 18px;
  color: var(--text-bright)
}

.use-case ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.use-case ul li {
  padding: 10px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  gap: 8px;
}

.use-case ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
}

.use-case ul li:last-child {
  border: none
}

.price-hint {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 18px;
  background: linear-gradient(135deg, rgba(251, 191, 36, .2), rgba(251, 191, 36, .1));
  color: var(--accent);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
  border: 1px solid rgba(251, 191, 36, .3);
}

/* === COMPARISON TABLE === */
.comparison-section {
  padding: 100px 0
}

.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-glass);
}

.comparison-table thead {
  background: linear-gradient(180deg, rgba(0, 0, 0, .4), rgba(0, 0, 0, .2));
}

.comparison-table th {
  padding: 20px;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
  font-size: 1rem;
}

.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  transition: background var(--transition-fast);
}

.comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, .03);
}

.comparison-table .highlight-col {
  background: rgba(251, 191, 36, .06);
  font-weight: 600;
}

.comparison-table tbody tr:hover .highlight-col {
  background: rgba(251, 191, 36, .1);
}

.comparison-table .check {
  color: var(--green);
  font-size: 1.4rem;
  font-weight: 900;
}

.comparison-table .check.star {
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent-glow);
}

.comparison-table .cross {
  color: #4b5563;
  font-size: 1.3rem;
}

.comparison-table .extra-feature {
  background: rgba(251, 191, 36, .03);
}

.comparison-table .extra-feature td:first-child {
  font-weight: 600;
  color: var(--text-bright);
}

.comparison-note {
  text-align: center;
  margin-top: 20px;
  color: var(--accent);
  font-size: .95rem;
  font-weight: 600;
}

/* === FAQ SECTION === */
.faq-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), transparent);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.faq-item {
  background: var(--card-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '?';
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(251, 191, 36, .05);
  pointer-events: none;
}

.faq-item:hover {
  background: rgba(17, 24, 39, .9);
  border-color: rgba(251, 191, 36, .3);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .3);
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: var(--accent);
  position: relative;
}

.faq-item p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  position: relative;
}

/* === GALLERY - HORIZONTAL SCROLL ALBUM === */
.gallery-section {
  padding-bottom: 60px;
  overflow: hidden;
}

.gallery-section .section-header {
  margin-bottom: 40px;
}

.album-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px;
  max-width: 100vw;
  overflow: hidden;
}

.album-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.album-track::-webkit-scrollbar {
  display: none
}

.album-card {
  flex: 0 0 auto;
  width: 320px;
  background: #0d1117;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  position: relative;
}

.album-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .8));
  z-index: 1;
  opacity: 0;
  transition: opacity .3s ease;
}

.album-card:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: var(--accent);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, .5),
    0 0 40px rgba(251, 191, 36, .15);
}

.album-card:hover::before {
  opacity: 1
}

.album-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.album-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  z-index: 2;
  transform: translateY(100%);
  transition: transform .3s ease;
}

.album-card:hover .album-caption {
  transform: translateY(0);
}

/* Album navigation buttons */
.album-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(10, 14, 19, .9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all var(--transition-fast);
  z-index: 10;
}

.album-nav:hover {
  background: var(--accent);
  color: #0a0e13;
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.1);
}

.album-nav:active {
  transform: translateY(-50%) scale(.95)
}

.album-prev {
  left: 24px
}

.album-next {
  right: 24px
}

/* Scroll hint */
.album-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--muted);
  font-size: .9rem;
}

.album-hint svg {
  animation: slideRight 1.5s ease-in-out infinite;
}

@keyframes slideRight {

  0%,
  100% {
    transform: translateX(0);
    opacity: 1
  }

  50% {
    transform: translateX(8px);
    opacity: .5
  }
}

/* Legacy gallery styles - kept for compatibility */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.shot {
  margin: 0;
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition-medium);
}

.shot:hover {
  border-color: var(--border-accent);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .3);
  transform: translateY(-4px);
}

.shot img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-medium);
}

.shot:hover img {
  transform: scale(1.03)
}

.shot figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 500;
  border-top: 1px solid var(--border);
}

/* === VIDEO SHOWCASE === */
.videos-showcase {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.video-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, .04) 0%, rgba(255, 255, 255, .01) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-medium);
  cursor: pointer;
}

.video-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
}

.video-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
}

.video-featured .video-thumbnail {
  min-height: 320px;
}

.video-featured .video-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-featured h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.video-featured p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.video-thumbnail {
  position: relative;
  background: linear-gradient(135deg, rgba(251, 191, 36, .1) 0%, rgba(168, 85, 247, .1) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

.video-thumbnail::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(251, 191, 36, .15), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.video-card:hover .video-thumbnail::before {
  opacity: 1;
}

.video-play-btn {
  width: 72px;
  height: 72px;
  background: rgba(251, 191, 36, .9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: all var(--transition-medium);
  box-shadow: 0 8px 32px rgba(251, 191, 36, .3);
}

.video-play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.video-card:hover .video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(251, 191, 36, .5);
}

.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, .8);
  color: var(--text);
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

.video-info {
  padding: 20px;
}

.video-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.video-info p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.video-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--dark);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.video-meta {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: .85rem;
}

.video-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.video-meta svg {
  stroke: var(--accent);
}

.video-grid-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-grid-compact .video-card {
  display: flex;
  flex-direction: column;
}

.video-grid-compact .video-thumbnail {
  min-height: 140px;
}

.video-grid-compact .video-play-btn {
  width: 52px;
  height: 52px;
}

.video-grid-compact .video-play-btn svg {
  width: 20px;
  height: 20px;
}

.video-cta {
  text-align: center;
  margin-top: 40px;
}

.video-cta .btn {
  gap: 10px;
}

.video-cta .btn svg {
  fill: currentColor;
}

/* === CTA / CONTACT SECTION === */
.cta-section {
  background:
    linear-gradient(180deg, transparent, rgba(251, 191, 36, .04), transparent),
    linear-gradient(90deg, transparent, rgba(168, 85, 247, .03), transparent);
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(251, 191, 36, .08) 0%, transparent 60%);
  pointer-events: none;
}

/* Contact Cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--card-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 36px 28px 28px;
  text-decoration: none;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  min-height: 120px;
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(251, 191, 36, .15), transparent 60%);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35), 0 0 30px rgba(251, 191, 36, .1);
}

.contact-card:hover::before {
  opacity: 1
}

/* WhatsApp card special styling */
.contact-card-whatsapp .contact-card-icon {
  background: linear-gradient(135deg, rgba(37, 211, 102, .2), rgba(37, 211, 102, .08));
  border-color: rgba(37, 211, 102, .3);
  color: #25D366;
}

.contact-card-whatsapp:hover {
  border-color: rgba(37, 211, 102, .4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35), 0 0 30px rgba(37, 211, 102, .15);
}

.contact-card-whatsapp .contact-card-hint {
  color: #25D366;
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(251, 191, 36, .15), rgba(251, 191, 36, .05));
  border: 1px solid rgba(251, 191, 36, .2);
  color: var(--accent);
  flex-shrink: 0;
}

.contact-card-content {
  flex: 1;
  min-width: 0;
}

.contact-card-content h3 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.contact-card-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin: 0 0 6px;
  white-space: nowrap;
}

.contact-card-hint {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 500;
}

/* Legacy contact form styles (kept for compatibility) */
.contact {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: start;
  background: var(--card-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

.contact::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(251, 191, 36, .2), transparent 50%, rgba(168, 85, 247, .15));
  z-index: -1;
  opacity: .5;
}

.contact-info {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--border)
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  margin-top: 8px;
  transition: all var(--transition-fast);
}

.phone-link:hover {
  color: var(--text-bright);
  text-shadow: 0 0 20px var(--accent-glow);
}

.check {
  margin: 18px 0 0;
  padding-left: 0;
  list-style: none
}

.check li {
  margin: 10px 0;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.check li::before {
  display: none
}

.form label {
  display: block;
  font-size: .95rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 18px;
}

input,
textarea {
  width: 100%;
  margin-top: 10px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, .4);
  color: var(--text);
  outline: none;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  background: rgba(0, 0, 0, .5);
  box-shadow: 0 0 20px rgba(251, 191, 36, .1);
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
  opacity: .6
}

.form .btn {
  width: 100%;
  margin-top: 14px
}

.form-note {
  text-align: center;
  margin-top: 16px;
  font-size: .9rem;
  color: var(--muted);
}

.note {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px dashed rgba(251, 191, 36, .4);
  color: var(--muted);
  background: rgba(251, 191, 36, .05);
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .3), var(--dark));
  margin-top: 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.footer-brand-tagline {
  font-size: .75rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.footer-desc {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-nav h4,
.footer-contact h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 20px;
}

.footer-links {
  display: block;
}

.footer-nav a {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  padding: 6px 0;
  transition: all var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .9rem;
  padding: 8px 0;
  transition: color var(--transition-fast);
}

.footer-contact-item:hover {
  color: var(--accent);
}

.footer-contact-item svg {
  stroke: var(--accent);
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer-copyright {
  font-size: .85rem;
  color: var(--muted);
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--muted);
  background: rgba(255, 255, 255, .05);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* === PLACEHOLDER === */
.placeholder {
  height: 100%;
  width: 100%;
  border-radius: 14px;
  border: 2px dashed rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 20px;
  text-align: center;
  transition: all var(--transition-fast);
}

.placeholder:hover {
  border-color: var(--accent);
  background: rgba(251, 191, 36, .03);
}

.video .placeholder {
  min-height: unset
}

.ph-title {
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--muted)
}

.ph-desc {
  color: var(--muted);
  font-size: .9rem;
  word-break: break-all;
  opacity: .7
}

/* === GALLERY ZOOM === */
.gallery-img {
  cursor: pointer;
  transition: all var(--transition-medium)
}

.gallery-img:hover {
  opacity: .85
}

/* === MODAL === */
.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
  animation: fadeIn .25s ease
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.modal-content {
  position: relative;
  z-index: 1;
  max-width: 92vw;
  max-height: 92vh;
  padding: 24px;
}

.modal-image {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .7);
  display: block;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .8);
  border: 2px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
  transition: all var(--transition-fast);
  z-index: 2;
}

.modal-close:hover {
  background: var(--accent);
  color: #0a0e13;
  transform: rotate(90deg) scale(1.1);
  border-color: var(--accent);
}

/* Modal navigation arrows */
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, .15);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all var(--transition-fast);
  z-index: 3;
}

.modal-nav:hover {
  background: rgba(251, 191, 36, .9);
  color: #0a0e13;
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.1);
}

.modal-nav:active {
  transform: translateY(-50%) scale(.95)
}

.modal-prev {
  left: 24px
}

.modal-next {
  right: 24px
}

/* Modal counter */
.modal-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(8px);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .1);
}

.modal-current {
  color: var(--accent)
}

/* === VIDEO MODAL === */
.video-modal .modal-content {
  max-width: 95vw;
  width: 1400px;
  padding: 0;
}

.video-modal-content {
  background: transparent;
}

.video-modal-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .8), 0 0 60px rgba(251, 191, 36, .15);
}

.video-modal-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal .modal-close {
  top: -60px;
  right: 0;
  background: rgba(0, 0, 0, .9);
  border-color: rgba(255, 255, 255, .3);
}

.video-modal .modal-close:hover {
  background: var(--accent);
  color: #0a0e13;
  border-color: var(--accent);
}

/* === BACK TO TOP BUTTON === */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #0a0e13;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 30px rgba(251, 191, 36, .4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-medium);
  z-index: 90;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(251, 191, 36, .5);
}

.back-to-top svg {
  width: 24px;
  height: 24px
}

/* === TESTIMONIALS === */
.testimonials-section {
  background: linear-gradient(180deg, rgba(168, 85, 247, .03), transparent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.testimonial {
  background: var(--card-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: all var(--transition-medium);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(251, 191, 36, .15);
  line-height: 1;
}

.testimonial:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .3);
}

.testimonial-content {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px;
  padding-left: 8px;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: #0a0e13;
}

.testimonial-info h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--text-bright);
}

.testimonial-info p {
  margin: 0;
  font-size: .9rem;
  color: var(--muted);
}

/* === ANIMATIONS === */
@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .6
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0
  }

  100% {
    background-position: 200% 0
  }
}

/* Loading shimmer effect */
.shimmer {
  background: linear-gradient(90deg, transparent 25%, rgba(255, 255, 255, .08) 50%, transparent 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .use-case-grid {
    grid-template-columns: 1fr
  }

  .use-case.featured {
    transform: none
  }

  .use-case.featured:hover {
    transform: translateY(-8px)
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 0px !important;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px
  }

  .hero-bg-logo {
    width: 60%
  }

  .showcase-wrapper {
    padding: 50px 10px 70px 50px
  }

  .showcase-tablet {
    display: none;
  }

  .showcase-phone {
    display: none;
  }

  /* Hero Showcase - Hide floating devices on tablet, show only main */
  .hero-showcase {
    overflow: visible;
    margin: 40px 0 0;
    padding: 0;
    transform: none !important;
    opacity: 1 !important;
  }

  .showcase-wrapper {
    padding: 20px 0;
  }

  .showcase-main {
    border-radius: 12px;
    width: 100%;
  }

  .showcase-main img {
    border-radius: 12px;
  }

  .hero-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid var(--border);
    gap: 0;
  }

  .hero-stats .stat {
    padding: 12px 8px;
    flex: 1;
    min-width: 0;
  }

  .hero-stats .stat-k {
    font-size: 0.75rem;
  }

  .hero-stats .stat-v {
    font-size: 0.7rem;
  }

  /* Scroll indicator - show below content on tablet/mobile */
  .hero {
    flex-direction: column;
    padding-bottom: 40px;
  }

  .scroll-indicator {
    position: static;
    transform: none;
    margin-top: 30px;
  }

  .game-modes-grid {
    grid-template-columns: 1fr
  }

  /* Video responsive */
  .video-featured {
    grid-template-columns: 1fr
  }

  .video-featured .video-thumbnail {
    min-height: 240px
  }

  .video-featured .video-info {
    padding: 28px
  }

  .video-grid-compact {
    grid-template-columns: repeat(2, 1fr)
  }

  /* Features responsive */
  .features-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 980px) {
  .contact {
    grid-template-columns: 1fr;
    padding: 32px
  }

  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact-card:last-child {
    grid-column: span 2;
  }

  .nav,
  .nav-cta {
    display: none
  }

  .burger {
    display: block
  }

  .trust-items {
    justify-content: center;
    gap: 16px
  }

  .stats-mini {
    justify-content: center
  }

  .topbar {
    padding: 12px 16px
  }

  .topbar-inner {
    padding: 10px 16px
  }

  .brand-icon {
    width: 38px;
    height: 38px
  }

  .brand-logo {
    height: 22px
  }

  .brand-name {
    font-size: .95rem
  }

  .brand-tagline {
    font-size: .7rem
  }

  /* Footer tablet */
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0
  }

  .container {
    padding: 0 20px
  }

  /* Features tablet */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .feature-card {
    padding: 24px
  }

  .features-cta {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px
  }

  .features-cta-content {
    flex-direction: column
  }

  /* Footer Accordion (Mobile Only) */
  .footer-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0 !important;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .footer-toggle::after {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-right: 5px;
    margin-bottom: 4px;
  }

  .footer-nav.active .footer-toggle::after,
  .footer-contact.active .footer-toggle::after {
    transform: rotate(-135deg);
    margin-bottom: -2px;
  }

  .footer-links {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .footer-nav.active .footer-links,
  .footer-contact.active .footer-links {
    max-height: 400px;
    opacity: 1;
    padding: 10px 0 20px;
  }

  .features-cta .btn {
    width: 100%
  }

  .trust-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trust-item {
    font-size: .8rem;
    padding: 12px 8px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .comparison-section {
    padding: 70px 0
  }

  /* Album tablet */
  .album-card {
    width: 280px
  }

  .album-nav {
    width: 44px;
    height: 44px
  }

  .album-prev {
    left: 12px
  }

  .album-next {
    right: 12px
  }

  .album-next {
    right: 12px
  }

  /* Video tablet */
  .video-grid-compact {
    grid-template-columns: 1fr
  }

  .video-grid-compact .video-card {
    flex-direction: row
  }

  .video-grid-compact .video-thumbnail {
    width: 180px;
    min-height: unset;
    aspect-ratio: unset
  }

  .video-grid-compact .video-info {
    flex: 1
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 100px 0 50px
  }

  .hero h1 {
    font-size: 1.9rem
  }

  .lead {
    font-size: 1rem
  }

  /* Footer mobile */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center
  }

  .footer-brand {
    order: -1
  }

  .footer-logo {
    justify-content: center
  }

  .footer-desc {
    max-width: 100%;
    margin: 0 auto
  }

  .footer-nav h4,
  .footer-contact h4 {
    margin-bottom: 14px
  }

  .footer-nav a:hover {
    padding-left: 0
  }

  .footer-contact-item {
    justify-content: center
  }

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

  .modal-content {
    padding: 12px
  }

  .modal-image {
    max-height: 85vh
  }

  .trust-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trust-item {
    font-size: .8rem;
    padding: 12px 8px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* Video mobile */
  .video-featured .video-thumbnail {
    min-height: 180px
  }

  .video-featured .video-info {
    padding: 20px
  }

  .video-featured h3 {
    font-size: 1.2rem
  }

  .video-grid-compact .video-card {
    flex-direction: column
  }

  .video-grid-compact .video-thumbnail {
    width: 100%;
    aspect-ratio: 16/9
  }

  .video-play-btn {
    width: 56px;
    height: 56px
  }

  .video-play-btn svg {
    width: 22px;
    height: 22px
  }

  /* Game modes mobile */
  .game-mode-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }

  .game-mode-icon {
    width: 56px;
    height: 56px;
  }

  .game-mode-icon svg {
    width: 28px;
    height: 28px;
  }

  .game-mode-tags {
    justify-content: center;
  }

  .game-mode-badge {
    top: 12px;
    right: 12px;
  }

  .stat-mini-value {
    font-size: 2rem
  }

  .stats-mini {
    gap: 20px
  }

  .use-case-grid {
    grid-template-columns: 1fr
  }

  .faq-grid {
    grid-template-columns: 1fr
  }

  .testimonials-grid {
    grid-template-columns: 1fr
  }

  .comparison-table {
    font-size: .85rem
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px
  }

  /* Divider mobile */
  .section-divider {
    padding: 28px 0
  }

  .divider-content {
    padding: 10px 20px;
    gap: 12px
  }

  .divider-text {
    font-size: .75rem;
    letter-spacing: .05em
  }

  .divider-icon {
    width: 28px;
    height: 28px
  }

  .divider-icon svg {
    width: 16px;
    height: 16px
  }

  .contact {
    padding: 24px;
    gap: 32px
  }

  .section-header {
    margin-bottom: 40px
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
  }

  .cta-row {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .cta-row .btn {
    width: auto;
    flex: 1;
    padding: 14px 10px;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  /* Contact cards mobile */
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .contact-card {
    padding: 20px 24px;
    gap: 16px
  }

  .contact-card-icon {
    width: 52px;
    height: 52px
  }

  .contact-card-value {
    font-size: 1.1rem
  }

  .contact-card-value {
    font-size: 1.1rem
  }

  /* Slider adjustments for small mobile */
  .showcase-main,
  .showcase-float {
    flex: 0 0 90%;
  }

  /* Showcase mobile - stacked cards like playing cards */
  .showcase-wrapper {
    padding: 20px 16px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
  }

  .showcase-main {
    border-radius: 12px;
    width: 100%;
    z-index: 3;
    position: relative;
    overflow: visible;
  }

  .showcase-main img {
    border-radius: 12px;
  }

  .showcase-tablet {
    display: block !important;
    position: relative;
    width: 92%;
    top: auto;
    right: auto;
    transform: none;
    border-radius: 12px;
    margin-top: -40px;
    z-index: 2;
    overflow: visible;
  }

  .showcase-tablet img {
    border-radius: 12px;
  }

  .showcase-tablet:hover {
    transform: translateY(-8px);
    z-index: 10;
  }

  .showcase-phone {
    display: block !important;
    position: relative;
    width: 85%;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    margin-top: -35px;
    transform: none;
    border-radius: 12px;
    z-index: 1;
    overflow: visible;
  }

  .showcase-phone img {
    border-radius: 12px;
  }

  .showcase-phone:hover {
    transform: translateY(-8px);
    z-index: 10;
  }

  .showcase-float {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
    overflow: visible;
  }

  .hero-showcase .hero-stats {
    margin-top: 30px;
  }

  /* Scroll indicator on mobile - show below stats */
  .scroll-indicator {
    position: static;
    transform: none;
    margin-top: 25px;
  }

  /* Modal mobile */
  .modal-nav {
    width: 44px;
    height: 44px
  }

  .modal-prev {
    left: 12px
  }

  .modal-next {
    right: 12px
  }

  .modal-counter {
    bottom: 16px;
    padding: 8px 16px;
    font-size: .8rem
  }

  .modal-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 24px
  }

  /* Album mobile */
  .album-card {
    width: 240px
  }

  .album-track {
    padding: 16px 20px;
    gap: 16px
  }

  .album-nav {
    display: none
  }

  .album-hint {
    font-size: .8rem
  }
}

/* Print styles */
@media print {

  .topbar,
  .back-to-top,
  .modal {
    display: none !important
  }

  body {
    background: #fff;
    color: #000
  }

  .section {
    padding: 30px 0
  }
}

.video-preview-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-featured .video-preview-wrapper {
  border-radius: 16px 16px 0 0;
}

.video-grid-compact .video-preview-wrapper {
  border-radius: 16px 16px 0 0;
}

.video-preview-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.video-overlay-click {
  position: absolute;
  inset: 0;
  z-index: 5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .1);
  transition: all .3s ease;
}

.video-cover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 2;
  pointer-events: none;
}

.video-card:hover .video-overlay-click {
  background: rgba(0, 0, 0, .3);
}

.video-overlay-click .video-play-btn {
  /* Inherit existing styles but make sure it centers */
  position: relative;
  z-index: 6;
}