/* Landing Page Specific Styles */
.landing-page {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(to bottom, #f8f9ff 0%, #ffffff 100%);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.navbar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand h1 {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Added styling for PWA install button */
.btn-install-app {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-install-app:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.btn-install-app:active {
  transform: translateY(0);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 10rem 0 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  z-index: 0;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero-bg::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(118, 75, 162, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #1f2937 0%, #667eea 50%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 1.75rem;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Added styles for liquidity banner and stats marquee */
.liquidity-banner {
  margin: 2rem auto;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.liquidity-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.liquidity-content i {
  color: #667eea;
  font-size: 1.2rem;
}

.liquidity-label {
  color: #6b7280;
  font-size: 0.9rem;
}

.liquidity-amount {
  color: #1f2937;
  font-size: 1.1rem;
  font-weight: 800;
}

.liquidity-desc {
  color: #9ca3af;
  font-size: 0.8rem;
  font-weight: 400;
  margin-left: 0.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Live Activity Ticker */
.activity-ticker {
  max-width: 760px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(102, 126, 234, 0.18);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.12);
  overflow: hidden;
}

.activity-ticker-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4f46a8;
  background: linear-gradient(90deg, rgba(102, 126, 234, 0.12) 0%, rgba(118, 75, 162, 0.06) 100%);
  border-bottom: 1px solid rgba(102, 126, 234, 0.12);
}

.activity-live-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: activity-pulse 1.6s infinite;
}

@keyframes activity-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  }
  70% {
    box-shadow: 0 0 0 0.6rem rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.activity-ticker-viewport {
  position: relative;
  overflow: hidden;
  padding: 0.85rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.activity-ticker-track {
  display: flex;
  align-items: stretch;
  gap: 0.85rem;
  width: max-content;
  animation: activity-scroll 120s linear infinite;
}

.activity-ticker:hover .activity-ticker-track {
  animation-play-state: paused;
}

@keyframes activity-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  flex-shrink: 0;
}

.activity-item-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: white;
}

.activity-sell .activity-item-icon {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.activity-buy .activity-item-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.activity-withdraw .activity-item-icon {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.activity-profit .activity-item-icon {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.activity-item-text {
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
}

.activity-item-text strong {
  color: #1f2937;
  font-weight: 800;
}

.activity-user {
  margin-right: 0.15rem;
}

.activity-item-time {
  font-size: 0.7rem;
  font-weight: 600;
  color: #9ca3af;
  padding-left: 0.6rem;
  margin-left: 0.2rem;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

/* Rates Section */
.rates-section {
  padding: 6rem 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: #6b7280;
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.rate-card {
  background: white;
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.rate-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
}

.rate-card.buy-card::before {
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.rate-card.sell-card::before {
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
}

.rate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.rate-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.buy-card .rate-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.sell-card .rate-icon {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.rate-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.rate-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.rate-desc {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.rate-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.buy-card .rate-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.sell-card .rate-btn {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
}

.rate-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Added Download App Section styling */
.download-app-section {
  padding: 4rem 0;
  background: white;
}

.download-app-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 24px;
  box-shadow: 0 12px 48px rgba(102, 126, 234, 0.25);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-app-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.download-app-card::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

.download-app-content {
  position: relative;
  z-index: 1;
}

.download-app-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  backdrop-filter: blur(10px);
}

.download-app-card h2 {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.download-app-card p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.download-button-wrapper {
  margin-bottom: 2rem;
}

.btn-download-app {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  color: #667eea;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.btn-download-app:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.btn-download-app:active {
  transform: translateY(-2px);
}

.btn-download-app i {
  font-size: 1.125rem;
}

.install-prompt-info {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.install-prompt-info i {
  font-size: 1rem;
}

.app-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.app-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
}

.app-feature i {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 1);
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #f8f9ff 0%, #ffffff 100%);
}

.features .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
}

.feature-icon.purple {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-icon.blue {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.feature-icon.green {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.feature-icon.orange {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.cta-content .btn-primary {
  background: white;
  color: #667eea;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-content .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 3rem 0 2rem;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .download-app-card h2 {
    font-size: 1.8rem;
  }

  .download-app-card p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .navbar .container {
    padding: 0 1rem;
  }

  .hero {
    padding: 8rem 0 4rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .activity-ticker {
    margin-bottom: 2rem;
  }

  .activity-item-text {
    font-size: 0.8125rem;
  }

  .activity-ticker-track {
    animation-duration: 80s;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .rates-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-install-app {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }

  .btn-install-app i {
    font-size: 0.875rem;
  }

  .download-app-card {
    padding: 2rem 1.5rem;
  }

  .download-app-card h2 {
    font-size: 1.5rem;
  }

  .download-app-card p {
    font-size: 0.9rem;
  }

  .btn-download-app {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }

  .btn-download-app i {
    font-size: 1rem;
  }

  .app-features {
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
  }
}

/* iOS Instructions Modal */
.ios-instructions-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1rem;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.ios-modal-content {
  background: white;
  border-radius: 24px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
  position: relative;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.ios-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  color: #6b7280;
  transition: all 0.2s ease;
  z-index: 1;
}

.ios-modal-close:hover {
  background: #e5e7eb;
  color: #1f2937;
}

.ios-modal-header {
  text-align: center;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid #f3f4f6;
}

.ios-modal-header i {
  font-size: 2.5rem;
  color: #667eea;
  margin-bottom: 0.75rem;
  display: block;
}

.ios-modal-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.ios-modal-body {
  padding: 2rem;
}

.ios-modal-body p {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.ios-modal-body p:last-of-type {
  margin-bottom: 1.5rem;
}

.ios-modal-body strong {
  color: #1f2937;
  font-weight: 600;
}

.ios-icon-preview {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid #f3f4f6;
  margin-top: 1.5rem;
}

.ios-icon-preview img {
  width: 5rem;
  height: 5rem;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
}

/* Ensure download button is always visible, never hidden after install */
#install-app-button {
  display: inline-flex !important;
}

/* Responsive iOS modal */
@media (max-width: 480px) {
  .ios-modal-content {
    max-width: 100%;
    margin: 0 1rem;
  }

  .ios-modal-header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .ios-modal-body {
    padding: 1.5rem;
  }

  .ios-modal-header h3 {
    font-size: 1.25rem;
  }

  .ios-modal-body p {
    font-size: 0.875rem;
  }
}
