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

body {
  background-color: #121212;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}*/
.landing {
  font-family: "Arial", sans-serif;
  line-height: 1.5;
  color: #fff;
  /*background-color: #121212;*/
}
/* Hero Section */
.hero {
  background: url("/assets/siege-bg.png") no-repeat center center/cover;
  height: 100vh;
  width: 100%;
  position: relative;
  border-radius: 15px;
}

.hero-overlay {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  font-family: "Cinzel", serif;
  margin-bottom: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 5px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 5px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta {
  padding: 10px 20px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
}

.play-now {
  background-color: #e63946;
  color: #fff;
  text-decoration: none;
}

.learn-more {
  background-color: #457b9d;
  color: #fff;
  text-decoration: none;
}

/* Features Section */
.features {
  padding: 20px;
  text-align: center;
}

.features h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.feature-cards {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  scroll-snap-type: x mandatory;
  padding: 10px;
}

.feature-card {
  background: #1d3557;
  padding: 20px;
  border-radius: 10px;
  flex: 0 0 80%;
  min-width: 200px;
  max-width: 400px;
  scroll-snap-align: center;
  color: #f1faee;
}

/* Footer */
.footer {
  background-color: #1d3557;
  width: 100%;
  text-align: center;
  padding: 10px;
}

.footer p {
  font-size: 0.9rem;
  color: #a8dadc;
}
