/* Global CSS Custom Properties */
:root {
  --bg-primary: #0A0A0C;
  --bg-secondary: #121216;
  --text-primary: #FFFFFF;
  --text-secondary: #9E9EAF;
  --text-muted: #646473;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  
  /* Instagram Sunset Gradient Palette */
  --insta-orange: #f09433;
  --insta-pink: #e6683c;
  --insta-red: #dc2743;
  --insta-magenta: #cc2366;
  --insta-purple: #bc1888;
  
  --primary-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  --btn-gradient: linear-gradient(135deg, #FF3E6C 0%, #FF6F3B 100%);
  --btn-gradient-hover: linear-gradient(135deg, #FF6F3B 0%, #FF3E6C 100%);
  
  --glass-bg: rgba(18, 18, 22, 0.6);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-shadow: rgba(0, 0, 0, 0.4);
  
  --card-border-radius: 16px;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Background Ambient Glow Bulbs */
.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(160px);
  z-index: -3;
  opacity: 0.12;
  pointer-events: none;
}

.bg-glow-orange {
  background: radial-gradient(circle, var(--insta-orange) 0%, transparent 70%);
  top: -10%;
  left: -10%;
  animation: floatGlow 20s infinite alternate ease-in-out;
}

.bg-glow-pink {
  background: radial-gradient(circle, var(--insta-pink) 0%, transparent 70%);
  bottom: -10%;
  right: -10%;
  animation: floatGlow 20s infinite alternate-reverse ease-in-out 3s;
}

.bg-glow-purple {
  background: radial-gradient(circle, var(--insta-purple) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.06;
}

@keyframes floatGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.15); }
}

/* App Container */
.app-container {
  width: 100%;
  max-width: 900px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Ad Spaces Placeholder CSS */
.ad-container {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.ad-badge {
  position: absolute;
  top: 4px;
  left: 8px;
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  font-weight: 600;
}

.ad-slot-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 90px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.ad-slot-placeholder i {
  font-size: 1.5rem;
}

/* Header Stylings */
.app-header {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 10px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.logo-icon {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tagline {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 400;
}

.public-notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 62, 108, 0.08);
  border: 1px solid rgba(255, 62, 108, 0.2);
  color: #FF3E6C;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 15px;
  letter-spacing: 0.5px;
}

/* Navigation Tabs */
.navigation-tabs {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 6px;
  margin-bottom: 25px;
}

.tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 12px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
  color: var(--text-primary);
  background: var(--btn-gradient);
  box-shadow: 0 4px 15px rgba(255, 62, 108, 0.3);
}

/* Search Box Console Section */
.console-section {
  margin-bottom: 25px;
}

.search-box-wrapper {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px var(--glass-shadow);
  border-radius: var(--card-border-radius);
  padding: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

.tab-instruction {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.search-bar {
  display: flex;
  gap: 12px;
}

.search-bar input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-sans);
  outline: none;
  transition: var(--transition-smooth);
}

.search-bar input:focus {
  border-color: rgba(255, 62, 108, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 62, 108, 0.15);
}

/* Buttons style */
.primary-btn {
  background: var(--btn-gradient);
  color: var(--text-primary);
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
}

.primary-btn:hover {
  background: var(--btn-gradient-hover);
  box-shadow: 0 4px 15px rgba(255, 62, 108, 0.4);
}

.primary-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Status Alert Panels */
.alert-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideIn 0.3s ease-out;
}

.alert-box.hide {
  display: none !important;
}

.alert-icon {
  font-size: 1.2rem;
}

.close-alert-btn {
  margin-left: auto;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.close-alert-btn:hover {
  color: var(--text-primary);
}

/* Single Reels/Post Result styling */
.result-section {
  margin-bottom: 30px;
}

.result-section.hide {
  display: none !important;
}

.single-post-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px var(--glass-shadow);
  border-radius: var(--card-border-radius);
  padding: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.single-media-preview {
  flex: 0 0 300px;
  max-width: 300px;
  aspect-ratio: 4/5;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.single-media-preview img,
.single-media-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-media-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.media-type-badge {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--insta-orange);
}

.single-caption {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-height: 150px;
  overflow-y: auto;
  padding-right: 8px;
}

.download-action-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

/* DP Viewer Card layout */
.dp-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px var(--glass-shadow);
  border-radius: var(--card-border-radius);
  padding: 30px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.dp-avatar-preview {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.02);
}

.dp-avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dp-info {
  text-align: center;
}

.dp-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.dp-info p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* Profile Explorer layout */
.profile-section {
  margin-bottom: 25px;
}

.profile-section.hide {
  display: none !important;
}

.profile-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px var(--glass-shadow);
  border-radius: var(--card-border-radius);
  padding: 30px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  gap: 30px;
  align-items: center;
}

.profile-avatar-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  flex: 0 0 120px;
}

.profile-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-secondary);
  position: relative;
  z-index: 2;
}

.avatar-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background: var(--primary-gradient);
  z-index: 1;
}

.profile-details {
  flex: 1;
}

.profile-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.profile-title-row h2 {
  font-size: 1.6rem;
  font-weight: 700;
}

.badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.badge-success {
  background: rgba(46, 213, 115, 0.1);
  border: 1px solid rgba(46, 213, 115, 0.2);
  color: #2ed573;
}

.badge-danger {
  background: rgba(255, 71, 87, 0.1);
  border: 1px solid rgba(255, 71, 87, 0.2);
  color: #ff4757;
}

.profile-fullname {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.profile-bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.4;
}

.profile-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* Media section & posts grid */
.media-section {
  margin-bottom: 40px;
}

.media-section.hide {
  display: none !important;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-accent {
  font-size: 1.3rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.count-badge {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3px 8px;
  border-radius: 12px;
  color: var(--text-secondary);
}

.download-all-btn {
  background: var(--btn-gradient);
  color: var(--text-primary);
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.download-all-btn:hover {
  background: var(--btn-gradient-hover);
  box-shadow: 0 4px 12px rgba(255, 62, 108, 0.3);
}

/* Grid Layout */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.media-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: var(--transition-smooth);
}

.media-card:hover {
  border-color: rgba(255, 62, 108, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.card-media-wrapper {
  position: relative;
  aspect-ratio: 1;
  background: #000;
  overflow: hidden;
}

.card-media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-card:hover .card-media-wrapper img {
  transform: scale(1.05);
}

.card-badge-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 0.75rem;
  backdrop-filter: blur(4px);
}

.media-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  padding: 16px;
  display: flex;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.media-card:hover .media-info-overlay {
  opacity: 1;
}

.overlay-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: 600;
}

.overlay-stat i {
  color: #ff4757;
}

.card-details {
  padding: 14px;
}

.card-caption {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-type-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.download-single-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.download-single-btn:hover {
  background: var(--btn-gradient);
  border-color: transparent;
  color: #FFF;
}

/* Skeletons loader */
.skeleton-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skeleton-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-radius: var(--card-border-radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.skeleton-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.skeleton-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.skeleton-line {
  height: 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.skeleton-line.short { width: 30%; }
.skeleton-line.medium { width: 60%; }
.skeleton-line.long { width: 85%; }

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.skeleton-card {
  aspect-ratio: 1;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.pulse {
  animation: pulseEffect 1.5s infinite alternate ease-in-out;
}

@keyframes pulseEffect {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* Progress modal */
.progress-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(6px);
}

.progress-overlay.hide {
  display: none !important;
}

.progress-modal {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  width: 90%;
  max-width: 450px;
  text-align: center;
}

.progress-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.progress-icon {
  font-size: 1.5rem;
  color: var(--insta-orange);
}

.progress-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

#progressStatus {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.progress-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
}

.progress-fill {
  height: 100%;
  background: var(--btn-gradient);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress-stats-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 500;
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

/* SEO Content Section (AdSense Compliance) */
.seo-content-section {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-border-radius);
  padding: 30px;
  margin-top: 30px;
  backdrop-filter: blur(10px);
  text-align: left;
}

.seo-content-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.seo-content-section p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.seo-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.2s ease;
}

.seo-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.03);
}

.seo-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
}

.seo-card h3 i {
  color: var(--insta-pink);
}

.seo-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.seo-faq {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 25px;
}

.seo-faq h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.faq-item {
  margin-bottom: 15px;
}

.faq-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.faq-item p {
  font-size: 0.85rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Footer style */
.app-footer {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: auto;
  padding: 30px 0 10px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 5px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--insta-pink);
}

.footer-links .separator {
  color: rgba(255, 255, 255, 0.15);
}

.copyright {
  margin-top: 2px;
  font-weight: 500;
}

.hide {
  display: none !important;
}

/* Animations helper classes */
.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

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

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

/* Responsive queries */
@media (max-width: 768px) {
  .single-post-card {
    flex-direction: column;
    align-items: center;
  }
  
  .single-media-preview {
    width: 100%;
    max-width: 100%;
  }
  
  .profile-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  
  .profile-stats {
    justify-content: center;
    gap: 30px;
  }
  
  .search-bar {
    flex-direction: column;
  }
  
  .navigation-tabs {
    flex-direction: column;
    border-radius: 16px;
    padding: 10px;
  }
  
  .tab-btn {
    border-radius: 8px;
  }
}
