/* Aria User Manual - Style Sheet */
/* Ariaブランドカラー: ローズピンク #FF6B9D → コーラル #FFA07A */
:root {
  --primary-color: #FF6B9D;
  --primary-dark: #E85A8A;
  --primary-gradient-start: #FF6B9D;
  --primary-gradient-end: #FFA07A;
  --secondary-color: #6B4EFF;
  --accent-color: #FFD700;
  --text-primary: #2D3436;
  --text-secondary: #636E72;
  --bg-primary: #ffffff;
  --bg-secondary: #FFF5F7;
  --bg-tertiary: #FFF0F3;
  --border-color: #FFE4E9;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --shadow-sm: 0 1px 2px rgba(255,107,157,0.08);
  --shadow-md: 0 4px 6px -1px rgba(255,107,157,0.15), 0 2px 4px -1px rgba(255,107,157,0.08);
  --shadow-lg: 0 10px 15px -3px rgba(255,107,157,0.15), 0 4px 6px -2px rgba(255,107,157,0.08);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Sans', 'Noto Sans JP', sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-top: 3rem; }
h3 { font-size: 1.5rem; margin-top: 2rem; }
h4 { font-size: 1.25rem; margin-top: 1.5rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

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

/* Page Layout - サイドバーとメインコンテンツの配置 */
.page-layout {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 3rem;
}

.content-wrapper {
  display: flex;
  gap: 3rem;
}

/* ========== Header ========== */
.header {
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  color: white;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  color: white;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-nav {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.header-nav a {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.header-nav a:hover,
.header-nav a.active {
  color: white;
  background: rgba(255,255,255,0.2);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  border-bottom-color: white;
  text-decoration: none;
}

.header-cta {
  background: white;
  color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all 0.2s;
}

.header-cta:hover {
  background: var(--bg-tertiary);
  text-decoration: none;
}

/* ========== Hero Section ========== */
.hero {
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-search {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.hero-search input {
  width: 100%;
  padding: 1rem 1.5rem;
  padding-left: 3rem;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
}

.hero-search::before {
  content: "🔍";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
}

/* ========== Sidebar ========== */
.sidebar {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 80px;
  height: fit-content;
  padding: 2rem 0;
  align-self: flex-start;
}

.sidebar-section {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
}

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

.sidebar-section h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
  margin-top: 0;
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav li {
  margin-bottom: 0.25rem;
}

.sidebar-nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: all 0.2s;
}

.sidebar-nav a:hover {
  background: var(--bg-tertiary);
  color: var(--primary-color);
  text-decoration: none;
}

.sidebar-nav a.active {
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  color: white;
}

.sidebar-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.sidebar-links {
  list-style: none;
}

.sidebar-links li {
  margin-bottom: 0.25rem;
}

.sidebar-links a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: all 0.2s;
}

.sidebar-links a:hover {
  background: var(--bg-tertiary);
  text-decoration: none;
}

.sidebar-links a.active {
  background: var(--primary-color);
  color: white;
}

/* ========== Main Content ========== */
.main-content {
  flex: 1;
  min-width: 0;
  padding: 2rem 0 4rem;
  max-width: 900px;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumb a {
  color: var(--text-secondary);
}

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

.breadcrumb .separator {
  color: var(--text-secondary);
  margin: 0 0.25rem;
}

.breadcrumb .current {
  color: var(--text-primary);
  font-weight: 500;
}

.breadcrumb span {
  color: var(--text-primary);
}

/* ========== Manual Article ========== */
.manual-article {
  line-height: 1.8;
}

.manual-article .lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary-color);
}

.section {
  margin-bottom: 4rem;
}

/* ========== Feature Box ========== */
.feature-box {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid var(--border-color);
}

.feature-box h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-item {
  background: white;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.feature-item .feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.feature-item h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  color: var(--text-primary);
}

.feature-item p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ========== Comparison Box ========== */
.comparison-box {
  margin: 2rem 0;
}

.comparison-box h3 {
  margin-bottom: 1rem;
}

/* ========== Cards ========== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  text-decoration: none;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

.card-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ========== Step Guide ========== */
.step-guide {
  margin: 2rem 0;
}

.step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.step::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 48px;
  bottom: -2rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-color), var(--border-color));
}

.step:last-child::before {
  display: none;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.step-content {
  flex: 1;
  padding-top: 0.5rem;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-description {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* ========== Screenshot ========== */
.screenshot-container {
  margin: 1.5rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.screenshot-container img {
  width: 100%;
  display: block;
}

.screenshot-placeholder {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  padding: 3rem;
  text-align: center;
  color: var(--text-secondary);
}

.screenshot-placeholder .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.screenshot-placeholder p {
  margin: 0;
  font-size: 0.875rem;
}

.screenshot-caption {
  background: var(--bg-secondary);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-color);
}

/* ========== Tips, Notes, Warnings ========== */
.callout {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
  display: flex;
  gap: 0.75rem;
}

.callout-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.callout-content {
  flex: 1;
}

.callout-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.callout-text {
  font-size: 0.9rem;
  margin: 0;
}

.callout-tip {
  background: #ecfdf5;
  border-left: 4px solid var(--success-color);
}

.callout-tip .callout-title { color: var(--success-color); }

.callout-note {
  background: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
}

.callout-note .callout-title { color: var(--primary-color); }

.callout-warning {
  background: #fffbeb;
  border-left: 4px solid var(--warning-color);
}

.callout-warning .callout-title { color: var(--warning-color); }

.callout-danger {
  background: #fef2f2;
  border-left: 4px solid var(--error-color);
}

.callout-danger .callout-title { color: var(--error-color); }

/* ========== Pro Tips ========== */
.pro-tips {
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  color: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.pro-tips-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.pro-tips-badge {
  background: var(--accent-color);
  color: var(--text-primary);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pro-tips-title {
  font-size: 1.25rem;
  margin: 0;
  color: white;
}

.pro-tips-list {
  list-style: none;
}

.pro-tips-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.pro-tips-list li:last-child {
  border-bottom: none;
}

.pro-tips-list .icon {
  color: var(--accent-color);
  font-size: 1.25rem;
}

/* ========== Use Case ========== */
.use-case-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.use-case-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.use-case-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  color: white;
}

.use-case-header.salon { background: linear-gradient(135deg, #FF6B9D, #FFA07A); }
.use-case-header.fitness { background: linear-gradient(135deg, #6B4EFF, #9B7BFF); }
.use-case-header.school { background: linear-gradient(135deg, #10b981, #34d399); }
.use-case-header.ec { background: linear-gradient(135deg, #f59e0b, #fbbf24); }

.use-case-icon {
  font-size: 2.5rem;
}

.use-case-header h3 {
  margin: 0;
  color: white;
}

.use-case-content {
  padding: 1.5rem;
}

.use-case-content h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.use-case-meta {
  flex: 1;
}

.use-case-title {
  font-size: 1.5rem;
  margin: 0;
}

.use-case-industry {
  color: var(--primary-color);
  font-weight: 500;
}

/* ========== Scenario Flow ========== */
.scenario-flow {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.scenario-step {
  background: white;
  padding: 1rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.scenario-step .timing {
  font-size: 0.75rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.scenario-step .content {
  font-size: 0.875rem;
  color: var(--text-primary);
  margin: 0;
}

/* ========== Table of Contents ========== */
.toc {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2rem 0;
  border: 1px solid var(--border-color);
}

.toc-title {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.toc-list {
  list-style: none;
}

.toc-list li {
  margin-bottom: 0.5rem;
}

.toc-list a {
  color: var(--text-primary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toc-list a::before {
  content: "→";
  color: var(--primary-color);
}

.toc-list a:hover {
  color: var(--primary-color);
}

/* ========== Feature Comparison ========== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  font-weight: 600;
  color: white;
}

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

.comparison-table tr:hover td {
  background: var(--bg-secondary);
}

/* ========== Video Embed ========== */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ========== FAQ ========== */
.faq-list {
  margin: 2rem 0;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  background: white;
}

.faq-question {
  padding: 1rem 1.25rem;
  background: var(--bg-secondary);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--bg-tertiary);
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary-color);
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 1rem 1.25rem;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ========== Footer ========== */
.footer {
  background: var(--text-primary);
  color: white;
  padding: 3rem 0;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-section h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.6);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .page-layout,
  .content-wrapper {
    flex-direction: column;
    padding: 0 1rem;
  }

  .sidebar {
    width: 100%;
    position: relative;
    top: 0;
    order: -1;
  }

  .sidebar-section {
    margin-bottom: 1rem;
  }

  .sidebar-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .sidebar-nav li {
    margin-bottom: 0;
  }

  .sidebar-nav a {
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .header-nav {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step {
    flex-direction: column;
    gap: 1rem;
  }

  .step::before {
    display: none;
  }

  .comparison-table {
    font-size: 0.875rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem;
  }
}

/* ========== Utility Classes ========== */
.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--text-secondary); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ========== Aria Specific ========== */
.aria-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
}

.aria-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.aria-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: white;
}

/* Mia Avatar for manual */
.mia-hint {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-secondary);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  margin: 1.5rem 0;
  border: 1px solid var(--border-color);
}

.mia-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(255,107,157,0.3);
}

.mia-avatar img {
  width: 32px;
  height: 32px;
}

.mia-content {
  flex: 1;
}

.mia-label {
  font-size: 0.75rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.mia-text {
  margin: 0;
  color: var(--text-primary);
  font-size: 0.9rem;
}
