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

body {
  background: #0a0a0a;
  color: #f0f0f0;
  font-family: sans-serif;
  min-height: 100vh;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  border-bottom: 1px solid #1e1e1e;
  text-align: center;
}

nav p {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #666;
}

header {
  text-align: center;
  padding: 20px 32px;
}

header h1 {
  font-size: 80px;
  letter-spacing: 4px;
  line-height: 1;
  color: #f0f0f0;
}

header p {
  margin-top: 16px;
  font-size: 16px;
  letter-spacing: 1px;
  color: #666;
}

.red {
  color: #e8292b;
  text-shadow: 0 0 20px rgba(232, 41, 43, 0.8), 0 0 40px rgba(232, 41, 43, 0.4);
}

.req-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.req-card {
  background: #111;
  border-left: 3px solid #e8292b;
  padding: 20px 24px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    inset 0 -1px 0 rgba(0,0,0,0.6),
    4px 4px 0px #000,
    0 0 20px rgba(232, 41, 43, 0.08);
  position: relative;
  border-top: 1px solid #1e1e1e;
  border-right: 1px solid #1a1a1a;
  border-bottom: 1px solid #0d0d0d;
}

.req-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, #e8292b, transparent);
}

.req-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f0f0f0;
  margin-bottom: 8px;
}

.req-card p {
  font-size: 13px;
  color: #666;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

#requirements {
  text-align: center;
  padding: 20px;
  margin-top: 1px;
}

#requirements h2 {
  color: #f0f0f0;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 28px;
  margin-bottom: 24px;
  border-bottom: 2px solid #e8292b;
  padding-bottom: 8px;
  display: inline-block;
}

#contacts {
  text-align: center;
  padding: 32px;
}

.contact-cards {
  flex-direction: column;
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
  height: 120px;
  margin-top: 24px;
}

.contact-link {
  flex: 1;
  width: 280px;
  max-width: 100%;
  height: 100px;
  max-height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #1e1e1e;
  border-left: 3px solid #e8292b;
  background: #111;
  color: #f0f0f0;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 11px;
}

.contact-link img {
  width: 20px;
  height: 20px;
}

#foot {
  text-align: center;
  color: grey;
}

hr {
  border: none;
  border-top: 2px solid #e8292b;
}

#vid {
  text-align: center;
  padding: 32px;
}

#vid h2 {
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 28px;
  margin-bottom: 24px;
  border-bottom: 2px solid #e8292b;
  padding-bottom: 8px;
  display: inline-block;
}

#vid video {
  width: 100%;
  max-width: 600px;
  border-left: 3px solid #e8292b;
  border-top: 1px solid #1e1e1e;
  border-right: 1px solid #1a1a1a;
  border-bottom: 1px solid #0d0d0d;
  background: #000;
  display: block;
  margin: 0 auto;
}