/* YERENK Ecosystem - Social Media Asset Tester (sm.yerenk.com.tr) */

:root {
  --bg-dark: #090a0f;
  --bg-card: rgba(19, 22, 32, 0.75);
  --bg-card-hover: rgba(27, 31, 46, 0.85);
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(99, 102, 241, 0.4);
  
  --primary-glow: #6366f1;
  --secondary-glow: #a855f7;
  --accent-pink: #ec4899;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;
  
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Manrope', sans-serif;
  
  /* Platform Specific Brand Accent Colors */
  --color-ig: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  --color-x: #ffffff;
  --color-linkedin: #0a66c2;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.5;
}

/* Ambient Background Lights */
.ambient-glow-1 {
  position: fixed;
  top: -150px;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-2 {
  position: fixed;
  bottom: -200px;
  right: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 20px 60px 20px;
  position: relative;
  z-index: 1;
}

/* Header */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-glass);
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.back-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  transition: all 0.2s ease;
}

.back-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  transform: translateX(-2px);
}

.app-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.app-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.header-actions {
  display: flex;
  gap: 12px;
}

/* Glass Buttons */
.btn-glass {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-glow) 0%, var(--secondary-glow) 100%);
  border: none;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
  transition: all 0.25s ease;
}

.btn-primary:hover {
  box-shadow: 0 6px 25px rgba(99, 102, 241, 0.55);
  transform: translateY(-2px);
}

/* ===================================================
   VERSION CONTROL BAR STYLES
   =================================================== */
.version-control-section {
  margin-bottom: 20px;
}

.version-bar {
  background: rgba(15, 18, 26, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.version-selector-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 240px;
}

.version-icon-label {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary-glow);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.version-dropdown {
  background: rgba(10, 12, 18, 0.9);
  color: var(--text-main);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  flex: 1;
  max-width: 350px;
  transition: all 0.2s ease;
}

.version-dropdown:focus {
  border-color: var(--secondary-glow);
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.3);
}

.version-actions-group {
  display: flex;
  gap: 10px;
}

.btn-version {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-version:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: var(--primary-glow);
  transform: translateY(-1px);
}

.btn-version.danger:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.6);
  color: #fca5a5;
}

/* Control Panel Section & Accordion Toggle */
.control-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 35px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.panel-toggle-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 0;
  text-align: left;
}

.toggle-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.toggle-title ion-icon {
  color: var(--primary-glow);
  font-size: 1.25rem;
}

.toggle-icon {
  font-size: 1.3rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.panel-body {
  margin-top: 20px;
  max-height: 1200px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin-top 0.3s ease;
}

.control-panel.collapsed .panel-body {
  max-height: 0 !important;
  opacity: 0;
  margin-top: 0;
}

.control-panel.collapsed .toggle-icon {
  transform: rotate(-90deg);
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 24px;
}

@media (max-width: 1024px) {
  .panel-grid {
    grid-template-columns: 1fr;
  }
}

.upload-card {
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  position: relative;
  background: rgba(10, 12, 18, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.upload-card:hover, .upload-card.drag-over {
  border-color: var(--primary-glow);
  background: rgba(99, 102, 241, 0.08);
}

.upload-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--primary-glow);
}

.upload-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.upload-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* Metadata Form Group */
.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input, .form-textarea {
  background: rgba(10, 12, 18, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  padding: 8px 12px;
  font-family: inherit;
  font-size: 0.88rem;
  transition: all 0.2s ease;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary-glow);
  background: rgba(10, 12, 18, 0.8);
}

/* Fit Control Sliders */
.fit-controls {
  margin-top: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.fit-select {
  background: rgba(10, 12, 18, 0.8);
  color: #fff;
  border: 1px solid var(--border-glass);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  cursor: pointer;
}

/* Filter Navigation Bar */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.tab-group {
  display: flex;
  gap: 8px;
  background: rgba(15, 18, 26, 0.8);
  padding: 4px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-btn:hover {
  color: var(--text-main);
}

.tab-btn.active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tab-btn.ig.active {
  background: linear-gradient(45deg, rgba(225, 48, 108, 0.3), rgba(245, 96, 64, 0.3));
  border: 1px solid rgba(225, 48, 108, 0.5);
}

.tab-btn.x.active {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.tab-btn.li.active {
  background: rgba(10, 102, 194, 0.3);
  border: 1px solid rgba(10, 102, 194, 0.5);
}

/* Mockup Layout Grids */
.mockups-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mockups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
}

/* Base Card Style */
.mockup-card {
  background: #0d0e15;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.mockup-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.mockup-header-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
}

.platform-badge.instagram {
  background: rgba(225, 48, 108, 0.15);
  color: #f472b6;
  border: 1px solid rgba(225, 48, 108, 0.3);
}

.platform-badge.x {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.platform-badge.linkedin {
  background: rgba(10, 102, 194, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(10, 102, 194, 0.3);
}

/* ===================================================
   INSTAGRAM MOCKUP STYLES
   =================================================== */
.ig-mockup-body {
  padding: 20px;
  background: #000000;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ig-profile-top {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 15px;
}

.ig-avatar-ring {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  padding: 3px;
  background: var(--color-ig);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #000;
}

.ig-stats-row {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.ig-stat-num {
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
}

.ig-stat-label {
  font-size: 0.75rem;
  color: #a8a8a8;
}

.ig-bio-section {
  margin-bottom: 16px;
}

.ig-display-name {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.ig-bio-text {
  font-size: 0.85rem;
  color: #f5f5f5;
  white-space: pre-line;
}

.ig-action-btns {
  display: grid;
  grid-template-columns: 1fr 1fr 35px;
  gap: 8px;
  margin-bottom: 16px;
}

.ig-btn {
  background: #262626;
  border: none;
  color: #fff;
  padding: 7px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
}

.ig-grid-tabs {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #262626;
  padding-top: 10px;
  margin-bottom: 10px;
}

.ig-grid-3x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.ig-grid-item {
  aspect-ratio: 1 / 1;
  background: #1e1e1e;
  overflow: hidden;
  position: relative;
}

.ig-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================================================
   X (TWITTER) MOCKUP STYLES
   =================================================== */
.x-mockup-body {
  background: #000000;
  color: #e7e9ea;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.x-banner-wrap {
  width: 100%;
  aspect-ratio: 3 / 1;
  background: #16181c;
  overflow: hidden;
  position: relative;
}

.x-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.x-profile-details {
  padding: 0 16px 16px 16px;
  position: relative;
}

.x-avatar-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: -45px;
  margin-bottom: 12px;
}

.x-avatar-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px solid #000000;
  object-fit: cover;
  background: #000;
}

.x-follow-btn {
  background: #eff3f4;
  color: #0f1419;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
}

.x-name-heading {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
}

.x-handle {
  color: #71767b;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.x-bio-content {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.x-meta-row {
  display: flex;
  gap: 15px;
  color: #71767b;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.x-stats-row {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  padding-bottom: 12px;
  border-bottom: 1px solid #2f3336;
}

.x-stat-val {
  font-weight: 700;
  color: #fff;
}

/* X Post Sample Card */
.x-tweet-sample {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  padding: 12px 16px;
  background: #000;
  border-top: 1px solid #2f3336;
}

.x-tweet-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.x-tweet-body {
  font-size: 0.85rem;
}

.x-tweet-user {
  font-weight: 700;
  margin-right: 4px;
}

/* ===================================================
   LINKEDIN MOCKUP STYLES
   =================================================== */
.li-mockup-body {
  background: #1d2226;
  color: #ffffff;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  padding: 12px;
}

.li-profile-card {
  background: #1b1f23;
  border-radius: 10px;
  border: 1px solid #38434f;
  overflow: hidden;
}

.li-cover-wrap {
  width: 100%;
  aspect-ratio: 4 / 1;
  background: #283038;
  position: relative;
  overflow: hidden;
}

.li-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.li-card-content {
  padding: 0 16px 16px 16px;
  position: relative;
}

.li-avatar-row {
  margin-top: -50px;
  margin-bottom: 10px;
}

.li-avatar-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #1b1f23;
  object-fit: cover;
  background: #1b1f23;
}

.li-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.li-headline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  line-height: 1.4;
}

.li-location {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-bottom: 12px;
}

.li-connections {
  font-size: 0.78rem;
  color: #70b5f9;
  font-weight: 600;
  margin-bottom: 14px;
}

.li-action-bar {
  display: flex;
  gap: 8px;
}

.li-btn-primary {
  background: #70b5f9;
  color: #000;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 16px;
  border: none;
  font-size: 0.85rem;
}

.li-btn-outline {
  background: transparent;
  color: #70b5f9;
  border: 1px solid #70b5f9;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 0.85rem;
}

/* Toast Notification */
.toast-msg {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #1e1b4b;
  border: 1px solid var(--primary-glow);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive Text Spans */
.btn-text-mobile {
  display: none;
}

.btn-text-desktop {
  display: inline;
}

/* ===================================================
   RESPONSIVE DESIGN (TABLET & MOBILE OPTIMIZATIONS)
   =================================================== */

/* Tablet & Medium Screens (<= 1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 20px 15px 40px 15px;
  }
  .panel-grid {
    grid-template-columns: 1fr;
  }
  .mockups-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile & Phablet Screens (<= 768px) */
@media (max-width: 768px) {
  .btn-text-mobile {
    display: inline;
  }
  .btn-text-desktop {
    display: none;
  }

  .app-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;
  }

  .header-actions .btn-glass,
  .header-actions .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 10px 12px;
    font-size: 0.84rem;
    white-space: nowrap;
    text-align: center;
  }

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

  /* Version Bar Mobile Alignment */
  .version-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 14px;
    gap: 12px;
  }

  .version-selector-group {
    width: 100%;
    min-width: 0;
  }

  .version-dropdown {
    width: 100%;
    max-width: 100%;
  }

  .version-actions-group {
    display: grid;
    grid-template-columns: 1fr 1fr 0.7fr;
    gap: 8px;
    width: 100%;
  }

  .btn-version {
    justify-content: center;
    padding: 9px 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    text-align: center;
  }

  .control-panel {
    padding: 16px;
    border-radius: var(--radius-md);
  }

  .form-group-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .tab-group {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    padding: 6px;
    justify-content: flex-start;
  }

  .tab-btn {
    padding: 8px 14px;
    font-size: 0.82rem;
    flex-shrink: 0;
  }

  .status-indicator {
    text-align: center;
  }
}

/* Small Mobile Phones (<= 480px) */
@media (max-width: 480px) {
  .container {
    padding: 12px 10px 30px 10px;
  }

  .mockups-grid {
    grid-template-columns: 100%;
    gap: 20px;
  }

  .mockup-card {
    border-radius: 14px;
  }

  .mockup-header-tag {
    padding: 10px 14px;
    font-size: 0.8rem;
  }

  .upload-card {
    padding: 16px 10px;
  }

  .upload-icon {
    font-size: 1.6rem;
  }

  .upload-title {
    font-size: 0.9rem;
  }

  .upload-hint {
    font-size: 0.75rem;
  }

  /* Instagram Mockup Mobile Adjustments */
  .ig-mockup-body {
    padding: 14px;
  }

  .ig-profile-top {
    grid-template-columns: 70px 1fr;
    gap: 12px;
  }

  .ig-avatar-ring {
    width: 68px;
    height: 68px;
  }

  .ig-stat-num {
    font-size: 0.85rem;
  }

  .ig-stat-label {
    font-size: 0.7rem;
  }

  .ig-bio-text {
    font-size: 0.8rem;
  }

  /* X Mockup Mobile Adjustments */
  .x-avatar-img {
    width: 72px;
    height: 72px;
  }

  .x-avatar-row {
    margin-top: -36px;
  }

  .x-name-heading {
    font-size: 1rem;
  }

  .x-meta-row, .x-stats-row {
    font-size: 0.78rem;
    flex-wrap: wrap;
    gap: 10px;
  }

  /* LinkedIn Mockup Mobile Adjustments */
  .li-avatar-img {
    width: 76px;
    height: 76px;
  }

  .li-avatar-row {
    margin-top: -38px;
  }

  .li-name {
    font-size: 1.05rem;
  }

  .li-headline {
    font-size: 0.8rem;
  }

  .toast-msg {
    left: 15px;
    right: 15px;
    bottom: 15px;
    text-align: center;
    justify-content: center;
    font-size: 0.82rem;
  }
}
