/* ============================
   CSS Reset & Base
   ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Theme Colors: Blue, Green, Orange, White */
  --bg-primary: #ffffff; /* White background */
  --bg-secondary: #f4f6fb;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --border-color: rgba(0,0,0,0.08);
  --border-active: #3b82f6;

  --accent-primary: #3b82f6; /* Blue */
  --accent-secondary: #2563eb;
  --accent-green: #10b981; /* Green */
  --accent-orange: #f97316; /* Orange */
  --accent-blue: #3b82f6;

  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.13);
  --shadow-glow: 0 0 30px rgba(99,102,241,0.15);

  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html, body {
  height: 100%;
  overflow: hidden;
  overflow-x: hidden;
}

body {
  font-family: 'Be Vietnam Pro', 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.5;
  position: relative;
}

/* ============================
   Background Particles
   ============================ */
.bg-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float linear infinite;
  opacity: 0.04;
}

@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.04; }
  90% { opacity: 0.04; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ============================
   Header
   ============================ */
.site-header {
  position: relative;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  height: 56px;
}

.header-inner {
  max-width: 1600px;
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left, .header-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.header-right {
  justify-content: flex-end;
}

.header-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.logo-icon svg {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 10px rgba(99,102,241,0.5));
}

.logo-text {
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1, #a78bfa, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.badge-new {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  background: #f97316;
  border: none;
  color: #ffffff;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(249,115,22,0.3);
}

/* ============================
   Footer
   ============================ */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-color);
  height: 36px;
  display: flex;
  align-items: center;
}

.footer-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.footer-copy strong {
  color: var(--text-secondary);
  font-weight: 600;
}

/* ============================
   Main Layout
   ============================ */
.app-main {
  position: relative;
  z-index: 1;
  height: calc(100vh - 56px - 36px);
  overflow: hidden;
}

@media (max-width: 820px) {
  html, body {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .app-main {
    height: auto;
    min-height: auto;
    overflow: visible;
  }
}


.app-container {
  display: grid;
  grid-template-columns: 260px 1fr 280px;
  height: 100%;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px;
  box-sizing: border-box;
  gap: 12px;
}

/* ============================
   Panel Base
   ============================ */
.panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(10px);
  min-width: 0;
}

/* ============================
   Left Panel - Frame Selector
   ============================ */
.panel-left {
  padding: 16px;
  gap: 12px;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.panel-header svg { color: var(--accent-primary); flex-shrink: 0; }

.panel-header h2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.frame-search {
  position: relative;
  display: flex;
  align-items: center;
}

.frame-search input {
  width: 100%;
  padding: 8px 32px 8px 12px;
  background: rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.frame-search input:focus {
  border-color: var(--accent-primary);
  background: rgba(99,102,241,0.08);
}

.frame-search input::placeholder { color: var(--text-muted); }

.frame-search svg {
  position: absolute;
  right: 10px;
  color: var(--text-muted);
  pointer-events: none;
}

.frames-grid {
  flex: 1;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-content: start;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.1) transparent;
}

.frames-grid::-webkit-scrollbar { width: 4px; }
.frames-grid::-webkit-scrollbar-track { background: transparent; }
.frames-grid::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); border-radius: 4px; }

.frame-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-color);
  cursor: pointer;
  overflow: hidden;
  background: #f8fafc;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 4px;
}

.frame-item:hover {
  border-color: rgba(59,130,246,0.5);
  background: rgba(59,130,246,0.06);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm), 0 0 12px rgba(59,130,246,0.15);
}

.frame-item.active {
  border-color: var(--accent-primary);
  background: rgba(59,130,246,0.1);
  box-shadow: 0 0 16px rgba(59,130,246,0.25);
}

.frame-item > canvas {
  display: block;
  width: 76% !important;
  height: 76% !important;
  flex-shrink: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  border-radius: 4px;
}

.frame-item-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  letter-spacing: 0.05em;
}

.frame-item.active .frame-item-label { color: var(--accent-primary); }

.frame-item .active-check {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: var(--transition);
}

.frame-item.active .active-check {
  opacity: 1;
  transform: scale(1);
}

/* ============================
   Center Panel - Editor
   ============================ */
.panel-center {
  padding: 16px;
  gap: 12px;
  align-items: stretch;
  overflow: hidden;
  min-width: 0;
}

.canvas-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}

.canvas-container {
  position: relative;
  width: 100%;
  max-width: min(500px, calc(100vw - 24px));
  aspect-ratio: 1;
  background: rgba(0,0,0,0.4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  cursor: crosshair;
  box-sizing: border-box;
}

.canvas-container canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.drag-overlay {
  position: absolute;
  inset: 0;
  background: rgba(99,102,241,0.15);
  border: 2px dashed var(--accent-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.drag-overlay.active {
  opacity: 1;
}

.drag-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--accent-primary);
}

.drag-overlay-content p {
  font-size: 16px;
  font-weight: 700;
}

.no-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 10;
  pointer-events: none;
  transition: var(--transition);
}

.no-image-placeholder svg { color: var(--text-muted); }
.no-image-placeholder p { color: var(--text-muted); font-size: 14px; }
.no-image-placeholder .btn { pointer-events: all; }

.no-image-placeholder.hidden { opacity: 0; pointer-events: none; }

/* ============================
   Controls Bar
   ============================ */
.controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.controls-left, .controls-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.divider-v {
  width: 1px;
  height: 22px;
  background: var(--border-color);
  margin: 0 2px;
}

.zoom-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.zoom-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100px;
  height: 4px;
  background: rgba(0,0,0,0.1);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}

.zoom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-primary);
  cursor: pointer;
  box-shadow: 0 0 8px rgba(99,102,241,0.5);
  transition: var(--transition);
}

.zoom-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

.zoom-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  min-width: 36px;
  text-align: right;
}

/* ============================
   Buttons
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  box-shadow: 0 4px 15px rgba(99,102,241,0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99,102,241,0.5);
}

.btn-secondary {
  background: rgba(0,0,0,0.08);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(0,0,0,0.12);
  border-color: rgba(0,0,0,0.2);
}

.btn-icon-only {
  padding: 7px;
  background: rgba(0,0,0,0.06);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}

.btn-icon-only:hover {
  background: rgba(99,102,241,0.15);
  color: var(--accent-primary);
  border-color: rgba(99,102,241,0.3);
}

.btn-download {
  padding: 7px 16px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 10px rgba(16,185,129,0.3);
  white-space: nowrap;
}

.btn-download:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(16,185,129,0.45);
}

.btn-download:active { transform: translateY(0); }

.btn-download:disabled {
  background: #d1d5db;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.7;
}

/* ============================
   Right Panel
   ============================ */
.panel-right {
  padding: 14px;
  gap: 10px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.1) transparent;
}

.panel-right::-webkit-scrollbar { width: 4px; }
.panel-right::-webkit-scrollbar-track { background: transparent; }
.panel-right::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); border-radius: 4px; }

.info-card {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.info-card-header.orange {
  background: #f97316;
  color: #ffffff;
  border-bottom: none;
}

.info-card-header.blue {
  background: #3b82f6;
  color: #ffffff;
  border-bottom: none;
}

.info-card-body {
  padding: 14px;
}

.step-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.step-item:last-child { margin-bottom: 0; }

.step-num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.step-item p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-item strong { color: var(--text-primary); }
.highlight { color: var(--accent-primary) !important; }
.highlight-green { color: var(--accent-green) !important; }

.share-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.share-content-box {
  position: relative;
  background: rgba(0,0,0,0.04);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.share-text {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 10px;
}

.btn-copy {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #3b82f6;
  border: none;
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  font-size: 12px;
  font-family: inherit;
  font-weight: 600;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
}

.btn-copy:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59,130,246,0.3);
}

.selected-frame-info {
  padding: 14px;
}

.frame-info-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.frame-thumb-preview {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame-thumb-preview canvas {
  width: 100%;
  height: 100%;
}

.frame-details {
  flex: 1;
  min-width: 0;
}

.frame-detail-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.frame-detail-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.frame-detail-cat {
  font-size: 11px;
  color: var(--accent-primary);
  font-weight: 500;
  margin-top: 2px;
}

/* ============================
   Toast Notification
   ============================ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(15,22,41,0.95);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 9999;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast.success { border-color: rgba(16,217,168,0.4); color: var(--accent-green); }
.toast.error { border-color: rgba(239,68,68,0.4); color: #f87171; }
.toast.info { border-color: rgba(99,102,241,0.4); color: #a78bfa; }

/* ============================
   Loading Spinner
   ============================ */
@keyframes spin {
  to { transform: rotate(360deg); }
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

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

/* Large desktop */
@media (max-width: 1200px) {
  .app-container {
    grid-template-columns: 230px 1fr 260px;
    padding: 12px;
    gap: 10px;
  }
}

/* Small desktop / large tablet landscape */
@media (max-width: 1024px) {
  .app-container {
    grid-template-columns: 200px 1fr 230px;
    padding: 10px;
    gap: 8px;
  }

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

  .panel-right {
    padding: 10px;
    gap: 8px;
  }

  .info-card-body {
    padding: 10px;
  }

  .step-item p {
    font-size: 12px;
  }
}

/* Tablet portrait */
@media (max-width: 820px) {
  html, body {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
  }

  .app-main {
    height: auto;
    overflow: visible;
  }

  .app-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
    padding: 12px;
    gap: 12px;
    max-width: 100%;
  }

  /* Left panel: horizontal scrollable strip */
  .panel-left {
    padding: 14px;
    gap: 10px;
    max-height: none;
    overflow: hidden; /* needed so scroll container clips correctly */
  }

  .frames-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: visible;
    gap: 10px;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.15) transparent;
    grid-template-columns: unset;
    align-content: unset;
    /* snap for nicer feel on touch */
    scroll-snap-type: x mandatory;
  }

  .frames-grid::-webkit-scrollbar { height: 4px; }
  .frames-grid::-webkit-scrollbar-track { background: transparent; }
  .frames-grid::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.15);
    border-radius: 4px;
  }

  .frame-item {
    flex: 0 0 84px;
    width: 84px;
    height: 84px;
    aspect-ratio: 1;
    scroll-snap-align: start;
  }

  /* Center panel */
  .panel-center {
    padding: 14px;
    gap: 10px;
  }

  .canvas-wrapper {
    min-height: 0;
    flex: none;
    height: auto;
  }

  .canvas-container {
    max-width: 100%;
    width: 100%;
  }

  /* Controls bar: wrap on tablet */
  .controls-bar {
    flex-wrap: wrap;
    gap: 8px;
  }

  .controls-left { flex-wrap: wrap; }

  /* Right panel goes to bottom */
  .panel-right {
    max-height: none;
    overflow: visible;
    padding: 14px;
    gap: 10px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .site-header { height: 50px; }

  .logo-text { font-size: 16px; }
  .logo-icon svg { width: 30px; height: 30px; }
  .badge-new { display: none; }

  .app-main {
    height: auto;
    overflow: visible;
  }

  .app-container {
    padding: 8px;
    gap: 8px;
  }

  /* Left panel compact */
  .panel-left {
    padding: 10px;
    gap: 8px;
  }

  .panel-header h2 { font-size: 13px; }

  .frames-grid {
    gap: 8px;
    padding-bottom: 4px;
  }

  .frame-item {
    flex: 0 0 68px;
    width: 68px;
    height: 68px;
  }

  .frame-item-label { font-size: 9px; }

  /* Center panel */
  .panel-center {
    padding: 10px;
    gap: 8px;
  }

  .canvas-container {
    max-width: 100%;
    width: 100%;
    border-radius: var(--radius-md);
  }

  /* Simplified controls on mobile */
  .controls-bar {
    padding: 8px 10px;
    flex-wrap: wrap;
    gap: 6px;
  }

  .controls-left {
    flex-wrap: wrap;
    gap: 5px;
  }

  .controls-right {
    width: 100%;
    justify-content: flex-start;
    gap: 6px;
  }

  .zoom-slider { width: calc(100% - 80px); }

  .btn-secondary {
    padding: 7px 10px;
    font-size: 12px;
  }

  .btn-icon-only {
    padding: 6px;
  }

  .btn-download {
    padding: 7px 12px;
    font-size: 12px;
  }

  /* Right panel */
  .panel-right {
    padding: 10px;
    gap: 8px;
  }

  .info-card-header {
    padding: 9px 12px;
    font-size: 12px;
  }

  .info-card-body { padding: 12px; }

  .step-item { margin-bottom: 10px; }
  .step-item p { font-size: 12px; }

  .share-content-box { padding: 10px; }
  .share-text { font-size: 12px; }

  .selected-frame-info { padding: 12px; }

  /* No-image placeholder smaller on mobile */
  .no-image-placeholder svg { width: 40px; height: 40px; }
  .no-image-placeholder p { font-size: 13px; }
  .no-image-placeholder .btn { font-size: 13px; padding: 8px 14px; }
}

/* Extra small mobile */
@media (max-width: 400px) {
  .frame-item {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
  }

  .frame-item-label { font-size: 8px; }

  .controls-bar { padding: 7px 8px; }

  .zoom-slider { width: 70px; }
}

