/* CSS Variables for Theme */
:root {
  --primary-color: #E53935;
  --secondary-color: #1976D2;
  --accent-color: #FF9800;
  --background-color: #FFFFFF;
  --background-alt: #FFFFFF;
  --text-primary: #212121;
  --text-secondary: #757575;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;

}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(224, 224, 224, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.app-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.header-info {
  flex: 1;
  min-width: 0;
}

.app-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  background: var(--background-alt);
  border-radius: 8px;
  padding: 4px;
  gap: 4px;
}

.lang-btn {
  padding: 8px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
  transition: var(--transition);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.lang-btn.active {
  background: var(--background-color);
  color: var(--primary-color);
  box-shadow: var(--shadow);
}

/* Header Navigation */
.header-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-link:hover {
  background: var(--background-alt);
  color: var(--primary-color);
}

/* About Section */
.about-section {
  padding: 60px 0;
  background: var(--background-alt);
  text-align: center;
}

.section-tagline {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-description {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.data-sources {
  background: var(--background-color);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.sources-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.sources-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.source-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.source-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.source-logo-text {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 8px;
}

.source-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.source-info strong {
  font-size: 1rem;
  color: var(--primary-color);
}

.source-info span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Features Section */
.features-section {
  padding: 60px 0;
  background: var(--background-color);
}

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

.feature-item {
  text-align: center;
  padding: 24px;
  border-radius: 12px;
  background: var(--background-alt);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.feature-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Hero Section */
.hero {
  padding: 0;
  background: #ffffff;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin: 32px 0;
  padding: 0 20px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 48px;
  transition: var(--transition);
}

.store-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.store-badge:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.store-badge:active {
  transform: translateY(0);
}

.description-container {
  max-width: 600px;
  margin: 0 auto 40px;
  padding: 0 20px;
  text-align: center;
}

.description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Full-width screenshots section */
.screenshots-grid-fullwidth {
  width: 100vw;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.platform-screenshots {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.platform-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: transparent;
  padding: 12px 20px;
}

.platform-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
}

.platform-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.platform-badge {
  display: flex;
  align-items: center;
  margin-left: 4px;
  transition: var(--transition);
}

.platform-badge img {
  height: 44px;
  width: auto;
}

.platform-badge:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.platform-badge:active {
  transform: translateY(0);
}

/* Carousel Styles */
.carousel-container {
  flex: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.carousel-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  width: 100%;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 8px 80px;
}

.carousel-slide img {
  width: auto;
  height: auto;
  max-width: calc(100vw - 16px);
  max-height: calc(100vh - 160px);
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.2));
}

/* Carousel Controls */
.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 16px;
  z-index: 20;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  pointer-events: auto;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.carousel-btn:hover {
  background: var(--background-color);
  transform: scale(1.1);
}

.carousel-btn:active {
  transform: scale(0.95);
}

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  color: #BDBDBD;
  transition: var(--transition);
}

.dot.active::before {
  background: var(--primary-color);
  width: 20px;
  border-radius: 4px;
}

.dot:hover::before {
  transform: scale(1.2);
}

/* Footer */
.footer {
  padding: 40px 0;
  background: #FFFFFF;
  color: var(--text-primary);
  border-top: 1px solid #E0E0E0;
}

.footer-content {
  text-align: center;
}

.footer-section {
  margin-bottom: 32px;
}

.footer-section:last-child {
  margin-bottom: 0;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  opacity: 0.9;
}

.footer-text {
  font-size: 0.875rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--text-primary);
  opacity: 0.8;
  transition: var(--transition);
  padding: 8px;
}

.footer-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.disclaimer {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 24px;
  line-height: 1.5;
}

/* Mobile: Stack header on very small screens */
@media (max-width: 480px) {
  .header-content {
    flex-direction: column;
    gap: 12px;
  }

  .header-nav {
    width: 100%;
    justify-content: center;
  }

  .nav-link {
    font-size: 0.8125rem;
    padding: 8px 10px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .about-section {
    padding: 40px 0;
  }

  .features-section {
    padding: 40px 0;
  }
}

/* Tablet Styles (640px+) */
@media (min-width: 640px) {
  .container {
    padding: 0 32px;
  }

  .header {
    padding: 20px 0;
  }

  .app-icon {
    width: 56px;
    height: 56px;
  }

  .app-title {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    margin: 40px 0;
  }

  .store-badge {
    width: 180px;
    height: 54px;
  }

  .section-title {
    font-size: 2rem;
  }

  /* Desktop: Side-by-side carousels */
  .screenshots-grid-fullwidth {
    flex-direction: row;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }

  .platform-screenshots {
    width: 50vw;
    height: 100vh;
    border-right: 1px solid #E0E0E0;
  }

  .platform-screenshots:last-child {
    border-right: none;
  }

  .platform-header {
    padding: 14px 24px;
    gap: 14px;
  }

  .platform-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }

  .platform-title {
    font-size: 1.125rem;
  }

  .platform-badge img {
    height: 52px;
    width: auto;
  }

  .carousel-slide {
    width: 50vw;
    height: 100vh;
    padding: 90px 16px 80px;
  }

  .carousel-slide img {
    max-width: calc(50vw - 32px);
    max-height: calc(100vh - 170px);
  }

  .carousel-btn {
    width: 48px;
    height: 48px;
    font-size: 1.75rem;
  }
}

/* Desktop Styles (768px+) */
@media (min-width: 768px) {
  /* Add hover states for desktop */
  .lang-btn:hover {
    background: rgba(0, 0, 0, 0.08);
  }
}

/* Large screens: Add max-width to phone images for realism */
@media (min-width: 1024px) {
  .carousel-slide {
    padding: 96px 32px 80px;
  }

  .carousel-slide img {
    max-width: min(400px, calc(50vw - 64px));
    max-height: calc(100vh - 176px);
  }

  .carousel-controls {
    padding: 0 32px;
  }
}

/* Extra large screens: Further constrain */
@media (min-width: 1440px) {
  .carousel-slide img {
    max-width: min(450px, calc(50vw - 64px));
  }
}

/* Loading State */
.loading {
  text-align: center;
  padding: 40px;
  color: var(--text-secondary);
}

/* Hidden utility */
.hidden {
  display: none !important;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states for keyboard navigation */
button:focus-visible,
a:focus-visible,
.lang-btn:focus-visible,
.dot:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* ===== Earthquakes Page Styles ===== */

/* Active navigation link */
.nav-link-active {
  color: var(--primary-color);
  font-weight: 600;
}

/* Earthquakes Section */
.earthquakes-section {
  padding: 40px 0 60px;
  background: var(--background-alt);
  min-height: calc(100vh - 200px);
}

.earthquakes-section .section-title {
  text-align: center;
  margin-bottom: 8px;
}

.earthquakes-section .section-description {
  text-align: center;
  margin-bottom: 32px;
}

/* Filter Controls */
.filter-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  background: var(--background-color);
  color: var(--text-primary);
  border: 2px solid #E0E0E0;
  transition: var(--transition);
  min-width: 100px;
}

.filter-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.filter-btn.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

/* Earthquake List */
.earthquake-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 700px;
  margin: 0 auto;
}

/* Earthquake Card */
.earthquake-card {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--background-color);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.earthquake-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Magnitude Display */
.earthquake-magnitude {
  font-size: 2.5rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* Magnitude Color Classes */
.magnitude-low {
  color: #4CAF50;
}

.magnitude-medium {
  color: #FFC107;
}

.magnitude-high {
  color: #FF9800;
}

.magnitude-severe {
  color: #E53935;
}

/* Earthquake Details */
.earthquake-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.earthquake-location {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.earthquake-place {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.earthquake-address {
  font-size: 0.875rem;
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.earthquake-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.earthquake-date,
.earthquake-depth {
  display: flex;
  align-items: center;
  gap: 4px;
}

.earthquake-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

/* Maps Link */
.maps-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary-color);
  transition: var(--transition);
}

.maps-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Error State */
.error-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
}

.error-state.hidden {
  display: none;
}

.error-message {
  max-width: 400px;
  margin: 0 auto;
}

.error-message p {
  margin-bottom: 12px;
  font-size: 1rem;
}

.error-details {
  font-size: 0.875rem;
  color: var(--primary-color);
}

.retry-btn {
  margin-top: 16px;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.retry-btn:hover {
  background-color: #c62828;
  transform: translateY(-1px);
}

/* Mobile Responsive for Earthquakes */
@media (max-width: 480px) {
  .earthquakes-section {
    padding: 24px 0 40px;
  }

  .filter-controls {
    gap: 8px;
  }

  .filter-btn {
    padding: 10px 16px;
    min-width: 80px;
    font-size: 0.8125rem;
  }

  .earthquake-card {
    flex-direction: column;
    padding: 16px;
  }

  .earthquake-magnitude {
    width: 44px;
    height: 44px;
    font-size: 1.125rem;
  }

  .earthquake-place {
    font-size: 1rem;
  }

  .earthquake-address {
    white-space: normal;
  }

  .earthquake-meta {
    flex-direction: column;
    gap: 4px;
  }

  .earthquake-actions {
    flex-wrap: wrap;
  }
}

/* ===== TikTok Share Styles ===== */

/* TikTok Share Button */
.tiktok-share-btn {
  background: #000000;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tiktok-share-btn:hover {
  background: #25f4ee;
  color: #000000;
}

.tiktok-share-btn:active {
  transform: scale(0.98);
}

/* TikTok Modal */
.tiktok-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.tiktok-modal.hidden {
  display: none;
}

.tiktok-modal-container {
  background: #ffffff;
  border-radius: 16px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

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

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

/* Modal Loading State */
.tiktok-modal-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.tiktok-modal-loading p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.tiktok-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #e0e0e0;
  border-top: 4px solid #000000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Modal Success State */
.tiktok-modal-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.tiktok-check-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #4CAF50;
  color: #ffffff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tiktok-modal-success h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.tiktok-modal-success p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.5;
}

/* Modal Error State */
.tiktok-modal-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.tiktok-error-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #E53935;
  color: #ffffff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tiktok-modal-error h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.tiktok-modal-error p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.5;
}

/* Modal Auth State */
.tiktok-modal-auth {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.tiktok-modal-auth h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.tiktok-modal-auth p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.5;
}

/* Modal Buttons */
.tiktok-modal-btn {
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  min-width: 120px;
}

.tiktok-auth-btn {
  background: #000000;
  color: #ffffff;
}

.tiktok-auth-btn:hover {
  background: #25f4ee;
  color: #000000;
}

.tiktok-cancel-btn {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid #e0e0e0;
}

.tiktok-cancel-btn:hover {
  background: var(--background-alt);
}

.tiktok-modal-success .tiktok-modal-btn,
.tiktok-modal-error .tiktok-modal-btn {
  background: var(--primary-color);
  color: #ffffff;
  margin-top: 8px;
}

.tiktok-modal-success .tiktok-modal-btn:hover,
.tiktok-modal-error .tiktok-modal-btn:hover {
  background: #c62828;
}

/* Mobile Responsive for TikTok */
@media (max-width: 480px) {
  .tiktok-share-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }

  .tiktok-modal-container {
    margin: 16px;
  }

  .tiktok-modal-content {
    padding: 24px;
  }
}
