.lp-auto {
  margin: 12px auto;
  width: 100%;
  max-width: 1200px;
  padding: 0;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .lp-auto {
    margin: 10px auto;
  }
}
@media (max-width: 600px) {
  .lp-auto {
    margin: 6px auto;
  }
}

main {
  padding-top: 12px;
  padding-bottom: 18px;
}

.lp-auto {
  margin-bottom: 12px;
}
.lp-auto:last-child {
  margin-bottom: 0;
}

.lp-border {
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.lp-border:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-color: rgba(232, 156, 10, 0.3);
}

.lp-border-grey {
  border-color: var(--color-border);
}

.lp-white {
  background: var(--color-bg-body);
  color: var(--color-text-primary);
}

.lp-round {
  border-radius: 6px;
}

.lp-margin-top {
  margin-top: 12px;
}

.lp-margin-bottom {
  margin-bottom: 12px;
}

.lp-container {
  padding: 18px;
}
.lp-container:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}
.lp-container h1 {
  margin: 0;
}
.lp-container p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
  word-wrap: break-word;
}
.lp-container a {
  color: #e89c0a;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}
.lp-container a:hover {
  color: #c18208;
  text-decoration: underline;
}
.lp-container a:focus-visible {
  outline: 2px solid #e89c0a;
  outline-offset: 2px;
}

h1.lp-xlarge {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin: 0;
}
@media (max-width: 600px) {
  h1.lp-xlarge {
    font-size: 20px;
  }
}

.lp-padding-16 {
  padding: 16px !important;
}

main .lp-button {
  display: block;
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 10px;
  background: var(--color-bg-secondary);
  color: var(--color-text-primary) !important;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none !important;
  font-family: inherit;
}
main .lp-button:hover {
  background: rgba(232, 156, 10, 0.05);
  border-color: #e89c0a;
  color: #e89c0a !important;
  transform: translateX(2px);
}
main .lp-button:active {
  transform: translateX(0);
}
main .lp-button:focus-visible {
  outline: 2px solid #e89c0a;
  outline-offset: 2px;
}
main .lp-button.lp-green2 {
  background: rgba(91, 168, 49, 0.1);
  border-color: #5ba831;
  color: #5ba831 !important;
}
main .lp-button.lp-green2:hover {
  background: rgba(91, 168, 49, 0.15);
  border-color: #5ba831;
  color: #5ba831 !important;
}
main .lp-button.lp-block {
  display: block;
}
main .lp-button.lp-left-align {
  text-align: left;
}

.lp-hide {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease;
}

.lp-show {
  display: block;
  max-height: 1000px;
  overflow: visible;
  transition: all 0.2s ease;
  animation: slideDown 0.3s ease ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lp-container.lp-hide {
  padding: 0;
  border-bottom: none;
  margin: 0;
  display: none;
}

.lp-container.lp-show {
  padding: 18px;
  border-bottom: none;
  margin-bottom: 0;
  display: block;
  background: rgba(91, 168, 49, 0.02);
  border-radius: 4px;
}
@media (prefers-color-scheme: dark) {
  .lp-container.lp-show {
    background: rgba(91, 168, 49, 0.05);
  }
}
html[data-theme="dark"] .lp-container.lp-show {
  background: rgba(91, 168, 49, 0.05);
}
html[data-theme="light"] .lp-container.lp-show {
  background: rgba(91, 168, 49, 0.02) !important;
}
.lp-container.lp-show p {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 1.6;
}
.lp-container.lp-show a {
  color: #e89c0a;
}
.lp-container.lp-show a:hover {
  color: #c18208;
}

@media (max-width: 768px) {
  main {
    padding-top: 10px;
    padding-bottom: 12px;
  }

  .lp-container {
    padding: 12px;
  }

  .lp-padding-16 {
    padding: 12px !important;
  }

  .lp-margin-top {
    margin-top: 10px;
  }

  .lp-margin-bottom {
    margin-bottom: 10px;
  }

  h1.lp-xlarge {
    font-size: 18px;
  }

  main .lp-button {
    padding: 6px 10px;
    font-size: 13px;
    margin-bottom: 6px;
  }

  .lp-show {
    max-height: 800px;
  }
}
@media (max-width: 600px) {
  main {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .lp-container {
    padding: 10px;
  }
  .lp-container.lp-show {
    padding: 10px;
  }

  .lp-padding-16 {
    padding: 10px !important;
  }

  .lp-auto {
    padding: 0 10px;
  }

  .lp-border {
    border-radius: 4px;
  }

  h1.lp-xlarge {
    font-size: 16px;
  }

  main .lp-button {
    padding: 3px 10px;
    font-size: 13px;
    margin-bottom: 3px;
  }

  .lp-container.lp-show {
    padding: 6px;
  }
  .lp-container.lp-show p {
    font-size: 13px;
  }

  .lp-show {
    max-height: 600px;
  }
}
