:root {
  --primary: #1A65FA;
  --primary-600: #034AD8;
  --primary-dark: #021C51;
  --primary-light: #E5EEFF;
  --primary-hover: #0338A2;
  --accent: #FF0000;
  --accent-light: #fff0f0;
  --bg: #FFFFFF;
  --bg-white: #FFFFFF;
  --warning: #FBCB3C;
  --warning-bg: #FFF9E5;
  --warning-border: #FFE699;
  --error: #DE2D3B;
  --error-bg: #FEF1F2;
  --success: #008558;
  --success-bg: #E5FFF6;
  --text: #2B363C;
  --text-secondary: #475164;
  --text-muted: #8893AA;
  --border: #E1E4EA;
  --border-light: #F1F3F8;
  --neutral-100: #F1F3F8;
  --neutral-200: #E1E4EA;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 24px rgba(0,0,0,0.10);
  --radius: 8px;
  --radius-lg: 12px;
  --font: 'Noto Sans', sans-serif;
  --transition: 0.2s ease;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.gov-page-body {
  flex: 1;
  padding-bottom: 48px;
}

header {
  position: relative;
  z-index: 3000;
}

.gov-general-bar {
  background: var(--neutral-100);
}

.gov-general-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
}

.gov-general-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.gov-general-links li {
  display: flex;
  align-items: center;
}

.gov-general-links a,
.gov-general-links .panel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  padding: 14px 0;
  margin: 0 12px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font);
  white-space: nowrap;
  transition: opacity var(--transition);
  min-height: 44px;
  min-width: 44px;
}

.gov-general-links a:hover,
.gov-general-links .panel-btn:hover {
  opacity: 0.7;
}

.gov-general-links svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-600);
  flex-shrink: 0;
}

.gov-area-tabs {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.gov-area-tabs button {
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-secondary);
  background: none;
  border: none;
  padding: 14px 16px;
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
}

.gov-area-tabs button.selected {
  color: var(--primary-600);
  font-weight: 600;
}

.gov-area-tabs button.selected::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-600);
}

.gov-area-tabs button:hover:not(.selected) {
  color: var(--text);
}

.gov-navbar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--neutral-200);
}

.gov-navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gov-institutional-phrase {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding-top: 16px;
  letter-spacing: normal;
  line-height: 1;
}

.gov-navbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.gov-logo {
  flex-shrink: 0;
}

.gov-logo img {
  height: 48px;
  width: auto;
  position: relative;
}

.gov-nav-items {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.gov-nav-items button {
  font-family: var(--font);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text);
  background: none;
  border: none;
  padding: 14px 0;
  margin: 0 12px;
  cursor: pointer;
  transition: opacity var(--transition);
  white-space: nowrap;
}

.gov-nav-items button:hover {
  opacity: 0.7;
}

.gov-nav-items li:last-child button {
  margin-right: 0;
}

.gov-general-links li:last-child a,
.gov-general-links li:last-child .panel-btn {
  margin-right: 0;
}

.gov-nav-items svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-600);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .gov-general-bar-inner { flex-wrap: wrap; padding: 4px 16px; }
  .gov-area-tabs { order: -1; width: 100%; overflow-x: auto; }
  .gov-area-tabs button { font-size: 0.78rem; padding: 10px 12px; white-space: nowrap; }
  .gov-general-links a,
  .gov-general-links .panel-btn { font-size: 0.78rem; margin: 0 6px; }
  .gov-general-links .link-label { display: none; }
  .gov-navbar-inner { padding: 0 16px; }
  .gov-navbar-row { flex-wrap: wrap; gap: 8px; min-height: auto; padding: 8px 0; }
  .gov-nav-items { display: none; }
  .gov-logo img { height: 36px; }
  .gov-institutional-phrase { padding-top: 10px; font-size: 0.68rem; }
  .gov-breadcrumb { padding: 16px 16px 0; }
  .container { padding: 0 16px; }
}

.gov-breadcrumb {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 24px 0;
}

.gov-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex-wrap: wrap;
}

.gov-breadcrumb li {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.gov-breadcrumb a {
  color: var(--primary-600);
  text-decoration: none;
}

.gov-breadcrumb a:hover {
  text-decoration: underline;
}

.gov-breadcrumb li + li::before {
  content: '>';
  margin: 0 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-intro {
  padding: 16px 0 20px;
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
}

.page-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.legal-note {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  padding: 8px 12px;
  background: var(--primary-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--primary-600);
  display: inline-block;
}

.btn-start {
  display: block;
  margin-top: 28px;
  padding: 14px 28px;
  font-size: 0.95rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn-start.hidden {
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  position: absolute;
}

.landing-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.landing-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.landing-list {
  list-style: none;
  padding-left: 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 2;
}

.landing-list li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-600);
  margin-right: 10px;
  margin-left: -20px;
  vertical-align: middle;
}

.wizard-content {
  display: none;
}

.wizard-content.visible {
  display: block;
}

.wizard-content.fade-in {
  animation: wizardFadeIn 0.4s ease;
}

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

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

.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  list-style: none;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  position: relative;
  padding: 0 12px;
}

.progress-step .step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--neutral-200);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.78rem;
  flex-shrink: 0;
  transition: all var(--transition);
}

.progress-step.active .step-num {
  background: var(--primary);
  color: #fff;
}

.progress-step.completed .step-num {
  background: var(--primary);
  color: #fff;
}

.progress-step.completed .step-num::after {
  content: '✓';
}

.progress-step.completed .step-num .num-text { display: none; }

.progress-step.active .step-label,
.progress-step.completed .step-label {
  color: var(--text);
  font-weight: 500;
}

.progress-step .step-label {
  transition: color var(--transition);
}

.progress-connector {
  width: 36px;
  height: 2px;
  background: var(--neutral-200);
  flex-shrink: 0;
}

.progress-connector.active {
  background: var(--primary);
}

@media (max-width: 600px) {
  .progress-step .step-label { display: none; }
  .progress-step { padding: 0 4px; }
  .progress-connector { width: 20px; }
}

.step-section {
  display: none;
  padding: 32px 0 48px;
  animation: fadeIn 0.3s ease;
}

.step-section.active { display: block; }

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

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.step-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.btn-cmd {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
  width: 100%;
  justify-content: center;
}

.btn-cmd:hover { background: var(--primary-hover); }

.btn-cmd:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-cmd .spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

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

.cmd-icon {
  width: 22px;
  height: 22px;
}

.gov-alert {
  background: var(--warning-bg);
  border: 1px solid var(--warning-border);
  border-left: 4px solid var(--warning);
  padding: 16px 20px;
  border-radius: var(--radius);
  margin: 20px 0;
  display: none;
}

.gov-alert.visible { display: block; }

.gov-alert-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: #7A5C1F;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gov-alert-title .alert-icon { font-size: 1.1rem; }

.gov-alert p {
  font-size: 0.85rem;
  color: #5C4413;
  line-height: 1.5;
}

.gov-alert.info-alert {
  background: var(--primary-light);
  border-color: #BBD1FD;
  border-left-color: var(--primary-600);
}

.gov-alert.info-alert .gov-alert-title {
  color: var(--primary-dark);
}

.gov-alert.info-alert p {
  color: #002B82;
}

.form-section {
  display: none;
  margin-top: 24px;
}

.form-section.visible { display: block; }

.form-section-header {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group label .required {
  color: var(--accent);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-600);
  box-shadow: 0 0 0 3px rgba(3,74,216,0.12);
}

.form-control.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(222,45,59,0.08);
}

.form-error {
  font-size: 0.78rem;
  color: var(--error);
  margin-top: 4px;
  display: none;
}

.form-error.visible { display: block; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.asset-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 16px;
  position: relative;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}

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

.asset-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.asset-card-num {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-600);
  background: var(--primary-light);
  padding: 4px 10px;
  border-radius: 20px;
}

.btn-remove-asset {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all var(--transition);
}

.btn-remove-asset:hover {
  color: var(--accent);
  background: var(--accent-light);
}

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

@media (max-width: 600px) {
  .asset-card .form-row { grid-template-columns: 1fr; }
}

.btn-add-asset {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--primary-light);
  color: var(--primary-600);
  border: 2px dashed var(--primary-600);
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}

.btn-add-asset:hover {
  background: #D0DFFD;
}

.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--bg-white);
}

.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--primary-600);
  background: var(--primary-light);
}

.upload-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.upload-zone h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.upload-zone p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.upload-zone .upload-link {
  color: var(--primary-600);
  font-weight: 600;
  text-decoration: underline;
}

.file-list {
  margin-top: 16px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--neutral-100);
  border-radius: var(--radius);
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.file-item-name {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  overflow: hidden;
}

.file-item-name span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-item-size {
  color: var(--text-muted);
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-left: 8px;
}

.btn-remove-file {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  padding: 2px 6px;
  border-radius: 4px;
}

.btn-remove-file:hover { color: var(--accent); }

.optional-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-600);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover { background: var(--primary-hover); }

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--neutral-100);
  border-color: var(--text-muted);
}

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

.success-container {
  text-align: center;
  padding: 20px 0;
}

.success-animation {
  width: 80px;
  height: 80px;
  background: var(--success-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: scaleIn 0.4s ease;
}

.success-animation .checkmark {
  font-size: 2.2rem;
  color: var(--success);
}

@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.15); }
  to { transform: scale(1); opacity: 1; }
}

.success-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 8px;
}

.success-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.certificate {
  background: var(--bg-white);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.certificate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.cert-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.cert-header img {
  height: 40px;
  width: auto;
}

.cert-header-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.cert-header-text p {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.cert-title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cert-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-light);
}

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

.cert-label {
  color: var(--text-secondary);
  font-weight: 500;
}

.cert-value {
  color: var(--text);
  font-weight: 600;
  text-align: right;
}

.cert-atcud {
  text-align: center;
  margin: 24px 0 16px;
  padding: 16px;
  background: var(--primary-light);
  border-radius: var(--radius);
  border: 1px solid #BBD1FD;
}

.cert-atcud-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.cert-atcud-code {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-600);
  font-family: 'Courier New', monospace;
  letter-spacing: 0.05em;
}

.cert-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
  margin-top: 24px;
}

.btn-download:hover { background: var(--primary-hover); }

.gov-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.6);
  padding: 0;
  flex-shrink: 0;
}

.gov-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.gov-footer-logo {
  flex-shrink: 0;
}

.gov-footer-logo img {
  height: 40px;
  width: auto;
}

.gov-footer-text {
  font-size: 0.78rem;
  line-height: 1.6;
}

.gov-footer-text strong {
  color: #fff;
  font-weight: 600;
}

.gov-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 12px 24px;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 600px) {
  .gov-footer-inner { flex-direction: column; text-align: center; padding: 24px 16px; }
}

.validation-alert {
  background: var(--error-bg);
  border: 1px solid #F9B4BA;
  border-left: 4px solid var(--error);
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--error);
  display: none;
}

.validation-alert.visible { display: block; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

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

@media print {
  body { background: #fff; }
  .gov-general-bar, .gov-navbar, .progress-bar, .gov-footer,
  .gov-breadcrumb, .step-nav, .btn-download, .page-intro,
  .btn-start,
  .success-container > *:not(.certificate),
  .step-section:not(.active) { display: none !important; }

  .wizard-content { display: block !important; }

  .step-section.active { padding: 0; }

  .certificate {
    border: 1px solid #000;
    box-shadow: none;
    page-break-inside: avoid;
    max-width: 100%;
  }

  .certificate::before { background: #000; }

  .cert-atcud-code { color: #000; }
}
