@charset "UTF-8";
:root {
  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #997A00;
  --black-void: #050505;
  --black-panel: #111111;
}

* {
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) var(--black-void);
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--black-void);
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(45deg, rgba(212, 175, 55, 0.03) 25%, transparent 25%, transparent 75%, rgba(212, 175, 55, 0.03) 75%, rgba(212, 175, 55, 0.03)), linear-gradient(45deg, rgba(212, 175, 55, 0.03) 25%, transparent 25%, transparent 75%, rgba(212, 175, 55, 0.03) 75%, rgba(212, 175, 55, 0.03));
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}

/* The Leyendecker Frame */
.deco-wrapper {
  position: relative;
  width: 95%;
  max-width: 800px;
  background: var(--black-panel);
  padding: 3px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.9), 0 0 20px rgba(212, 175, 55, 0.1);
}

.deco-border-outer {
  border: 2px solid var(--gold-primary);
  padding: 8px;
  position: relative;
}

.deco-border-inner {
  border: 1px solid var(--gold-dark);
  padding: 40px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 500px;
}

/* Geometric Corner Accents */
.corner {
  position: absolute;
  width: 25px;
  height: 25px;
  border: 2px solid var(--gold-primary);
  background: var(--black-panel);
  z-index: 10;
}

.tl {
  top: -4px;
  left: -4px;
  border-right: none;
  border-bottom: none;
}

.tr {
  top: -4px;
  right: -4px;
  border-left: none;
  border-bottom: none;
}

.bl {
  bottom: -4px;
  left: -4px;
  border-right: none;
  border-top: none;
}

.br {
  bottom: -4px;
  right: -4px;
  border-left: none;
  border-top: none;
}

.inner-corner {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--gold-primary);
}

.itl {
  top: 0;
  left: 0;
}

.itr {
  top: 0;
  right: 0;
}

.ibl {
  bottom: 0;
  left: 0;
}

.ibr {
  bottom: 0;
  right: 0;
}

h1, h2 {
  font-family: "Limelight", cursive;
  color: var(--gold-primary);
  font-size: 3.5rem;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.1;
}

h2 {
  font-size: 2.5rem;
}

.subtitle {
  font-family: "Limelight", cursive;
  color: var(--gold-dark);
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.subtitle::before, .subtitle::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--gold-dark);
  margin: 0 15px;
  max-width: 100px;
}

#fact-display {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0 20px;
  animation: fadeIn 1s ease-in-out;
}

.fact-date {
  font-style: italic;
  color: var(--gold-dark);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.fact-text {
  font-size: 1.8rem;
  line-height: 1.4;
  max-width: 600px;
  position: relative;
}

.fact-text::before, .fact-text::after {
  content: "✦";
  color: var(--gold-primary);
  font-size: 1rem;
  display: block;
  margin: 15px auto;
}

.fact-text ul {
  list-style: none;
  text-align: left;
}
.fact-text ul li:first-of-type {
  margin-bottom: 1rem;
}

a {
  color: var(--gold-primary);
  text-decoration: none;
}

.controls {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  justify-content: center;
}
.controls button, .controls a {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  font-family: "Limelight", cursive;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 24px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.controls button::before, .controls a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: all 0.5s ease;
}
.controls button:hover, .controls a:hover {
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}
.controls button:hover::before, .controls a:hover::before {
  left: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 2.2rem;
  }
  .fact-text {
    font-size: 1.4rem;
  }
  .deco-border-inner {
    padding: 30px 15px;
  }
  .controls {
    flex-direction: column;
    align-items: center;
  }
  button {
    width: 80%;
  }
}

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