/* =========================================================
   VIDPU — LANDING PAGE CSS (Desktop-First, Dark Theme)
   Primary: #4e1ff6  |  Accent: #7c3aed  |  BG: #0a0a0f
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;1,14..32,400&display=swap');

:root {
  --primary: #4e1ff6;
  --primary-light: #6d3ff7;
  --accent: #7c3aed;
  --accent2: #a855f7;
  --bg: #07070d;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card2: rgba(78, 31, 246, 0.08);
  --border: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(78, 31, 246, 0.3);
  --text: #f0f0f8;
  --text-muted: #8b8ba8;
  --text-dim: #555570;
  --input-bg: rgba(255, 255, 255, 0.04);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-glow: 0 0 60px rgba(78, 31, 246, 0.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.landing-body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── Background Orbs ─────────────────────────────────── */
body.landing-body::before,
body.landing-body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(120px);
  opacity: 0.15;
}

body.landing-body::before {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  top: -200px;
  left: -200px;
}

body.landing-body::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent2) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* ─── HEADER ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 7, 13, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 28px;
  width: auto;
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-primary a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 10px;
  transition: var(--transition);
}

.nav-primary a:hover {
  color: var(--text);
  background: var(--bg-card);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* Lang Switcher */
.lang-switcher {
  position: relative;
  user-select: none;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}

.lang-current:hover {
  background: var(--bg-card);
  color: var(--text);
}

.lang-current img {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #13131f;
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 140px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher:focus-within .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: background 0.15s;
}

.lang-item:hover {
  background: var(--bg-card);
  color: var(--text);
}

.lang-item img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

/* Nav Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

.btn-md {
  padding: 12px 28px;
  font-size: 0.95rem;
}

.btn-lg {
  padding: 15px 36px;
  font-size: 1rem;
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover {
  background: var(--bg-card);
  color: var(--text);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: var(--bg-card);
  border-color: var(--border-accent);
}

.btn-primary-land {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 8px 30px -5px rgba(78, 31, 246, 0.5);
}

.btn-primary-land:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -5px rgba(78, 31, 246, 0.6);
}

.btn-primary-land:active {
  transform: translateY(1px);
}

/* ─── HERO SECTION ────────────────────────────────────── */
.hero {
  padding: 40px 0 100px;
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    gap: 80px;
  }
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(78, 31, 246, 0.12);
  border: 1px solid rgba(78, 31, 246, 0.25);
  color: #a78bfa;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.equalizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 14px;
}

.equalizer span {
  display: block;
  width: 3px;
  border-radius: 3px;
  background: #a78bfa;
  animation: eq 1.2s ease-in-out infinite;
}

.equalizer span:nth-child(1) {
  animation-delay: 0s;
}

.equalizer span:nth-child(2) {
  animation-delay: 0.15s;
}

.equalizer span:nth-child(3) {
  animation-delay: 0.3s;
}

.equalizer span:nth-child(4) {
  animation-delay: 0.45s;
}

@keyframes eq {

  0%,
  100% {
    height: 4px;
  }

  50% {
    height: 14px;
  }
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--primary-light), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content>p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 0;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats-inline {
  display: flex;
  gap: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.hero-stats-inline .stat-item h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}

.hero-stats-inline .stat-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 500;
}

/* ─── AUTH CARD ───────────────────────────────────────── */
.auth-card {
  width: 100%;
  max-width: 420px;
  margin: 0;
  text-align: left;
  background: rgba(15, 15, 25, 0.8);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-glow), 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  animation: cardFloat 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent2), transparent);
  opacity: 0.7;
}

@keyframes cardFloat {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.auth-header {
  margin-bottom: 24px;
}

.auth-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.auth-header p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.auth-card .form-group {
  position: relative;
  margin-bottom: 14px;
}

.auth-card .form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.auth-card .form-group input {
  width: 100%;
  padding: 11px 14px;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition);
}

.auth-card .form-group input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(78, 31, 246, 0.05);
  box-shadow: 0 0 0 3px rgba(78, 31, 246, 0.12);
}

.auth-card .form-group.password-group .toggle-pass {
  position: absolute;
  right: 12px;
  bottom: 11px;
  width: 22px;
  height: 22px;
  border: none;
  background: none;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.2s;
}

.auth-card .form-group.password-group .toggle-pass:hover {
  opacity: 0.9;
}

.auth-card .form-group.password-group .toggle-pass::before,
.auth-card .form-group.password-group .toggle-pass::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.auth-card .form-group.password-group .toggle-pass::before {
  width: 12px;
  height: 8px;
  border: 1.5px solid #fff;
  border-radius: 50%;
}

.auth-card .form-group.password-group .toggle-pass::after {
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
}

.auth-card .form-group.password-group .toggle-pass.active::after {
  width: 1.5px;
  height: 14px;
  background: #fff;
  border-radius: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

.auth-card .btn-primary-land {
  width: 100%;
  padding: 12px;
  font-size: 0.95rem;
  margin-top: 4px;
  border-radius: 10px;
}

.auth-card .cf-turnstile {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}

.auth-switch {
  text-align: center;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.auth-switch a {
  color: #a78bfa;
  font-weight: 600;
  text-decoration: none;
}

.auth-switch a:hover {
  text-decoration: underline;
}

.auth-card .message {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.auth-card .message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.auth-card .message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #86efac;
}

/* ─── GOOGLE BUTTON & DIVIDER ─────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 18px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.divider span {
  padding: 0 14px;
}

.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 13px;
  background: rgba(167, 139, 250, 0.08);
  color: #fff;
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 12px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all var(--transition);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-google:hover {
  background: rgba(167, 139, 250, 0.15);
  border-color: rgba(167, 139, 250, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(167, 139, 250, 0.15);
}

/* ─── FEATURES ────────────────────────────────────────── */
.features {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .eyebrow {
  margin-bottom: 16px;
}

.section-header .dot {
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 12px;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(78, 31, 246, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(78, 31, 246, 0.2);
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(78, 31, 246, 0.12);
  border: 1px solid rgba(78, 31, 246, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #a78bfa;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── STATS ───────────────────────────────────────────── */
.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(78, 31, 246, 0.08) 0%, rgba(124, 58, 237, 0.05) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stats-grid .stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.stats-grid .stat-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ─── HOW IT WORKS ────────────────────────────────────── */
.how-it-works {
  padding: 100px 0;
}

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

.step-card {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

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

.step-number {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(78, 31, 246, 0.25);
  letter-spacing: -0.05em;
  flex-shrink: 0;
  line-height: 1;
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── FAQ ─────────────────────────────────────────────── */
.faq {
  padding: 100px 0;
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: var(--transition);
}

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

.faq-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── CTA BOTTOM ──────────────────────────────────────── */
.cta-bottom {
  padding: 100px 0;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(78, 31, 246, 0.15) 0%, transparent 70%);
  border-top: 1px solid var(--border);
}

.cta-bottom h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.cta-bottom p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* ─── SEO CONTENT ─────────────────────────────────────── */
.seo-content {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.seo-article h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.seo-article p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.seo-article ul {
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.seo-article ul li {
  margin-bottom: 8px;
  line-height: 1.65;
}

/* ─── FOOTER ──────────────────────────────────────────── */
.site-footer {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col>img {
  height: 26px;
  width: auto;
  margin-bottom: 14px;
  opacity: 0.75;
}

.footer-col>p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}

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

/* ─── NAV TOGGLE (Mobile/small screens) ──────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .auth-card {
    max-width: 420px;
  }

  .features-grid,
  .steps-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .nav-primary {
    display: none;
  }

  .nav-primary.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 7, 13, 0.98);
    border-top: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 48px 0 40px;
    min-height: auto;
  }

  .container {
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-stats-inline {
    gap: 24px;
    flex-wrap: wrap;
  }

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

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

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

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 18px 0;
  color: var(--text-muted, #94a3b8);
  font-size: 0.85rem;
  font-weight: 500;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.divider span {
  padding: 0 14px;
}

.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 13px;
  background: #ffffff;
  color: #7c3aed;
  border: 2px solid #7c3aed;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.15);
}

.btn-google:hover {
  background: rgba(124, 58, 237, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.25);
}

@media (max-width: 767px) {
  .desktop-view {
    display: none !important;
  }

  body {
    background-color: var(--bg-color, #050505);
  }
}

@media (min-width: 768px) {
  .mobile-view {
    display: none !important;
  }

  body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #07070d;
    color: #f0f0f8;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
  }
}