:root {
  /* Dark theme colors */
  --primary: #00FF8C;
  --background: #000000;
  --surface: #121212;
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0A0;
  --border: #333333;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  
  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}

/* Header */
.header {
  padding: var(--spacing-md) var(--spacing-lg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background-color: var(--background);
  z-index: 1001;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.8;
}

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

.logo-text {
  color: var(--text-primary);
}

.nav {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
}

.nav a {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--primary);
  opacity: 1;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, #00d978 100%);
  color: #000000 !important;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 255, 140, 0.4);
  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, 0.4), transparent);
  transition: left 0.5s;
}

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

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 255, 140, 0.6);
  opacity: 1 !important;
}

.cta-badge {
  font-size: 16px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 255, 140, 0.1);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
  position: relative;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
  border-radius: 2px;
}

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

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

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

/* Overlay */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.4s;
  backdrop-filter: blur(4px);
}

.overlay.active {
  display: block;
  opacity: 1;
}

/* Hero Section */
.hero {
  padding: 120px var(--spacing-lg) var(--spacing-xl);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  text-align: left;
}

/* Beta Badge */
.beta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.4);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: var(--spacing-md);
  font-size: 14px;
  font-weight: 600;
  color: #FFC107;
}

.beta-icon {
  font-size: 16px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  line-height: 1.1;
  color: var(--primary);
}

.hero h1 .highlight {
  color: var(--text-primary);
  font-weight: 700;
}

.hero .subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

.beta-info {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: var(--spacing-md);
  margin-bottom: 0;
  line-height: 1.6;
}

/* CTA Button */
.cta-container {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--primary) 0%, #00d978 100%);
  color: var(--background);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(0, 255, 140, 0.3);
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 255, 140, 0.5);
  opacity: 1;
}

.cta-button:active {
  transform: translateY(-2px);
}

.cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cta-text {
  font-weight: 600;
}

.hero .tagline {
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
  text-align: left;
  line-height: 1.6;
}

.hero .tagline strong {
  font-weight: 700;
}

.hero-background {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 255, 140, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.store-badges {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  margin-top: var(--spacing-lg);
}

/* Modern store badges */
.store-badge-modern {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--text-primary);
  border-radius: 12px;
  transition: all 0.3s;
  color: var(--background);
  min-width: 160px;
}

.store-badge-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
  opacity: 0.9;
}

.store-badge-modern.google-play {
  background: var(--text-primary);
}

.store-badge-modern.app-store {
  background: var(--background);
  border: 2px solid var(--text-primary);
  color: var(--text-primary);
}

.store-badge-modern.app-store:hover {
  background: var(--background);
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.badge-subtitle {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-title {
  font-size: 16px;
  font-weight: 600;
}

.store-disclaimer {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: var(--spacing-sm);
  line-height: 1.5;
}

/* Section */
.section {
  padding: var(--spacing-xl) var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

/* Phone Mockups */
.phone-mockup {
  position: relative;
  width: 320px;
  height: 640px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 0 2px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  z-index: 5;
}

.phone-mockup.small {
  width: 260px;
  height: 520px;
  border-radius: 32px;
  padding: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.phone-mockup.small:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 30px 80px rgba(0, 255, 140, 0.3),
    0 0 0 2px var(--primary),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.mockup-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  background: var(--background);
  border: none;
}

.phone-mockup.small .mockup-screen {
  border-radius: 24px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Floating Cards */
.floating-cards {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.floating-card {
  position: absolute;
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  animation: float 3s ease-in-out infinite;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.floating-card:hover {
  transform: translateY(-8px) scale(1.08);
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(0, 255, 140, 0.4);
}

.card-icon {
  font-size: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 255, 140, 0.3));
}

.card-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

/* Card positions */
.card-1 {
  top: 20%;
  left: -8%;
  animation-delay: 0s;
}

.card-2 {
  top: 30%;
  right: -12%;
  animation-delay: 0.5s;
}

.card-3 {
  bottom: 30%;
  left: -8%;
  animation-delay: 1s;
}

.card-4 {
  bottom: 15%;
  right: -10%;
  animation-delay: 1.5s;
}

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

/* Screenshots */
.screenshots {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-lg);
}

.screenshot-card {
  text-align: center;
}

.screenshot-label {
  margin-top: var(--spacing-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.feature {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(18, 18, 18, 0.8) 100%);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 255, 140, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(0, 255, 140, 0.2);
}

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

.feature-icon {
  font-size: 40px;
  margin-bottom: var(--spacing-sm);
  filter: drop-shadow(0 4px 8px rgba(0, 255, 140, 0.3));
  position: relative;
  z-index: 1;
}

.feature h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.feature p {
  color: var(--text-secondary);
  font-size: 16px;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.step {
  text-align: center;
  padding: var(--spacing-md);
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, #00d978 100%);
  color: var(--background);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto var(--spacing-sm);
  box-shadow: 0 8px 20px rgba(0, 255, 140, 0.4);
  transition: all 0.3s;
}

.step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(0, 255, 140, 0.6);
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.step p {
  color: var(--text-secondary);
  font-size: 16px;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
  padding: 4rem 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #121212;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #00FF8C;
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #00FF8C;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #00FF8C;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
  color: #b0b0b0;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Social Links */
.social-links {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  margin-top: var(--spacing-lg);
}

.social-link {
  width: 56px;
  height: 56px;
  background-color: var(--surface);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: var(--text-primary);
}

.social-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 255, 140, 0.3);
  border-color: var(--primary);
}

.social-link.whatsapp:hover {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border-color: #25D366;
}

.social-link.instagram:hover {
  background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  color: white;
  border-color: #f09433;
}

/* Footer */
.footer {
  padding: var(--spacing-lg);
  border-top: 1px solid var(--border);
  margin-top: var(--spacing-xl);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.footer-links {
  display: flex;
  gap: var(--spacing-md);
}

.footer p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Privacy Policy */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-lg);
}

.privacy-content h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.privacy-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
}

.privacy-content p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-secondary);
  line-height: 1.8;
}

.privacy-content ul {
  margin-left: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.privacy-content li {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xs);
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-container {
  background: #000000;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 255, 140, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  border-radius: 8px;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.modal-content {
  padding: 48px 32px 32px;
  text-align: center;
}

.modal-icon {
  font-size: 64px;
  margin-bottom: var(--spacing-md);
  animation: modalIconBounce 0.6s ease-out;
}

@keyframes modalIconBounce {
  0% {
    transform: scale(0) rotate(-180deg);
  }
  50% {
    transform: scale(1.1) rotate(10deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.modal-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.modal-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: var(--spacing-lg);
}

.modal-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.modal-button.primary {
  background: linear-gradient(135deg, var(--primary) 0%, #00d978 100%);
  color: var(--background);
  box-shadow: 0 8px 24px rgba(0, 255, 140, 0.3);
}

.modal-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 255, 140, 0.5);
}

.modal-button.secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.modal-button.secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border-color: var(--text-secondary);
}

/* Animations */
.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.fade-in:nth-child(2) {
  animation-delay: 0.2s;
  opacity: 0;
}

.fade-in:nth-child(3) {
  animation-delay: 0.4s;
  opacity: 0;
}

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

.scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 80px var(--spacing-lg) var(--spacing-xl);
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .hero-text {
    text-align: center;
  }
  
  .beta-badge {
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero .subtitle {
    font-size: 18px;
  }
  
  .beta-info {
    font-size: 14px;
  }
  
  .cta-button {
    padding: 14px 24px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }
  
  .store-badges {
    justify-content: center;
  }
  
  .phone-mockup {
    width: 280px;
    height: 560px;
  }
  
  .phone-mockup.small {
    width: 220px;
    height: 440px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 100px 32px 32px;
    border-left: 1px solid var(--border);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav a {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.2s;
  }
  
  .nav a:first-child {
    border-top: 1px solid var(--border);
  }
  
  .nav a:hover {
    color: var(--primary);
    padding-left: 8px;
  }
  
  .nav-cta {
    margin-top: 24px;
    justify-content: center;
    border: none !important;
    padding: 16px 24px !important;
  }
  
  .nav-cta:hover {
    padding-left: 24px !important;
  }
  
  .logo-img {
    height: 32px;
  }
  
  .floating-cards {
    display: none;
  }
}
