@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=EB+Garamond:ital,wght@0,400;0,600;1,400&display=swap");
:root {
  --satanic-red: #dc143c;
  --deep-red: #8b0000;
  --gold: #d4af37;
  --dark-bg: #0a0a0a;
  --card-bg: #1a1a1a;
  --text-primary: #e8e8e8;
  --text-secondary: #b8b8b8;
  --border-color: #333;
}

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

body {
  font-family: "EB Garamond", serif;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0a0a 100%);
  color: var(--text-primary);
  min-height: 100vh;
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cinzel", serif;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

header {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.8) 100%);
  border-bottom: 2px solid var(--satanic-red);
  padding: 2rem 0;
  box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
}
header h1 {
  color: var(--gold);
  text-align: center;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  position: relative;
}
header h1::before, header h1::after {
  content: "⛧";
  position: relative;
  color: var(--satanic-red);
  margin: 0 1.5rem;
  font-size: 1.8rem;
  display: inline-block;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.7;
    text-shadow: 0 0 10px var(--satanic-red);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 25px var(--satanic-red);
  }
}
.hero-section {
  background: linear-gradient(135deg, var(--card-bg) 0%, #2a1a1a 100%);
  border: 1px solid var(--satanic-red);
  border-radius: 8px;
  padding: 4rem 3rem;
  margin: 3rem 0;
  box-shadow: 0 8px 32px rgba(220, 20, 60, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}
.hero-section h2 {
  color: var(--satanic-red);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(220, 20, 60, 0.5);
}
.hero-section p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 800px;
}

.content-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--satanic-red);
  border-radius: 6px;
  padding: 2.5rem;
  margin: 2rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.content-card:hover {
  border-left-color: var(--gold);
  box-shadow: 0 8px 24px rgba(220, 20, 60, 0.2);
  transform: translateX(5px);
}
.content-card h2, .content-card h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}
.content-card p {
  line-height: 1.8;
  font-size: 1.15rem;
  color: var(--text-secondary);
}
.content-card a {
  color: var(--satanic-red);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.content-card a:hover {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.principle-card {
  background: linear-gradient(135deg, var(--card-bg) 0%, #1a1010 100%);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
}
.principle-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--satanic-red), var(--gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(220, 20, 60, 0.3);
  border-color: var(--satanic-red);
}
.principle-card:hover::before {
  opacity: 1;
}
.principle-card h3 {
  color: var(--satanic-red);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.principle-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

footer {
  background: var(--card-bg);
  border-top: 2px solid var(--satanic-red);
  padding: 2rem 0;
  margin-top: 5rem;
  text-align: center;
}
footer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.text-satanic-red {
  color: var(--satanic-red);
}

.text-gold {
  color: var(--gold);
}

@media (max-width: 768px) {
  header h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  header h1::before, header h1::after {
    font-size: 1.4rem;
    margin: 0 0.8rem;
  }
  .hero-section {
    padding: 2.5rem 1.5rem;
  }
  .hero-section h2 {
    font-size: 2rem;
  }
  .hero-section p {
    font-size: 1.15rem;
  }
  .principles-grid {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=main.css.map */