/* =============================================
   EVMC Studios - Styles
   Brand: Red + Black | Rounded | Playful Modern
   ============================================= */

/* CSS Variables */
:root {
  --red: #E53935;
  --red-dark: #C62828;
  --red-light: #FF5252;
  --black: #0A0A0A;
  --black-light: #141414;
  --black-alt: #0F0F0F;
  --black-card: #1A1A1A;
  --black-border: #2A2A2A;
  --white: #FFFFFF;
  --white-muted: #B0B0B0;
  --white-dim: #777777;
  --font-display: 'Nunito', sans-serif;
  --font-body: 'Quicksand', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 50px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

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

ul {
  list-style: none;
}

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

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--black-border);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-img {
  height: 65px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  color: var(--white-muted);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

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

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

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

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

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

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--red);
  top: -200px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--red-dark);
  bottom: -100px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: var(--red-light);
  top: 50%;
  left: 50%;
  animation: float 6s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 16px;
  opacity: 0;
  animation: slideUp 0.6s ease forwards 0.2s;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 20px;
  opacity: 0;
  animation: slideUp 0.6s ease forwards 0.4s;
}

.highlight {
  color: var(--red);
  position: relative;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--white-muted);
  max-width: 520px;
  margin-bottom: 32px;
  opacity: 0;
  animation: slideUp 0.6s ease forwards 0.6s;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideUp 0.6s ease forwards 0.8s;
}

/* Buttons */
.btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
  border: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(229, 57, 53, 0.35);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(229, 57, 53, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--black-border);
}

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

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 400px;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 0.6s;
}

.hero-card {
  position: absolute;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition);
}

.hero-card:hover {
  transform: translateY(-4px) !important;
}

.card-icon {
  font-size: 1.8rem;
}

.card-1 {
  top: 20px;
  left: 20px;
  animation: floatCard 5s ease-in-out infinite;
}

.card-2 {
  top: 140px;
  right: 0;
  animation: floatCard 6s ease-in-out infinite 1s;
}

.card-3 {
  bottom: 40px;
  left: 60px;
  animation: floatCard 5.5s ease-in-out infinite 0.5s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* =============================================
   SECTIONS COMMON
   ============================================= */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--white-muted);
  max-width: 560px;
  margin-bottom: 48px;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 80px 0;
  background: var(--black-light);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 57, 53, 0.3), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: rgba(229, 57, 53, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(229, 57, 53, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon {
  font-size: 1.6rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--white-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* =============================================
   APPS SHOWCASE
   ============================================= */
.apps {
  padding: 80px 0;
  background: var(--black-alt);
  position: relative;
}

.apps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 57, 53, 0.2), transparent);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 20px;
}

.app-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.app-card:hover {
  border-color: rgba(229, 57, 53, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.app-mockup {
  background: linear-gradient(135deg, var(--black) 0%, #1a1015 100%);
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-screen {
  width: 140px;
  height: 260px;
  background: var(--black-border);
  border-radius: 24px;
  border: 3px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.app-screen::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 6px;
  background: #333;
  border-radius: 4px;
}

.app-placeholder-icon {
  font-size: 2.4rem;
  opacity: 0.4;
}

.app-info {
  padding: 28px 28px 32px;
}

.app-info h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.app-info p {
  color: var(--white-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.app-link {
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

.app-link:hover {
  color: var(--red-light);
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: 80px 0;
  background: var(--black-light);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 57, 53, 0.3), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  color: var(--white-muted);
  font-size: 1.02rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--red);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--white-dim);
  margin-top: 2px;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-shape {
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(229, 57, 53, 0.08);
  border-radius: 50%;
  filter: blur(60px);
}

.about-logo {
  width: 240px;
  position: relative;
  z-index: 1;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: 80px 0;
  background: var(--black-alt);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 57, 53, 0.2), transparent);
}

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

.contact-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: rgba(229, 57, 53, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.contact-card a,
.contact-card p {
  color: var(--white-muted);
  font-size: 0.95rem;
}

.contact-card a:hover {
  color: var(--red);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--black-light);
  border-top: 1px solid var(--black-border);
  padding: 60px 0 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--white-dim);
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--white-dim);
  font-size: 0.9rem;
}

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

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: var(--white-dim);
  font-size: 0.82rem;
}

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

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* =============================================
   PRIVACY & TERMS PAGES
   ============================================= */
.legal-hero {
  padding: 160px 0 60px;
  text-align: center;
  background: var(--black-light);
  position: relative;
}

.legal-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--black-border), transparent);
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-hero p {
  color: var(--white-dim);
  margin-top: 12px;
  font-size: 0.95rem;
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px 120px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  margin: 40px 0 16px;
  color: var(--white);
}

.legal-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 28px 0 10px;
  color: var(--white);
}

.legal-content p {
  color: var(--white-muted);
  margin-bottom: 14px;
  line-height: 1.75;
}

.legal-content ul {
  margin: 10px 0 18px 24px;
}

.legal-content ul li {
  color: var(--white-muted);
  margin-bottom: 8px;
  line-height: 1.65;
  list-style: disc;
}

.legal-content a {
  color: var(--red);
}

.legal-content a:hover {
  color: var(--red-light);
}

.legal-content strong {
  color: var(--white);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-visual {
    height: 300px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .apps-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

  .about-visual {
    order: -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: var(--black-card);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right var(--transition);
    border-left: 1px solid var(--black-border);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 16px 60px;
  }

  .hero-visual {
    height: 240px;
  }

  .hero-card {
    padding: 14px 20px;
    font-size: 0.85rem;
  }

  .card-icon {
    font-size: 1.4rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* =============================================
   BUBBLE SNYPE QUEST - Landing Page
   ============================================= */

/* Hero */
.bsq-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.bsq-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bsq-bubble {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.bsq-bubble-1 {
  width: 500px;
  height: 500px;
  background: var(--red);
  top: -150px;
  right: -50px;
  animation: float 8s ease-in-out infinite;
}

.bsq-bubble-2 {
  width: 350px;
  height: 350px;
  background: #FF6F61;
  bottom: -80px;
  left: -80px;
  animation: float 10s ease-in-out infinite reverse;
}

.bsq-bubble-3 {
  width: 200px;
  height: 200px;
  background: var(--red-light);
  top: 40%;
  left: 30%;
  animation: float 6s ease-in-out infinite 1s;
}

.bsq-bubble-4 {
  width: 150px;
  height: 150px;
  background: #FF8A80;
  top: 20%;
  right: 25%;
  animation: float 7s ease-in-out infinite 0.5s;
}

.bsq-bubble-5 {
  width: 250px;
  height: 250px;
  background: var(--red-dark);
  bottom: 20%;
  right: 10%;
  animation: float 9s ease-in-out infinite 2s;
}

.bsq-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.bsq-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(229, 57, 53, 0.15);
  color: var(--red);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(229, 57, 53, 0.3);
  margin-bottom: 20px;
}

.bsq-hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.bsq-hero-subtitle {
  font-size: 1.1rem;
  color: var(--white-muted);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.bsq-hero-cta {
  margin-bottom: 36px;
}

/* Google Play Button */
.bsq-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  text-decoration: none;
}

.bsq-btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(229, 57, 53, 0.35);
}

.bsq-btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(229, 57, 53, 0.45);
}

.bsq-btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.bsq-play-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.bsq-btn-lg .bsq-play-icon {
  width: 22px;
  height: 22px;
}

.bsq-hero-stats {
  display: flex;
  gap: 28px;
}

.bsq-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white-muted);
}

.bsq-stat-icon {
  font-size: 1.1rem;
}

/* Hero Visual */
.bsq-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 460px;
}

.bsq-phone-mockup {
  width: 240px;
  height: 480px;
  background: #1A1A1A;
  border-radius: 36px;
  border: 4px solid #333;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.bsq-phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 32px;
}

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

.bsq-phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #1A1A1A;
  border-radius: 12px;
  z-index: 2;
}

.bsq-floating-bubble {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--black-card);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  background: var(--black-card);
}

.bsq-mini-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bsq-float-1 {
  top: 40px;
  left: 10px;
  animation: floatCard 5s ease-in-out infinite;
}

.bsq-float-2 {
  bottom: 60px;
  right: 0;
  animation: floatCard 6s ease-in-out infinite 1s;
}

.bsq-float-3 {
  top: 50%;
  right: -20px;
  animation: floatCard 5.5s ease-in-out infinite 0.5s;
}

/* Features */
.bsq-features {
  padding: 80px 0;
  background: var(--black-light);
  position: relative;
}

.bsq-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 57, 53, 0.3), transparent);
}

.bsq-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.bsq-feature-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.bsq-feature-card:hover {
  border-color: rgba(229, 57, 53, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.bsq-feature-img-wrap {
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--black) 0%, #1a1015 100%);
  padding: 20px;
}

.bsq-feature-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.bsq-feature-content {
  padding: 24px 28px 28px;
}

.bsq-feature-content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.bsq-feature-content p {
  color: var(--white-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Screenshots */
.bsq-screenshots {
  padding: 80px 0;
  background: var(--black-alt);
  position: relative;
}

.bsq-screenshots::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 57, 53, 0.2), transparent);
}

.bsq-screenshots-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  margin-top: 48px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.bsq-screenshots-grid::-webkit-scrollbar {
  height: 6px;
}

.bsq-screenshots-grid::-webkit-scrollbar-track {
  background: var(--black-card);
  border-radius: 3px;
}

.bsq-screenshots-grid::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 3px;
}

.bsq-screenshot-card {
  flex: 0 0 auto;
  width: 200px;
  scroll-snap-align: start;
}

.bsq-screenshot-wrap {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  aspect-ratio: 9/16;
}

.bsq-screenshot-wrap:hover {
  border-color: rgba(229, 57, 53, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

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

/* How to Play */
.bsq-howto {
  padding: 80px 0;
  background: var(--black-light);
  position: relative;
}

.bsq-howto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 57, 53, 0.3), transparent);
}

.bsq-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.bsq-step {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  flex: 0 1 200px;
  transition: all var(--transition);
}

.bsq-step:hover {
  border-color: rgba(229, 57, 53, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.bsq-step-num {
  width: 48px;
  height: 48px;
  background: rgba(229, 57, 53, 0.15);
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 2px solid rgba(229, 57, 53, 0.3);
}

.bsq-step h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.bsq-step p {
  color: var(--white-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.bsq-step-arrow {
  display: flex;
  align-items: center;
  padding-top: 40px;
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Download CTA */
.bsq-download {
  padding: 100px 0;
  background: var(--black-alt);
  position: relative;
  overflow: hidden;
}

.bsq-download::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 57, 53, 0.2), transparent);
}

.bsq-download-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bsq-bubble-6 {
  width: 400px;
  height: 400px;
  background: var(--red);
  top: -100px;
  left: -100px;
  animation: float 8s ease-in-out infinite;
}

.bsq-bubble-7 {
  width: 300px;
  height: 300px;
  background: var(--red-light);
  bottom: -80px;
  right: -80px;
  animation: float 10s ease-in-out infinite reverse;
}

.bsq-download-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.bsq-download-icon {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  margin: 0 auto 28px;
  box-shadow: 0 12px 40px rgba(229, 57, 53, 0.3);
}

.bsq-download-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.bsq-download-text {
  color: var(--white-muted);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* =============================================
   BUBBLE SNYPE QUEST - RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .bsq-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .bsq-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .bsq-hero-cta {
    display: flex;
    justify-content: center;
  }

  .bsq-hero-stats {
    justify-content: center;
  }

  .bsq-hero-visual {
    min-height: 360px;
  }

  .bsq-features-grid {
    grid-template-columns: 1fr;
  }

  .bsq-steps {
    flex-direction: column;
    align-items: center;
  }

  .bsq-step-arrow {
    transform: rotate(90deg);
    padding-top: 0;
  }
}

@media (max-width: 600px) {
  .bsq-hero {
    padding: 100px 16px 60px;
  }

  .bsq-phone-mockup {
    width: 200px;
    height: 400px;
  }

  .bsq-hero-stats {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .bsq-floating-bubble {
    width: 48px;
    height: 48px;
  }

  .bsq-screenshot-card {
    width: 160px;
  }

  .bsq-step {
    flex: 0 1 100%;
  }
}
