:root {
  --la-primary: hsl(245, 80%, 65%);
  --la-primary-deep: hsl(245, 80%, 55%);
  --la-primary-soft: hsl(245, 100%, 97%);
  --la-accent: hsl(280, 80%, 65%);
  --la-accent-deep: hsl(280, 80%, 55%);
  --la-accent-soft: hsl(280, 100%, 97%);
  --la-bg: hsl(240, 30%, 98%);
  --la-card-bg: rgba(255, 255, 255, 0.75);
  --la-glass-border: rgba(99, 102, 241, 0.08);
  --la-text: hsl(222, 47%, 11%);
  --la-muted: hsl(215, 16%, 47%);
  --la-border: hsl(214, 32%, 91%);
  --la-border-light: hsl(210, 40%, 96.1%);
  --la-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --la-shadow-md: 0 12px 32px rgba(99, 102, 241, 0.06);
  --la-shadow-lg: 0 24px 60px rgba(99, 102, 241, 0.12);
  --la-radius-lg: 28px;
  --la-radius-md: 18px;
}

[data-la-app] {
  box-sizing: border-box;
  width: 95%;
  max-width: 1400px;
  margin: 20px auto;
  padding: 40px 24px;
  position: relative;
  background-color: #ffffff;
  border: 1px solid var(--la-border);
  border-radius: 24px;
  box-shadow: var(--la-shadow-md);
  color: var(--la-text);
  font-family: "Outfit", "Inter", system-ui, sans-serif;
  z-index: 1;
}

/* Glass Inner Cards Layer */
.la-input-card, .la-style-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.la-input-card {
  box-sizing: border-box;
  max-width: 1000px;
  margin: 0 auto 40px;
  background: var(--la-card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--la-glass-border);
  border-radius: var(--la-radius-lg);
  padding: 32px;
  box-shadow: var(--la-shadow-lg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.la-input-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--la-primary);
  box-shadow: 0 30px 70px rgba(99, 102, 241, 0.18);
}

.la-input-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.la-label {
  font-weight: 700;
  font-size: 15px;
  color: var(--la-text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.la-btn-clear {
  background: none;
  border: none;
  padding: 4px 8px;
  font-size: 13px;
  font-weight: 600;
  color: #ef4444;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
}

.la-btn-clear:hover {
  background: #fef2f2;
}

.la-input {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 16px;
  font-size: 18px;
  border: none;
  background: #f8fafc;
  border-radius: 14px;
  min-height: 120px;
  resize: none;
  color: var(--la-text);
  font-family: inherit;
  line-height: 1.6;
}

.la-input:focus {
  outline: none;
  background: #fff;
}

.la-help {
  margin-top: 12px;
  font-size: 13px;
  color: var(--la-muted);
}

/* App Layout */
.la-app-grid {
  display: block;
}

/* History Section Styles */
.la-history-section {
  max-width: 100%;
  margin: 24px 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
  animation: la-fade-in 0.4s ease-out;
  position: sticky;
  top: 10px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.la-history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.la-history-title {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: var(--la-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.la-btn-clear-history {
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s;
}

.la-btn-clear-history:hover {
  color: #ef4444;
  background: #fef2f2;
}

.la-history-list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--la-accent) transparent;
  flex-direction: row;
}

.la-history-item {
  flex: 0 0 auto;
  background: #fff;
  border: 1.5px solid var(--la-border);
  padding: 10px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 5px rgba(0,0,0,0.04);
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.la-history-item:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--la-accent);
  color: var(--la-accent-deep);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.12);
}

@keyframes la-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.la-history-item.la-new-item {
  animation: la-pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes la-pop {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.la-toolbar {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.la-input-footer {
  display: none;
}

.la-badges {
  display: none;
}

.la-count {
  padding: 6px 18px;
  background: var(--la-accent-soft);
  color: var(--la-accent-deep);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08);
}

.la-empty {
  text-align: center;
  padding: 60px 40px;
  border: 2px dashed #cbd5e1;
  border-radius: 24px;
  color: var(--la-muted);
  background: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.la-style-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.la-intro-text {
  text-align: center;
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--la-text);
  margin-bottom: 24px;
  background: linear-gradient(to right, var(--la-primary), var(--la-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: la-fade-in 0.8s ease-out;
}

/* Unified Grid for emoticons and symbols */
.la-emoticon-grid,
.la-symbols-quick-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 80px;
}

.la-emoticon-card,
.la-symbol-card {
  background: #ffffff;
  border: 1px solid var(--la-border-light);
  border-radius: 16px;
  padding: 14px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.la-emoticon-card:hover,
.la-symbol-card:hover {
  transform: translateY(-4px);
  border-color: var(--la-accent);
  box-shadow: 0 6px 15px rgba(99, 102, 241, 0.12);
}

.la-item-char {
  font-size: 18px;
  color: var(--la-text);
  font-weight: 500;
}

.la-item-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--la-muted);
  letter-spacing: 0.04em;
  opacity: 0.7;
  text-align: center;
  width: 100%;
}

.la-style-card {
  background: var(--la-card-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--la-glass-border);
  border-radius: var(--la-radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 240px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--la-shadow-sm);
  position: relative;
}

.la-style-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--la-shadow-lg);
  border-color: var(--la-primary);
  background: #fff;
}

.la-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.la-item-name {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--la-muted);
  letter-spacing: 0.05em;
  margin-top: 4px;
  border-top: 1px solid var(--la-border-light);
  padding-top: 12px;
}


.la-style-meta strong {
  font-size: 12px;
  color: var(--la-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.la-style-output {
  margin: 0;
  font-size: 19px;
  font-weight: 500;
  color: var(--la-text);
  white-space: pre-wrap;
  word-break: break-all;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.la-btn-copy {
  margin-top: 12px;
  border: none;
  background: var(--la-accent);
  color: #fff;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
}

.la-btn-copy:hover {
  background: var(--la-accent-deep);
  transform: scale(1.02);
}

.la-btn-copy:active {
  transform: scale(0.98);
}

.la-load-more-wrap {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.la-btn-primary {
  background: var(--la-accent-soft);
  color: var(--la-accent-deep);
  border: 1.5px solid var(--la-accent);
  padding: 14px 44px;
  border-radius: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.la-btn-primary:hover {
  background: var(--la-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
}

/* Modern Slider Tabs */
.la-tab-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 64px;
  background: hsl(210, 40%, 96.1%);
  padding: 6px;
  border-radius: 20px;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.la-tab-btn {
  border: none;
  background: transparent;
  padding: 12px 28px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  color: var(--la-muted);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.la-tab-btn.is-active {
  background: #fff;
  color: var(--la-primary-deep);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.la-tab-btn:hover:not(.is-active) {
  color: var(--la-text);
}

.la-tab-btn.is-active {
  background: #fff;
  color: var(--la-accent-deep);
  box-shadow: var(--la-shadow-sm);
}

.la-tab-btn:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.5);
  color: var(--la-text);
}

.la-tab-content {
  animation: la-fade-up 0.4s ease-out;
}

@keyframes la-fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.la-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
}

.la-section-icon {
  background: linear-gradient(135deg, var(--la-primary), var(--la-accent));
  color: #fff;
  padding: 16px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.la-section-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--la-text);
  margin: 0;
}

[hidden] {
  display: none !important;
}

/* Categories Grid (Home Page feel) */
.la-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 0 auto 60px;
  max-width: 1400px;
}

.la-cat-promo {
  display: block;
  text-decoration: none;
  background: var(--la-glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid var(--la-border);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--la-shadow-sm);
  color: inherit;
}

.la-cat-promo:hover {
  transform: translateY(-10px);
  box-shadow: var(--la-shadow-md);
  border-color: var(--la-accent);
  background: #fff;
}

.la-cat-promo-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.la-cat-promo:hover .la-cat-promo-icon {
  transform: scale(1.2) rotate(5deg);
}

.la-cat-promo h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--la-text);
}

.la-cat-promo p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--la-muted);
  line-height: 1.5;
}

/* Symbols Section */
.la-symbols-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--la-border);
}

/* Remove redundant symbol grid definition */

.la-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 99999999 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  margin: 0 !important;
  transition: opacity 0.3s ease;
}

.la-modal[aria-hidden="false"] {
  pointer-events: auto;
  opacity: 1;
}

.la-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.la-modal-card {
  box-sizing: border-box;
  position: relative;
  z-index: 10;
  width: min(1080px, calc(100vw - 32px));
  max-width: 100%;
  max-height: min(90vh, 880px);
  margin: auto !important;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 28px;
  background: #ffffff;
  padding: 32px 28px;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  transform: scale(0.96) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.la-modal[aria-hidden="false"] .la-modal-card {
  transform: scale(1) translateY(0);
}

.la-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 6px;
  padding-top: 4px;
}

.la-modal-head-copy {
  flex: 1;
  min-width: 0;
}

.la-modal-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--la-accent);
  margin-bottom: 4px;
}

.la-modal-head h3 {
  margin: 0;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.la-modal-note {
  margin: 0 0 18px;
  font-size: 13px;
  color: #64748b;
  line-height: 1.45;
  max-width: 720px;
}

.la-icon-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #f1f5f9;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.la-icon-btn:hover {
  background: #e2e8f0;
  transform: scale(1.05);
}

.la-icon-close {
  display: block;
  width: 14px;
  height: 14px;
  position: relative;
}

.la-icon-close::before,
.la-icon-close::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #475569;
  border-radius: 1px;
}

.la-icon-close::before {
  transform: translateY(-50%) rotate(45deg);
}

.la-icon-close::after {
  transform: translateY(-50%) rotate(-45deg);
}

/* Preview carousel: desktop = 3 phones, no horizontal scroll; mobile = swipe + dots */
.la-preview-carousel {
  width: 100%;
  box-sizing: border-box;
}

.la-carousel-viewport {
  box-sizing: border-box;
  width: 100%;
  overflow: visible;
}

.la-preview-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
  padding: 8px 0 12px;
  box-sizing: border-box;
}

.la-carousel-viewport.is-mobile-slider .la-preview-grid {
  justify-content: flex-start;
  padding-left: 8px;
  padding-right: 8px;
}

.la-carousel-viewport.is-mobile-slider {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.la-carousel-viewport.is-mobile-slider::-webkit-scrollbar {
  display: none;
}

.la-device {
  flex: 0 0 auto;
  box-sizing: border-box;
  width: 290px;
  scroll-snap-align: center;
}

.la-carousel-viewport.is-mobile-slider .la-device {
  flex: 0 0 min(310px, calc(100vw - 60px));
  max-width: 330px;
}

.la-carousel-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
  padding-bottom: 4px;
}

.la-carousel-btn {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #e2e8f0;
  color: #0f172a;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.la-carousel-btn:hover {
  background: #cbd5e1;
  transform: scale(1.05);
}

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

.la-carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.la-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.la-carousel-dot.is-active {
  background: var(--la-accent);
  transform: scale(1.25);
}

@media (max-width: 900px) {
  .la-carousel-controls {
    display: flex;
  }

  .la-modal-card {
    width: calc(100vw - 16px);
    padding: 16px 12px 18px;
  }
}

@media (min-width: 901px) {
  .la-carousel-controls {
    display: none !important;
  }
}

.la-device-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* iPhone 15 Pro–style titanium bezel + Dynamic Island */
.la-device-bezel {
  background: linear-gradient(165deg, #44444a 0%, #2c2c31 35%, #161618 70%, #0a0a0b 100%);
  border-radius: 44px;
  padding: 11px;
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35);
}

.la-device-bezel--tiktok {
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4);
}

.la-device-screen {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background: #fff;
  min-height: 536px;
  max-height: 580px;
  display: flex;
  flex-direction: column;
}

.la-device-island {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  height: 18px;
  background: #000;
  border-radius: 10px;
  z-index: 20;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.la-app-fb .la-ios-status,
.la-app-ig .la-ios-status {
  padding-top: 48px;
}

.la-app-tt .la-ios-status--light-on-dark {
  padding-top: 50px;
}

.la-ios-status {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 6px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  background: #fff;
}

.la-ios-status--dark {
  background: #fff;
  border-bottom: 1px solid #efefef;
}

.la-ios-status--light-on-dark {
  background: #000;
  color: #fff;
  padding-top: 12px;
}

.la-ios-time {
  letter-spacing: -0.02em;
}

.la-ios-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.la-ios-signal {
  width: 18px;
  height: 10px;
  background: linear-gradient(90deg, #000 0 20%, transparent 20% 40%, #000 40% 60%, transparent 60% 80%, #000 80%);
  opacity: 0.85;
  border-radius: 1px;
}

.la-ios-wifi {
  width: 14px;
  height: 10px;
  border: 2px solid #000;
  border-top: 0;
  border-radius: 0 0 10px 10px;
  opacity: 0.85;
}

.la-ios-battery {
  width: 24px;
  height: 11px;
  border: 1.5px solid #000;
  border-radius: 3px;
  position: relative;
  opacity: 0.9;
}

.la-ios-battery::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 3px;
  width: 2px;
  height: 5px;
  background: #000;
  border-radius: 0 1px 1px 0;
}

.la-ios-battery::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  right: 4px;
  bottom: 2px;
  background: #000;
  border-radius: 1px;
}

.la-ios-battery--light {
  border-color: #fff;
}

.la-ios-battery--light::after {
  background: #fff;
}

.la-ios-battery--light::before {
  background: #fff;
}

.la-ios-status--light-on-dark .la-ios-signal {
  background: linear-gradient(90deg, #fff 0 20%, transparent 20% 40%, #fff 40% 60%, transparent 60% 80%, #fff 80%);
}

.la-ios-status--light-on-dark .la-ios-wifi {
  border-color: #fff;
}

.la-app-fb {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.la-fb-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 10px;
  background: #fff;
  border-bottom: 1px solid #e4e6eb;
}

.la-fb-nav-btn {
  border: 0;
  background: #f0f2f5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 0;
  cursor: default;
  display: grid;
  place-items: center;
}

.la-arrow-back {
  width: 8px;
  height: 8px;
  border-left: 2px solid #050505;
  border-bottom: 2px solid #050505;
  transform: rotate(45deg);
  margin-left: 4px;
}

.la-fb-search-pill {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0f2f5;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 15px;
  color: #65676b;
}

.la-fb-search-icon {
  width: 14px;
  height: 14px;
  border: 2px solid #65676b;
  border-radius: 50%;
  position: relative;
}

.la-fb-search-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -2px;
  width: 6px;
  height: 2px;
  background: #65676b;
  transform: rotate(45deg);
  border-radius: 1px;
}

.la-icon-messenger {
  width: 16px;
  height: 14px;
  background: linear-gradient(180deg, #00b2ff, #006bff);
  border-radius: 10px 10px 10px 4px;
}

.la-fb-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  background: #f0f2f5;
}

.la-fb-cover {
  height: 68px;
  background: linear-gradient(135deg, #1877f2 0%, #42b72a 40%, #e41e3f 100%);
  opacity: 0.92;
}

.la-fb-profile-wrap {
  padding: 0 14px 16px;
  margin-top: -40px;
}

.la-fb-avatar.la-avatar {
  width: 72px;
  height: 72px;
  border: 4px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.la-avatar--svg {
  display: grid;
  place-items: center;
  padding: 10px;
  background-image: none;
}

.la-avatar--svg .la-avatar-svg {
  width: 72%;
  height: 72%;
}

.la-avatar--fb {
  color: #1877f2;
  background: #eff6ff;
}

.la-avatar--ig {
  color: #c2410c;
  background: linear-gradient(180deg, #fff7ed, #ffedd5);
}

.la-avatar--tt {
  color: #f0f9ff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.la-fb-name {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #050505;
  line-height: 1.25;
  word-break: break-word;
}

.la-fb-meta {
  margin-top: 4px;
  font-size: 13px;
  color: #65676b;
}

.la-fb-line {
  margin-top: 10px;
  font-size: 13px;
  color: #050505;
  line-height: 1.35;
  word-break: break-word;
}

.la-fb-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.la-fb-pill {
  flex: 1;
  border: 0;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 15px;
  font-weight: 600;
  background: #e4e6eb;
  color: #050505;
  cursor: default;
}

.la-fb-pill--primary {
  background: #1877f2;
  color: #fff;
}

.la-fb-tabs {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid #e4e6eb;
  font-size: 13px;
  font-weight: 600;
  color: #65676b;
}

.la-fb-tabs .is-active {
  color: #1877f2;
  border-bottom: 2px solid #1877f2;
  padding-bottom: 6px;
  margin-bottom: -10px;
}

.la-fb-post {
  margin-top: 14px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.la-fb-post-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.la-fb-post-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e7f3ff;
  flex-shrink: 0;
}

.la-fb-post-avatar--svg {
  display: grid;
  place-items: center;
  border: 1px solid #d1d5db;
}

.la-fb-post-emoji {
  font-size: 18px;
  line-height: 1;
}

.la-fb-post-meta {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  line-height: 1.25;
}

.la-fb-post-meta strong {
  display: block;
  color: #050505;
  font-size: 15px;
}

.la-fb-post-meta span {
  color: #65676b;
  font-size: 13px;
}

.la-fb-dots {
  border: 0;
  background: transparent;
  color: #65676b;
  font-size: 18px;
  line-height: 1;
  padding: 4px;
  cursor: default;
}

.la-fb-post-body {
  font-size: 17px;
  line-height: 1.4;
  color: #050505;
  word-break: break-word;
  padding-bottom: 8px;
}

.la-fb-post-actions {
  display: flex;
  justify-content: space-around;
  padding-top: 8px;
  border-top: 1px solid #f0f2f5;
  font-size: 13px;
  font-weight: 600;
  color: #65676b;
}

.la-fb-home-indicator {
  flex-shrink: 0;
  height: 28px;
  background: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8px;
}

.la-fb-home-indicator::after {
  content: "";
  width: 120px;
  height: 4px;
  background: #000;
  border-radius: 4px;
  opacity: 0.2;
}

.la-fb-home-indicator--ig::after {
  opacity: 0.15;
}

.la-fb-home-indicator--tt {
  background: #000;
}

.la-fb-home-indicator--tt::after {
  background: #fff;
  opacity: 0.35;
}

.la-app-ig {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #fff;
}

.la-ig-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px 8px;
  border-bottom: 1px solid #dbdbdb;
  background: #fff;
}

.la-ig-top-user {
  flex: 1;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: #262626;
}

.la-ig-icon-btn {
  border: 0;
  background: transparent;
  font-size: 22px;
  color: #262626;
  width: 36px;
  height: 36px;
  cursor: default;
  line-height: 1;
}

.la-ig-chrome-actions {
  display: flex;
}

.la-ig-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 12px 14px 16px;
}

.la-ig-profile-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.la-ig-avatar-wrap {
  flex-shrink: 0;
}

.la-ig-avatar-ring {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(225deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: grid;
  place-items: center;
}

.la-ig-avatar-ring .la-avatar {
  width: 78px;
  height: 78px;
  border: 3px solid #fff;
  margin: 0;
}

.la-ig-avatar-ring .la-avatar--svg.la-avatar--ig {
  background: #fff;
}

/* --- New Content Sections --- */
.la-content-area {
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.la-info-card {
  background: linear-gradient(135deg, var(--la-accent-soft) 0%, #fff 100%);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--la-accent-soft);
  margin-bottom: 60px;
  box-shadow: var(--la-shadow-sm);
}

.la-intro-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--la-accent-deep);
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.la-section {
  margin-bottom: 80px;
}

.la-section-title-alt {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--la-text);
  letter-spacing: -0.04em;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--la-text) 0%, var(--la-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.la-section-p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--la-muted);
}

/* Feature Grid */
.la-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.la-feature-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 24px;
  border: 1px solid var(--la-border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--la-shadow-sm);
}

.la-feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--la-accent);
  box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.2);
  background: linear-gradient(to bottom right, #fff, var(--la-accent-soft));
}

.la-feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.la-feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--la-text);
  font-weight: 800;
}

.la-feature-card p {
  font-size: 1rem;
  color: var(--la-muted);
  line-height: 1.6;
  margin: 0;
}

/* Steps Section */
.la-steps-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.la-step {
  display: flex;
  gap: 24px;
  align-items: center;
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--la-border);
  box-shadow: var(--la-shadow-sm);
  transition: all 0.3s ease;
}

.la-step:hover {
  border-color: var(--la-accent-soft);
  background: var(--la-bg-canvas);
}

.la-step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--la-accent) 0%, var(--la-accent-2) 100%);
  color: #fff;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px -4px rgba(99, 102, 241, 0.4);
}

.la-step-content h4 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--la-text);
}

.la-step-content p {
  margin: 0;
  color: var(--la-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Tag Cloud */
.la-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.la-tag-cloud span {
  padding: 10px 24px;
  background: #fff;
  border: 1px solid var(--la-border);
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--la-text);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  box-shadow: var(--la-shadow-sm);
}

.la-tag-cloud span:nth-child(3n+1):hover {
  background: var(--la-accent-soft);
  border-color: var(--la-accent);
  color: var(--la-accent-deep);
}

.la-tag-cloud span:nth-child(3n+2):hover {
  background: hsl(280, 100%, 97%);
  border-color: var(--la-accent-2);
  color: hsl(280, 80%, 40%);
}

.la-tag-cloud span:nth-child(3n+3):hover {
  background: hsl(190, 100%, 97%);
  border-color: var(--la-accent-3);
  color: hsl(190, 80%, 30%);
}

.la-tag-cloud span:hover {
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 10px 20px -5px rgba(0,0,0,0.1);
}

/* Platform Guide */
.la-platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.la-platform-card {
  padding: 48px 40px;
  border-radius: 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--la-shadow-md);
}

.la-platform-card.ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.la-platform-card.tt {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.la-platform-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

.la-platform-card h3 {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: #fff;
}

.la-platform-card p {
  font-size: 1.15rem;
  opacity: 0.95;
  line-height: 1.7;
}

/* Pro Tips */
.la-pro-tips {
  background: #0f172a;
  color: #fff;
  padding: 56px 48px;
  border-radius: 40px;
  margin: 80px 0;
  position: relative;
  box-shadow: var(--la-shadow-lg);
}

.la-tips-badge {
  position: absolute;
  top: -20px;
  left: 48px;
  background: var(--la-accent);
  color: #fff;
  padding: 8px 20px;
  border-radius: 12px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
  box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3);
}

.la-tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.la-tips-list li {
  position: relative;
  padding-left: 36px;
  font-size: 1.15rem;
  line-height: 1.6;
  font-weight: 500;
}

.la-tips-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--la-accent);
  font-weight: 900;
}

/* FAQ Accordion */
.la-faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.la-faq-item {
  border: 1.5px solid var(--la-border);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}

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

.la-faq-item.is-open {
  border-color: var(--la-accent);
  box-shadow: var(--la-shadow-md);
}

.la-faq-q {
  width: 100%;
  padding: 24px 32px;
  text-align: left;
  border: none;
  background: none;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--la-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.la-faq-icon {
  width: 32px;
  height: 32px;
  background: var(--la-bg-canvas);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: var(--la-accent);
  transition: all 0.3s ease;
}

.la-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 32px;
  background: #fff;
}

.la-faq-item.is-open .la-faq-a {
  max-height: 300px;
  padding-bottom: 32px;
}

.la-faq-item.is-open .la-faq-icon {
  background: linear-gradient(135deg, var(--la-accent) 0%, var(--la-accent-2) 100%);
  color: #fff;
  transform: rotate(45deg);
}

/* --- Detailed Content Elements --- */
.la-infographic-placeholder {
  background: var(--la-bg-canvas);
  border: 2px dashed var(--la-border);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  color: var(--la-muted);
  font-weight: 700;
  margin: 40px 0;
  font-size: 1.1rem;
}

.la-infographic-small {
  background: rgba(255, 255, 255, 0.15);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin-top: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

.la-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.la-cat-card {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--la-border);
  box-shadow: var(--la-shadow-sm);
  transition: all 0.3s ease;
}

.la-cat-card:hover {
  border-color: var(--la-accent);
  transform: translateY(-5px);
}

.la-cat-card h4 {
  font-size: 1.25rem;
  margin: 0 0 12px;
  color: var(--la-text);
  font-weight: 800;
}

.la-cat-card p {
  margin: 0;
  color: var(--la-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.la-uses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.la-use-item {
  background: var(--la-bg-canvas);
  padding: 20px 24px;
  border-radius: 16px;
  border: 1px solid var(--la-border);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--la-text);
}

.la-use-item strong {
  color: var(--la-accent-deep);
}

.la-symbols-table-wrap {
  margin-top: 32px;
  overflow-x: auto;
  border: 1px solid var(--la-border);
  border-radius: 20px;
  background: #fff;
}

.la-symbols-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.la-symbols-table th,
.la-symbols-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--la-border);
}

.la-symbols-table th {
  background: var(--la-bg-canvas);
  font-weight: 800;
  color: var(--la-text);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.la-symbols-table tr:last-child td {
  border-bottom: none;
}

.la-symbols-table td:last-child {
  font-size: 1.5rem;
  letter-spacing: 4px;
  color: var(--la-accent-deep);
}

/* --- Header / Nav --- */
.la-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--la-border);
}

.la-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.la-logo-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 8px var(--la-accent));
}

.la-logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--la-text) 0%, var(--la-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.la-nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.la-nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--la-muted);
  transition: all 0.2s;
}

.la-nav-links a:hover,
.la-nav-links a.is-active {
  color: var(--la-accent-deep);
}

.la-btn-sm {
  background: var(--la-accent);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.la-btn-sm:hover {
  background: var(--la-accent-deep);
  transform: translateY(-2px);
}

/* --- Footer --- */
.la-footer {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--la-border);
}

.la-footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.la-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.la-footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--la-muted);
  max-width: 300px;
}

.la-footer-h {
  font-size: 1rem;
  font-weight: 800;
  color: var(--la-text);
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.la-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.la-footer-links a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--la-muted);
  transition: color 0.2s;
}

.la-footer-links a:hover {
  color: var(--la-accent);
}

.la-social-icons {
  display: flex;
  gap: 12px;
}

.la-social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--la-bg-canvas);
  border: 1px solid var(--la-border);
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--la-text);
  transition: all 0.2s;
}

.la-social-icons a:hover {
  background: var(--la-accent);
  color: #fff;
  border-color: var(--la-accent);
  transform: translateY(-3px);
}

.la-footer-bottom {
  padding: 30px 0;
  border-top: 1px solid var(--la-border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--la-muted);
}

@media (max-width: 992px) {
  .la-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .la-nav-links {
    display: none; /* Mobile nav usually needs a toggle, hiding for simplicity in tool view */
  }
}

@media (max-width: 576px) {
  .la-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .la-footer-brand {
    align-items: center;
  }
  .la-social-icons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .la-platform-grid {
    grid-template-columns: 1fr;
  }
  
  .la-section-title-alt {
    font-size: 1.75rem;
  }

  .la-pro-tips {
    padding: 48px 24px;
  }
}

.la-ig-stats {
  flex: 1;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.la-ig-stats strong {
  display: block;
  font-size: 16px;
  color: #262626;
}

.la-ig-stats span {
  font-size: 12px;
  color: #262626;
}

.la-ig-display {
  font-size: 16px;
  font-weight: 600;
  color: #262626;
  line-height: 1.35;
  word-break: break-word;
}

.la-ig-handle {
  font-size: 14px;
  color: #262626;
  margin-top: 4px;
}

.la-ig-bio {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.45;
  color: #262626;
  white-space: pre-wrap;
  word-break: break-word;
}

.la-ig-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.la-ig-btn {
  flex: 1;
  border: 0;
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 14px;
  font-weight: 600;
  background: #efefef;
  color: #262626;
  cursor: default;
}

.la-ig-btn--soft {
  background: #fff;
  border: 1px solid #dbdbdb;
}

.la-ig-highlights {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #dbdbdb;
}

.la-ig-highlights span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fafafa, #e8e8e8);
  border: 1px solid #dbdbdb;
}

.la-ig-tab-icons {
  display: flex;
  justify-content: space-around;
  padding: 10px 0 4px;
  font-size: 20px;
  color: #8e8e8e;
}

.la-ig-tab-icons .is-active {
  color: #262626;
  border-top: 1px solid #262626;
  padding-top: 10px;
  margin-top: -10px;
}

.la-app-tt {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #000;
  color: #fff;
}

.la-tt-tabs-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 8px 40px 10px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.la-tt-tabs-top .is-active {
  color: #fff;
  position: relative;
}

.la-tt-tabs-top .is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 32px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.la-tt-search {
  position: absolute;
  right: 12px;
  font-size: 18px;
  line-height: 1;
}

.la-tt-profile-screen {
  flex: 1;
  overflow-y: auto;
  padding: 16px 16px 8px;
  text-align: center;
}

.la-tt-avatar-wrap {
  position: relative;
  display: inline-block;
  margin-top: 8px;
}

.la-tt-avatar-wrap .la-avatar {
  width: 96px;
  height: 96px;
  border: 3px solid #fff;
}

.la-tt-avatar-wrap .la-avatar--svg {
  padding: 18px;
}

.la-tt-follow {
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border: 0;
  background: #fe2c55;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 4px;
  cursor: default;
  white-space: nowrap;
}

.la-tt-nickname {
  margin-top: 22px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  word-break: break-word;
}

.la-tt-handle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

.la-tt-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.la-tt-stats strong {
  color: #fff;
  font-weight: 700;
}

.la-tt-bio {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  word-break: break-word;
  padding: 0 4px;
}

.la-tt-bottom-tabs {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}

.la-tt-bottom-tabs .is-active {
  color: #fff;
}

.la-tt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 8px;
  background: #111;
}

.la-tt-grid span {
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, #222, #0d0d0d);
}

.la-avatar:not(.la-avatar--svg) {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  box-sizing: border-box;
  background-color: #cfd4dc;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Ccircle cx='60' cy='43' r='22' fill='%235c6370'/%3E%3Cpath d='M20 104c4-20 17-30 40-30s36 10 40 30' fill='%235c6370'/%3E%3C/svg%3E");
  background-size: 78%;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.la-avatar--svg.la-avatar:not(.la-fb-avatar) {
  width: 62px;
  height: 62px;
  border-radius: 50%;
}

.la-avatar-ring.la-avatar--svg {
  border: none;
  background-image: none;
}

.la-avatar-tiktok.la-avatar--svg {
  background-color: rgba(255, 255, 255, 0.08);
}

body.la-modal-open {
  overflow: hidden;
}

.la-load-more-wrap {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.la-toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translate(-50%, 8px);
  background: #111827;
  color: #fff;
  font-size: 13px;
  padding: 9px 14px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 1000000;
}

.la-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.la-toast.is-error {
  background: #9b1c1c;
}

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

@media (max-width: 840px) {
  .la-wrap {
    border-radius: 0;
    padding: 16px 12px 24px;
    box-shadow: none;
    border: 0;
  }

  .la-style-list {
    grid-template-columns: 1fr;
  }

  .la-style-output {
    font-size: 16px;
  }
}
