/* Lumiere Listmonk Email Template - Industrial Aesthetic */

/* Base Styles */
:root {
  --lum-accent: #9a86fc;
  --lum-border-color: rgba(255, 255, 255, 0.1);
  --lum-bg-deep-color: rgb(14, 12, 19);
  --industrial-black: var(--lum-bg-deep-color);
  --lum-bg-color-elevated: rgba(29, 25, 38, 0.4);
}
body {
  margin: 0;
  padding: 0;
  font-family: "Courier New", "Courier", monospace;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;

  background: var(--industrial-black);
  background-image: var(--noise-svg);
  background-repeat: repeat;
  background-size: 200px 200px;
}
body > footer {
  display: none;
}

label {
  color: rgba(255, 255, 255, 0.7);
}

/* Container */
.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 24px;
  background-color: var(--lum-bg-color-elevated) !important;
  background-image: var(--noise-svg) !important;
  background-repeat: repeat !important;
  background-size: 200px 200px !important;
  border: 1px solid var(--lum-border-color) !important;
}

.wrap {
  background: initial;
  box-shadow: none;
  border: initial;
}

/* Header */
.header {
  border-bottom: 3px solid #1a1a1a;
  padding-bottom: 24px;
  margin-bottom: 32px;
  position: relative;
}

.header::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #ff5a31;
}

.logo {
  display: flex;
  justify-content: center;
}
.logo a {
  border-bottom: none;
}

.department-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e5e5e5;
  background: #1a1a1a;
  padding: 6px 12px;
  border-left: 3px solid #ff5a31;
  margin-bottom: 16px;
}

.logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #e5e5e5;
  margin: 0;
}

/* Content */
.content {
  padding: 24px 0;
}

.spec-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8a8a8a;
  margin-bottom: 16px;
  display: block;
}

.spec-label::before {
  content: "▸ ";
  color: #ff5a31;
}

h1,
h2,
h3 {
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #e5e5e5;
  margin-top: 24px;
  margin-bottom: 16px;
  line-height: 1.1;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 16px;
}

p {
  margin: 0 0 16px 0;
  color: #8a8a8a;
}

a {
  color: #9a86fc;
  text-decoration: none;
  border-bottom: 1px solid #9a86fc;
}

a:hover {
  color: #e5e5e5;
  border-bottom-color: #e5e5e5;
}

/* Button */
.button {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--lum-accent) !important;
  color: var(--lum-accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  margin: 16px 0;
  border-radius: 2px;
}

.button:hover {
  color: #c9bdff;
  border-color: #c9bdff;
  background-color: #9a86fc33;
}

input {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--lum-border-color) !important;
  color: rgba(255, 255, 255, 0.9);
  outline: none;
  box-shadow: none !important;
}

/* Divider */
.divider {
  width: 100%;
  height: 1px;
  background: #8a8a8a;
  margin: 32px 0;
  position: relative;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #0a0a0a;
  border: 2px solid #8a8a8a;
  top: -3px;
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

/* Box */
.box {
  border: 1px solid #3a3a3a;
  padding: 24px;
  margin: 24px 0;
  background: #0a0a0a;
  position: relative;
}

.box::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #ff5a31;
  border-left: 2px solid #ff5a31;
}

.box::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #ff5a31;
  border-right: 2px solid #ff5a31;
}

/* Status Indicator */
.status {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #72e37f;
  margin: 16px 0;
}

.status::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #72e37f;
  margin-right: 8px;
}

/* Footer */
.footer {
  border-top: 3px solid #1a1a1a;
  padding-top: 24px;
  margin-top: 48px;
  font-size: 11px;
  color: #5a5a5a;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ff5a31;
}

.footer-links {
  margin: 16px 0;
}

.footer-links a {
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  margin-right: 16px;
  border-bottom: 1px solid #8a8a8a;
}

.footer-links a::before {
  content: "[";
  color: #ff5a31;
  margin-right: 4px;
}

.footer-links a::after {
  content: "]";
  color: #ff5a31;
  margin-left: 4px;
}

.coordinates {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: #5a5a5a;
  margin-top: 16px;
}

/* Unsubscribe */
.unsubscribe {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #3a3a3a;
  font-size: 10px;
  color: #5a5a5a;
}

.unsubscribe a {
  color: #8a8a8a;
  border-bottom: 1px solid #8a8a8a;
}
