:root {
  --primary-color: #1F3B6B;
  --secondary-color: #D4AF37;
  --accent-green: #2F5D3F;
  --accent-red: #8B1C1C;
  --accent-gray: #3B3B3B;
  --light-blue: #7FDBFF;
}

body {
  font-family: 'Lora', serif;
  background: linear-gradient(180deg, #1F3B6B, #0D1F3A);
  color: #fff;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar {
  background-color: rgba(31, 59, 107, 0.9);
}
.navbar-brand {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--secondary-color) !important;
}

/* Hero */
#hero {
  height: 100vh;
  background: url('../images/hero-bg.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}
#hero .content {
  position: relative;
  z-index: 2;
}
#hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 4rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}
#hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.btn-epic {
  background: linear-gradient(45deg, #D4AF37, #7FDBFF);
  border: none;
  font-weight: bold;
  padding: 15px 40px;
  font-size: 1.3rem;
  transition: 0.3s all;
}
.btn-epic:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--secondary-color);
}

/* Sections */
.section-title {
  color: var(--secondary-color);
  font-family: 'Cinzel', serif;
  margin-bottom: 15px;
}
.feature-card {
  background-color: rgba(31, 59, 107, 0.8);
  border-radius: 15px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px var(--secondary-color);
}

/* Footer */
footer {
  background-color: rgba(31, 59, 107, 0.9);
  padding: 40px 0;
  text-align: center;
}
footer p {
  margin: 0;
  font-size: 0.9rem;
  color: #ccc;
}
#countdown {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--secondary-color);
  display: inline-block;
  background: rgba(31, 59, 107, 0.7);
  padding: 15px 30px;
  border-radius: 15px;
  margin-bottom: 20px;
}

#countdown span {
  display: inline-block;
  min-width: 50px;
}
