/* ── EVE Portal Global Styles ─────────────────────── */

:root {
  --bg: #f0f2f5;
  --bg-card: #ffffff;
  --text: #1a1a2e;
  --text-secondary: #666;
  --text-muted: #999;
  --border: #e0e0e0;
  --accent: #0d47a1;
  --accent-light: #e3f2fd;
  --success: #2e7d32;
  --success-light: #e8f5e9;
  --warning: #f57c00;
  --warning-light: #fff3e0;
  --danger: #c62828;
  --danger-light: #ffebee;
  --info: #0288d1;
  --shield-blue: #1565c0;
  --armor-orange: #ef6c00;
  --hull-red: #b71c1c;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-hover: 0 4px 16px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-sm: 4px;
  --transition: 0.2s ease;
  --font: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', monospace;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ───────────────────────────────────────── */

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* ── Navigation ───────────────────────────────────── */

.navbar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.navbar-brand:hover { text-decoration: none; }

.navbar-brand .logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent), #1976d2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 900;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.navbar-nav a, .navbar-nav button {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
}

.navbar-nav a:hover, .navbar-nav button:hover {
  background: var(--bg);
  color: var(--text);
  text-decoration: none;
}

.navbar-nav a.active {
  color: var(--accent);
  background: var(--accent-light);
}

.nav-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-user img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

/* ── Buttons ──────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
  text-decoration: none;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: white;
}
.btn-primary:hover { background: #1565c0; color: white; }

.btn-success {
  background: var(--success);
  color: white;
}
.btn-success:hover { background: #1b5e20; color: white; }

.btn-warning {
  background: var(--warning);
  color: white;
}

.btn-danger {
  background: var(--danger);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: white; }

.btn-sm { padding: 6px 12px; font-size: 0.8rem; }
.btn-lg { padding: 14px 32px; font-size: 1.1rem; }

.btn-ghost {
  background: none;
  border: none;
  color: var(--text-secondary);
  padding: 6px 12px;
}
.btn-ghost:hover { color: var(--text); background: var(--bg); }

/* ── Cards ────────────────────────────────────────── */

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.card:hover { box-shadow: var(--shadow-hover); }

.card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-header h3 {
  font-size: 1rem;
  font-weight: 600;
}

.card-body { padding: 20px; }
.card-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  background: #fafafa;
}

/* ── Character Cards ──────────────────────────────── */

.character-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.character-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  border-top: 4px solid var(--accent);
}

.character-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.character-card-inner {
  padding: 16px;
  display: flex;
  gap: 14px;
}

.character-card .portrait {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  flex-shrink: 0;
}

.character-card .info {
  flex: 1;
  min-width: 0;
}

.character-card .name {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.character-card .corp-name {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.character-card .location {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.character-card .indicators {
  display: flex;
  gap: 8px;
  padding: 0 16px 12px;
}

.indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
}

.indicator-jobs {
  background: var(--warning-light);
  color: var(--warning);
}

.indicator-skills {
  background: var(--success-light);
  color: var(--success);
}

.indicator-complete {
  background: var(--success-light);
  color: var(--success);
}

/* ── Corp Group Headers ───────────────────────────── */

.corp-group {
  margin-bottom: 32px;
}

.corp-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}

.corp-group-header h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.corp-group-header .ticker {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── Progress Bars ────────────────────────────────── */

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar .fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.5s ease;
}

.progress-bar .fill-accent { background: var(--accent); }
.progress-bar .fill-success { background: var(--success); }
.progress-bar .fill-warning { background: var(--warning); }
.progress-bar .fill-danger { background: var(--danger); }

/* ── Collapsible Sections ─────────────────────────── */

.collapsible {
  margin-bottom: 16px;
}

.collapsible-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  user-select: none;
  transition: all var(--transition);
}

.collapsible-header:hover { background: #fafafa; }

.collapsible-header h3 {
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.collapsible-header .badge {
  background: var(--accent-light);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.collapsible-header .arrow {
  transition: transform var(--transition);
  color: var(--text-muted);
}

.collapsible.open .collapsible-header .arrow { transform: rotate(180deg); }

.collapsible-body {
  display: none;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--bg-card);
  overflow: hidden;
}

.collapsible.open .collapsible-body { display: block; }

/* ── Tables ───────────────────────────────────────── */

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

.data-table th {
  text-align: left;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #fafafa;
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 10px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid #f0f0f0;
}

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

.data-table .amount-positive { color: var(--success); }
.data-table .amount-negative { color: var(--danger); }

/* ── Industry Job Rows ────────────────────────────── */

.job-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.job-row:last-child { border-bottom: none; }

.job-row .job-info .job-name { font-weight: 600; font-size: 0.9rem; }
.job-row .job-info .job-meta { font-size: 0.8rem; color: var(--text-secondary); }

.job-status {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.job-status-active { background: var(--accent-light); color: var(--accent); }
.job-status-delivered { background: #f0f0f0; color: var(--text-muted); }
.job-status-complete { background: var(--success-light); color: var(--success); }

.job-progress {
  width: 120px;
}

/* ── Structure Cards ──────────────────────────────── */

.structure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  padding: 16px;
}

.structure-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px;
}

.structure-card.citadel { border-left-color: #1565c0; }
.structure-card.engineering { border-left-color: #6a1b9a; }
.structure-card.refinery { border-left-color: #e65100; }
.structure-card.flex { border-left-color: #00838f; }

.structure-card .structure-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.structure-card .structure-type {
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.structure-card .structure-system {
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.structure-card .fuel-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.structure-card .services {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.service-tag {
  padding: 2px 8px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 600;
}

/* ── HP Bars (Structure Attacks) ──────────────────── */

.hp-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 8px 0;
}

.hp-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
}

.hp-bar .label {
  width: 50px;
  font-weight: 600;
}

.hp-bar .bar {
  flex: 1;
  height: 12px;
  background: #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
}

.hp-bar .bar .fill-shield { background: var(--shield-blue); }
.hp-bar .bar .fill-armor { background: var(--armor-orange); }
.hp-bar .bar .fill-hull { background: var(--hull-red); }

.hp-bar .pct { width: 40px; text-align: right; font-weight: 600; }

/* ── Stats Grid ───────────────────────────────────── */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.stat-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  text-align: center;
}

.stat-card .stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-card .stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ── Alerts ───────────────────────────────────────── */

.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.alert-danger { background: var(--danger-light); color: var(--danger); border: 1px solid #ffcdd2; }
.alert-warning { background: var(--warning-light); color: var(--warning); border: 1px solid #ffe0b2; }
.alert-success { background: var(--success-light); color: var(--success); border: 1px solid #c8e6c9; }
.alert-info { background: var(--accent-light); color: var(--accent); border: 1px solid #bbdefb; }

/* ── Loading ──────────────────────────────────────── */

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: var(--text-muted);
}

.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 10px;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Empty State ──────────────────────────────────── */

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
}

.empty-state .icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--text); }
.empty-state p { max-width: 400px; margin: 0 auto 20px; }

/* ── Billing Page ─────────────────────────────────── */

.billing-card {
  max-width: 500px;
  margin: 40px auto;
}

.price-display {
  text-align: center;
  padding: 30px;
}

.price-display .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
}

.price-display .period {
  color: var(--text-secondary);
  font-size: 1rem;
}

.feature-list {
  list-style: none;
  padding: 0 20px 20px;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.feature-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

/* ── Page Header ──────────────────────────────────── */

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 24px 0 16px;
}

.page-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

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

/* ── Tabs ─────────────────────────────────────────── */

.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 20px;
}

.tab {
  padding: 10px 20px;
  border: none;
  background: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
  font-family: var(--font);
}

.tab:hover { color: var(--text); }
.tab.active { color: var(--accent); border-bottom-color: var(--accent); }

/* ── Skill Queue Styles ───────────────────────────── */

.skill-queue-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid #f0f0f0;
}

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

.skill-queue-item .level-pips {
  display: flex;
  gap: 2px;
}

.level-pip {
  width: 8px;
  height: 14px;
  border-radius: 2px;
  background: var(--border);
}

.level-pip.filled { background: var(--accent); }
.level-pip.training { background: var(--warning); animation: pulse 1.5s infinite; }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ── Landing Page ─────────────────────────────────── */

.landing-hero {
  background: linear-gradient(135deg, #0d1b2a 0%, #1b2838 50%, #0d2137 100%);
  color: white;
  padding: 80px 20px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.landing-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="0.5" fill="white" opacity="0.3"/><circle cx="50" cy="10" r="0.3" fill="white" opacity="0.4"/><circle cx="80" cy="50" r="0.4" fill="white" opacity="0.2"/><circle cx="30" cy="70" r="0.3" fill="white" opacity="0.3"/><circle cx="70" cy="80" r="0.5" fill="white" opacity="0.2"/><circle cx="10" cy="90" r="0.4" fill="white" opacity="0.3"/><circle cx="90" cy="20" r="0.3" fill="white" opacity="0.4"/><circle cx="40" cy="45" r="0.4" fill="white" opacity="0.2"/><circle cx="60" cy="65" r="0.3" fill="white" opacity="0.3"/></svg>') repeat;
  background-size: 200px;
  opacity: 0.5;
}

.landing-hero .content { position: relative; z-index: 1; }

.landing-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.landing-hero h1 span { color: #64b5f6; }

.landing-hero p {
  font-size: 1.2rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.landing-hero .btn-hero {
  padding: 16px 40px;
  font-size: 1.1rem;
  background: #1565c0;
  color: white;
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.landing-hero .btn-hero:hover {
  background: #1976d2;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.3);
  text-decoration: none;
}

.landing-features {
  padding: 80px 20px;
  background: white;
}

.landing-features h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 32px 24px;
}

.feature-card .feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.landing-pricing {
  padding: 80px 20px;
  background: var(--bg);
  text-align: center;
}

.landing-pricing h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.landing-pricing .subtitle {
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.pricing-card {
  max-width: 400px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  overflow: hidden;
  border: 2px solid var(--accent);
}

.pricing-card .pricing-header {
  background: linear-gradient(135deg, var(--accent), #1565c0);
  color: white;
  padding: 24px;
}

.pricing-card .pricing-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.pricing-card .price-big {
  font-size: 3rem;
  font-weight: 800;
}

.pricing-card .price-period {
  opacity: 0.8;
  font-size: 1rem;
}

.pricing-card .pricing-body {
  padding: 24px;
}

.pricing-card .pricing-body ul {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.pricing-card .pricing-body li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card .pricing-body li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  font-size: 1.1rem;
}

.landing-footer {
  padding: 40px 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}

.landing-footer p { margin-bottom: 8px; }

/* ── Toast Notifications ──────────────────────────── */

.toast-container {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  font-size: 0.9rem;
  font-weight: 500;
  animation: slideIn 0.3s ease;
  max-width: 400px;
}

.toast-danger { background: var(--danger); color: white; }
.toast-success { background: var(--success); color: white; }
.toast-warning { background: var(--warning); color: white; }
.toast-info { background: var(--info); color: white; }

@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } }

/* ── Responsive ───────────────────────────────────── */

@media (max-width: 768px) {
  .landing-hero h1 { font-size: 2rem; }
  .landing-hero p { font-size: 1rem; }
  .character-grid { grid-template-columns: 1fr; }
  .structure-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .navbar-nav { gap: 2px; }
  .navbar-nav a, .navbar-nav button { padding: 6px 10px; font-size: 0.8rem; }
  .page-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .features-grid { grid-template-columns: 1fr; }
}

/* ── Utilities ────────────────────────────────────── */

.text-muted { color: var(--text-muted); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.hidden { display: none !important; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.mono { font-family: var(--font-mono); }
.truncate { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
