@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root{
  --lc-red: #ed1b24;
  --lc-dark: #1a1a1a;
  --lc-white: #ffffff;
}

* {
  font-family: 'Montserrat', "Segoe UI", Roboto, Arial, sans-serif !important;
}

body {
  background: linear-gradient(180deg, #fff 0%, #fafafa 40%, #fff 100%);
  color: #222;
  min-height: 100vh;
}

.lc-header{
  background: var(--lc-red);
  color: var(--lc-white);
  padding: 20px 0;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.lc-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  background: white;
  padding: 6px;
}

.lc-title h1 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--lc-white);
}

.lc-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.95);
  margin-top: 4px;
  font-weight: 500;
}

.lc-card {
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1) !important;
}

.lc-info {
  background: linear-gradient(135deg, rgba(237,27,36,0.08), rgba(237,27,36,0.04));
  border-left: 5px solid var(--lc-red);
  border-radius: 8px;
}

.lc-info h5 {
  color: var(--lc-red);
  font-weight: 700;
}

textarea#output {
  background: #0f0f0f;
  color: #00ff00;
  font-family: 'Courier New', monospace;
  height: 600px;
  border-radius: 8px;
  font-size: 0.95rem;
  resize: none;
  width: 100%;
  border: 2px solid #333;
  padding: 15px;
  line-height: 1.4;
}

.btn-danger {
  background: linear-gradient(to right, #ed1b24 0%, #ed1b24 100%) !important;
  border-color: #ed1b24 !important;
  font-size: 1.1rem;
  font-weight: 600;
}

.btn-danger:hover {
  background: #d1171f !important;
  border-color: #d1171f !important;
}

.lc-footer {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
  border-top: 4px solid var(--lc-red);
}

.footer-title,
.footer-section-title,
.footer-contact strong {
  color: var(--lc-red);
}

@media (max-width: 767px) {
  .lc-logo { height: 50px; }
  .lc-title h1 { font-size: 1.6rem; }
  textarea#output { height: 400px; }
  .lc-footer { padding: 30px 0 15px; }
}
