/* ============================================================================
   GLOBAL RESETS & BASE STYLES
   ============================================================================ */

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #FFFFFF;
}

ul {
  list-style-type: disc;
}

/* ============================================================================
   NAVIGATION
   ============================================================================ */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 2rem;
  background-color: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid #5a0000;
  backdrop-filter: blur(10px);
  gap: 1rem;
  flex-wrap: wrap;
}

.site-nav__brand {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #c0392b;
  text-decoration: none;
  text-shadow: 0 0 14px rgba(192, 57, 43, 0.5);
  transition: text-shadow 0.25s ease;
}

.site-nav__brand:hover {
  text-shadow: 0 0 22px rgba(192, 57, 43, 0.9);
}

.site-nav__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-nav__links a {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #aaaaaa;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.site-nav__links a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(192, 57, 43, 0.75);
}

/* Nav Dropdown Override - This is used to make the dropdown buttons fit visually with the rest of the navbar*/
.site-nav .DropDown_Main {
  position: relative;
  display: inline-block;
}

.site-nav .DropDown_Content {
  background-color: rgba(0, 0, 0, 0.80);
  border: 1px solid #5a0000;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7), 0 0 12px rgba(139, 0, 0, 0.2);
  min-width: 11rem;
  backdrop-filter: blur(10px);
}

.site-nav .DropDown_Content a {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #eeeeee;
  padding: 0.6rem 1rem;
  display: block;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, text-shadow 0.2s ease;
}

.site-nav .DropDown_Content a:hover {
  color: #ffffff;
  background-color: rgba(139, 0, 0, 0.25);
  text-shadow: 0 0 8px rgba(192, 57, 43, 0.75);
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero-section {
  position: relative;
  width: 100%;
  padding: 5.5rem 2rem 4.5rem;
  text-align: center;
  overflow: hidden;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, #6b0000, #c0392b, #6b0000, transparent);
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 0.25em;
  line-height: 1;
  margin: 0 0 0.55rem;
  color: #ffffff;
  text-shadow:
    0 0 28px rgba(192, 57, 43, 0.8),
    0 0 65px rgba(192, 57, 43, 0.35),
    0 3px 8px rgba(0, 0, 0, 1);
}

.hero-subtitle {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.95rem, 2.8vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.45em;
  color: #c0392b;
  margin: 0;
  text-shadow: 0 0 16px rgba(192, 57, 43, 0.6);
  text-transform: uppercase;
}

.hero-ornament {
  display: block;
  text-align: center;
  margin: 1.75rem 0 0;
  color: #8b0000;
  font-size: 0.65rem;
  letter-spacing: 0.7em;
  text-shadow: 0 0 8px rgba(192, 57, 43, 0.5);
}

/* ============================================================================
   TYPOGRAPHY & CONTENT BLOCKS
   ============================================================================ */

.tagline-block {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  font-weight: 600;
  text-align: center;
  color: #e0e0e0;
  padding: 1.4rem 1.5rem;
  margin: 1.75rem 0 0.5rem;
  border-top: 1px solid #360000;
  border-bottom: 1px solid #360000;
  background: linear-gradient(to bottom, rgba(139,0,0,0.09), rgba(0,0,0,0) 70%);
  letter-spacing: 0.025em;
  line-height: 1.6;
}

.FontBody {
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #c0c0c0;
  margin: 1.25rem 0 1.5rem;
  padding: 0 0.25rem;
}

.BulletPointHeader {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  line-height: 2;
  color: white;
}

/* ============================================================================
   VIDEO
   ============================================================================ */

.video-wrapper {
  position: relative;
  margin: 1.5rem 0 2rem;
  padding: 1.25rem 0;
}

.video-wrapper::before,
.video-wrapper::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: min(92%, 580px);
  background: linear-gradient(to right, transparent, #5a0000, #c0392b, #5a0000, transparent);
}

.video-wrapper::before { top: 0; }
.video-wrapper::after  { bottom: 0; }

.video-embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
}

.video-embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #5a0000;
  box-shadow:
    0 0 28px rgba(139, 0, 0, 0.38),
    0 0 75px rgba(139, 0, 0, 0.12),
    0 6px 24px rgba(0,0,0,0.7);
}

/* ============================================================================
   ORNAMENTAL DIVIDERS & SECTION HEADINGS
   ============================================================================ */

.ornamental-divider {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1.75rem 0;
  padding: 0 0.25rem;
}

.ornamental-divider::before {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #5a0000);
}

.ornamental-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to left, transparent, #5a0000);
}

.ornamental-divider span {
  font-size: 0.62rem;
  color: #8b0000;
  letter-spacing: 0.5em;
  flex-shrink: 0;
}

.section-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.2rem, 2.8vw, 1.7rem);
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 1.75rem 0 1.5rem;
  padding-bottom: 0.8rem;
  position: relative;
  text-shadow: 0 0 12px rgba(192, 57, 43, 0.3);
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 65px;
  height: 2px;
  background: linear-gradient(to right, #8b0000, #c0392b, #8b0000);
}

/* ============================================================================
   SCREENSHOTS & FEATURES GRID
   ============================================================================ */

.Grid_ScreensAndFeatures {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  grid-template-rows: auto;
  grid-template-areas: "Screenshots1 FeaturesList Screenshots2";
  gap: 1rem;
}

.Screenshots1 { grid-area: Screenshots1; }
.FeaturesList  { grid-area: FeaturesList; }
.Screenshots2  { grid-area: Screenshots2; }

.screenshot-img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 1px solid #450000;
  box-shadow: 0 3px 14px rgba(0,0,0,0.75), 0 0 8px rgba(139,0,0,0.18);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.screenshot-img:hover {
  border-color: #c0392b;
  box-shadow: 0 5px 22px rgba(0,0,0,0.85), 0 0 20px rgba(192,57,43,0.42);
  transform: scale(1.025);
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list > li {
  padding: 0.7rem 0 0.7rem 1.6rem;
  border-left: 2px solid #360000;
  position: relative;
  transition: border-color 0.25s ease, background 0.25s ease;
  margin-bottom: 0.2rem;
}

.features-list > li::before {
  content: '\25B6';
  position: absolute;
  left: 0;
  top: 1.05rem;
  font-size: 0.48rem;
  color: #c0392b;
  transform: translateX(-50%);
  background: #000000;
  padding: 2px 2px;
  line-height: 1;
}

.features-list > li:hover {
  border-color: #c0392b;
  background: rgba(139, 0, 0, 0.055);
}

/* ============================================================================
   DOWNLOAD CTA BUTTON
   ============================================================================ */

.cta-download {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #550000 0%, #8b0000 42%, #a80000 58%, #550000 100%);
  border: 1px solid #8b0000;
  outline: 1px solid #350000;
  outline-offset: 3px;
  padding: 1.1rem 2.5rem;
  margin: 2rem 0 1rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  clip-path: polygon(1.1rem 0%, 100% 0%, calc(100% - 1.1rem) 100%, 0% 100%);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    outline-color 0.3s ease;
  box-shadow:
    0 0 28px rgba(139, 0, 0, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.cta-download::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -80%;
  width: 50%;
  height: 220%;
  background: rgba(255,255,255,0.045);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.cta-download:hover {
  background: linear-gradient(135deg, #750000 0%, #ad0000 42%, #c0392b 58%, #750000 100%);
  box-shadow:
    0 0 45px rgba(192, 57, 43, 0.55),
    inset 0 1px 0 rgba(255,255,255,0.1);
  border-color: #c0392b;
  outline-color: #5a0000;
  color: #ffffff;
}

.cta-download:hover::before {
  left: 130%;
}

.cta-download:active {
  transform: translateY(1px);
  box-shadow: 0 0 18px rgba(192, 57, 43, 0.45);
}

/* ============================================================================
   MEDIA & SOCIAL ICONS
   ============================================================================ */

.media-icons-grid {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0.5rem 0 1.5rem;
}

.media-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.6rem;
  border: 1px solid #280000;
  background: rgba(139,0,0,0.055);
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.media-icon-link:hover {
  border-color: #8b0000;
  background: rgba(139,0,0,0.15);
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(139,0,0,0.28);
}

.media-icon-link img {
  max-width: 48px;
  height: auto;
  display: block;
  transition: filter 0.22s ease;
}

.media-icon-link:hover img {
  filter: brightness(1.3) drop-shadow(0 0 5px rgba(192,57,43,0.55));
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.site-footer {
  margin-top: 2rem;
  padding: 1.25rem 0.5rem 0.5rem;
  border-top: 1px solid #180000;
}

.legal-text {
  font-size: 0.7rem;
  color: #4e4e4e;
  line-height: 1.7;
  letter-spacing: 0.03em;
  text-align: center;
}

/* ============================================================================
   BACKGROUNDS
   ============================================================================ */

.Background_EvilFace {
  background-image: url("https://www.dropbox.com/scl/fi/s5uee1z6co62t30lr3wuj/EvilFace4.png?rlkey=o0qf7x6tnsbd0zly1vhxason7&st=4kn908l9&raw=1");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: multiply;
}

/* ============================================================================
   RESPONSIVE OVERRIDES
   ============================================================================ */

@media (max-width: 768px) {
  .hero-section {
    padding: 3.5rem 1.25rem 3rem;
  }

  .FontBody {
    text-align: left;
  }

  .tagline-block {
    padding: 1rem 1rem;
    font-size: 0.95rem;
  }

  .cta-download {
    font-size: 0.88rem;
    padding: 0.95rem 1.25rem;
    letter-spacing: 0.14em;
  }

  .media-icons-grid {
    gap: 0.9rem;
  }
}
