.stocks-page {
  padding: 2rem 0;
  background: var(--bg-main);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.stocks-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.stocks-header::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.stocks-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-bright);
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, var(--text-bright), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stocks-header .lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(122, 162, 247, 0.2), transparent);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.card.stock {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.card.stock:nth-child(1) { animation-delay: 0.1s; }
.card.stock:nth-child(2) { animation-delay: 0.2s; }
.card.stock:nth-child(3) { animation-delay: 0.3s; }
.card.stock:nth-child(4) { animation-delay: 0.4s; }
.card.stock:nth-child(5) { animation-delay: 0.5s; }
.card.stock:nth-child(6) { animation-delay: 0.6s; }

.card.stock::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card.stock:hover::before {
  opacity: 1;
}

.card.stock:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 25px -5px rgba(122, 162, 247, 0.15), 0 10px 10px -5px rgba(122, 162, 247, 0.04), 0 0 0 1px rgba(122, 162, 247, 0.1);
  transform: translateY(-4px);
}

.card.stock:hover .rank-number {
  animation: pulse 0.6s ease-in-out;
  box-shadow: 0 0 20px rgba(122, 162, 247, 0.4);
}

.card-head {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.rank {
  margin-right: 1rem;
}

.rank-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--bg-main);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
  box-shadow: 0 4px 6px -1px rgba(122, 162, 247, 0.3);
  position: relative;
}

.rank-number::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.card.stock:hover .rank-number::after {
  opacity: 0.2;
}

.stock-info h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  color: var(--text-bright);
  letter-spacing: -0.025em;
}

.stock-info .sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}

.assets.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.assets.metrics div {
  text-align: center;
  padding: 1rem 0.75rem;
  background: var(--bg-surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  animation: slideIn 0.8s ease-out;
  animation-fill-mode: both;
}

.assets.metrics div:nth-child(1) { animation-delay: 0.2s; }
.assets.metrics div:nth-child(2) { animation-delay: 0.3s; }
.assets.metrics div:nth-child(3) { animation-delay: 0.4s; }

.assets.metrics div:hover {
  background: var(--bg-highlight);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  border-color: var(--primary);
}

.assets.metrics dt {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.assets.metrics dd {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-bright);
  margin: 0;
  line-height: 1.2;
}

.card-actions {
  text-align: center;
}



.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-surface);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.empty-message {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}

.empty-hint {
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
  
  .stocks-page {
    padding: 1.5rem 0;
  }
  
  .stocks-header {
    margin-bottom: 3rem;
  }
  
  .stocks-header h1 {
    font-size: 2.25rem;
    line-height: 1.2;
  }
  
  .stocks-header .lead {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .assets.metrics {
    grid-template-columns: 1fr;
    gap: 0.875rem;
    margin-bottom: 1.75rem;
  }
  
  .assets.metrics div {
    padding: 1rem 0.875rem;
  }
  
  .card-head {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }
  
  .rank {
    margin-right: 1rem;
    margin-bottom: 0;
  }
  
  .card.stock {
    padding: 1.75rem 1.5rem;
  }
  
  .stock-info h3 {
    font-size: 1.5rem;
  }
  
  .assets.btn,
  .btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.9rem;
    min-height: 48px;
  }
  
  .stock-search-input {
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .stocks-page {
    padding: 1.25rem 0;
  }
  
  .stocks-header {
    margin-bottom: 2.5rem;
  }
  
  .stocks-header h1 {
    font-size: 1.875rem;
  }
  
  .stocks-header .lead {
    font-size: 0.95rem;
  }

  .card.stock {
    padding: 1.5rem 1.25rem;
  }
  
  .card-head {
    flex-direction: column;
    text-align: center;
  }
  
  .rank {
    margin-right: 0;
    margin-bottom: 0.75rem;
  }
  
  .stock-info h3 {
    font-size: 1.35rem;
  }

  .assets.metrics div,
  .metrics div {
    padding: 0.875rem 0.75rem;
  }

  .assets.metrics dd,
  .metrics dd {
    font-size: 1.125rem;
  }
  
  .assets.btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .assets.metrics {
    gap: 0.625rem;
    margin-bottom: 1.5rem;
  }

  .assets.metrics div {
    padding: 0.875rem 0.75rem;
  }
}

/* Enhanced Section Title Styling */
.analysis-detail .section-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-bright);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.analysis-detail .section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

/* Special styling for section headers with badges */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.section-header .section-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-bright);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-header .section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

/* Add spacing between analysis cards on the show page */
.analyses-section .analysis-detail-card {
  margin-bottom: 2rem;
}

.analyses-section .analysis-detail-card:last-child {
  margin-bottom: 0;
}

/* Influencer Sentiment Section */
.influencer-sentiment {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.sentiment-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: var(--bg-surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  flex: 1;
  max-width: 280px;
  transition: all 0.3s ease;
}

.sentiment-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.sentiment-item.sentiment-buy {
  border-left: 4px solid var(--success);
}

.sentiment-item.sentiment-sell {
  border-left: 4px solid var(--danger);
}

.sentiment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
}

.sentiment-buy .sentiment-icon {
  background: rgba(158, 206, 106, 0.15);
  color: var(--success);
}

.sentiment-sell .sentiment-icon {
  background: rgba(247, 118, 142, 0.15);
  color: var(--danger);
}

.sentiment-icon svg {
  width: 24px;
  height: 24px;
}

.sentiment-data {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sentiment-count {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-bright);
}

.sentiment-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.sentiment-period-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(122, 162, 247, 0.15);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .influencer-sentiment {
    flex-direction: column;
    gap: 1rem;
  }

  .sentiment-item {
    max-width: none;
    padding: 1.25rem 1.5rem;
  }

  .sentiment-count {
    font-size: 1.75rem;
  }

  .sentiment-icon {
    width: 40px;
    height: 40px;
  }

  .sentiment-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* Stock Search Section */
.stock-search-section {
  margin-top: 5rem;
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
  animation: fadeInUp 0.8s ease-out;
}

.stock-search-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}

.stock-search-section .lead {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.stock-search-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.stock-search-input {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: var(--bg-surface);
  color: var(--text-bright);
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.stock-search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 10px 15px -3px rgba(122, 162, 247, 0.2), 0 0 0 3px var(--ring);
}

.stock-search-input::placeholder {
  color: var(--text-dim);
}

/* Autocomplete Results */
.autocomplete-results {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
  max-height: 400px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.autocomplete-results.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.autocomplete-item {
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.autocomplete-item:last-child {
  border-bottom: none;
}

.autocomplete-item:hover,
.autocomplete-item.selected {
  background: var(--bg-highlight);
  border-left: 3px solid var(--primary);
}

.autocomplete-ticker {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-bright);
  min-width: 80px;
}

.autocomplete-details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 1;
  gap: 0.25rem;
}

.autocomplete-name {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: right;
}

.autocomplete-exchange {
  font-size: 0.75rem;
  color: var(--text);
  background: var(--bg-surface);
  padding: 0.125rem 0.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Scrollbar Styling */
.autocomplete-results::-webkit-scrollbar {
  width: 8px;
}

.autocomplete-results::-webkit-scrollbar-track {
  background: var(--bg-surface);
  border-radius: 0 12px 12px 0;
}

.autocomplete-results::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.autocomplete-results::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

@media (max-width: 768px) {
  .stock-search-section {
    margin-top: 3rem;
    padding: 2rem 0;
  }

  .stock-search-section h2 {
    font-size: 1.5rem;
  }

  .stock-search-input {
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
  }

  .autocomplete-item {
    padding: 0.875rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .autocomplete-ticker {
    min-width: auto;
  }

  .autocomplete-details {
    align-items: flex-start;
    width: 100%;
  }

  .autocomplete-name {
    text-align: left;
  }
}

/* ===========================
   Asset Detail Tabs
   =========================== */

.asset-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0.5rem;
  background: var(--bg-surface);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.asset-tab {
  flex: 1;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.asset-tab:hover {
  color: var(--text-bright);
  background: var(--bg-highlight);
}

.asset-tab.active {
  color: var(--bg-main);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 4px 6px -1px rgba(122, 162, 247, 0.3);
}

.asset-tab-panel {
  display: none;
}

.asset-tab-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

/* ===========================
   Influencers Tab Styles
   =========================== */

.influencers-table-wrapper {
  overflow-x: auto;
}

.influencers-table {
  width: 100%;
  border-collapse: collapse;
}

.influencers-table th {
  padding: 1rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}

.influencers-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.influencers-table tbody tr:hover {
  background: var(--bg-highlight);
}

.influencers-table tbody tr:last-child td {
  border-bottom: none;
}

.rank-col {
  width: 60px;
  text-align: center;
}

.influencer-col {
  min-width: 200px;
}

.recommendations-col {
  width: 150px;
  text-align: center;
}

.actions-col {
  width: 140px;
  text-align: right;
}

.influencer-rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-bright);
  background: var(--bg-highlight);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.influencer-cell {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.influencer-avatar-small {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-highlight);
}

.influencer-avatar-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-fallback-small {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  background: linear-gradient(135deg, var(--bg-highlight), var(--bg-surface));
}

.influencer-name {
  font-weight: 600;
  color: var(--text-bright);
}

.buy-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--success);
  background: rgba(158, 206, 106, 0.15);
  border-radius: 2rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

/* Mobile Card View for Influencers */
.influencers-cards {
  display: none;
}

.influencer-rank-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
}

.influencer-rank-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.influencer-rank-card:last-child {
  margin-bottom: 0;
}

.influencer-rank-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

.influencer-rank-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.influencer-rank-info .influencer-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.buy-count-label {
  font-size: 0.8rem;
  color: var(--success);
  font-weight: 500;
}

/* ===========================
   Analyses Tab Styles
   =========================== */

.analyses-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.analysis-item-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.analysis-item-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.analysis-item-content {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
}

.analysis-item-thumbnail {
  position: relative;
  width: 200px;
  height: 112px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-highlight);
}

.analysis-item-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.analysis-item-thumbnail .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.analysis-item-thumbnail:hover .play-overlay {
  opacity: 1;
}

.analysis-item-thumbnail .play-overlay svg {
  width: 48px;
  height: 48px;
  color: white;
}

.analysis-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.analysis-item-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}

.analysis-item-title a {
  color: var(--text-bright);
  text-decoration: none;
  transition: color 0.2s ease;
}

.analysis-item-title a:hover {
  color: var(--primary);
}

.analysis-item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.analysis-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.author-avatar-small {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-highlight);
}

.author-avatar-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.author-name a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.author-name a:hover {
  color: var(--primary);
}

.analysis-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.analysis-date svg {
  width: 16px;
  height: 16px;
}

.analysis-item-actions {
  margin-top: auto;
}

/* ===========================
   Empty State Enhancements
   =========================== */

.empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: var(--bg-highlight);
  border-radius: 50%;
}

.empty-icon svg {
  width: 32px;
  height: 32px;
  color: var(--text-muted);
}

.empty-hint {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
}

/* ===========================
   Responsive Styles
   =========================== */

@media (max-width: 768px) {
  .asset-tabs {
    flex-direction: column;
    gap: 0.375rem;
    padding: 0.375rem;
  }

  .asset-tab {
    padding: 0.875rem 1rem;
    font-size: 0.8rem;
  }

  .influencers-table-wrapper {
    display: none;
  }

  .influencers-cards {
    display: block;
  }

  .analysis-item-content {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .analysis-item-thumbnail {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .analysis-item-title {
    font-size: 1rem;
  }

  .analysis-item-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .asset-tab {
    padding: 0.75rem;
    font-size: 0.75rem;
  }

  .influencer-rank-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .influencer-rank-card .btn {
    width: 100%;
    text-align: center;
  }

  .analysis-item-actions .btn {
    width: 100%;
    text-align: center;
  }
}
