/* style/sedie-game-history-culture.css */
.page-sedie-game-history-culture {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Deep tech blue primary background */
  line-height: 1.6;
}

.page-sedie-game-history-culture__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-sedie-game-history-culture__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-sedie-game-history-culture__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-sedie-game-history-culture__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-sedie-game-history-culture__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #F0F0F0;
}

.page-sedie-game-history-culture__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 1;
}

.page-sedie-game-history-culture__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) blur(5px);
}

.page-sedie-game-history-culture__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-sedie-game-history-culture__section:last-of-type {
  border-bottom: none;
}

.page-sedie-game-history-culture__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-sedie-game-history-culture__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-sedie-game-history-culture__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-sedie-game-history-culture__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-sedie-game-history-culture__list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.page-sedie-game-history-culture__list-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.page-sedie-game-history-culture__list-title::before {
  content: '⚡';
  margin-right: 10px;
  color: #FFD700;
  font-size: 1.2em;
}

.page-sedie-game-history-culture__list li {
  background-color: #1A2F4A;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-sedie-game-history-culture__list li:hover {
  transform: translateY(-5px);
  background-color: #2A4F7A;
}

.page-sedie-game-history-culture__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  margin-top: 30px;
}

.page-sedie-game-history-culture__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-sedie-game-history-culture__cta-button--inline {
  margin-top: 20px;
  margin-bottom: 20px;
}

.page-sedie-game-history-culture__cta-button--wide {
  display: block;
  max-width: 400px;
  margin: 40px auto;
  text-align: center;
}

.page-sedie-game-history-culture__cta-button--secondary {
  background-color: #1A2F4A;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: none;
}

.page-sedie-game-history-culture__cta-button--secondary:hover {
  background-color: #2A4F7A;
  color: #FFD700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.page-sedie-game-history-culture__cta-button--final {
  margin-bottom: 60px; /* Add space before footer */
}

.page-sedie-game-history-culture__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-sedie-game-history-culture__feature-item {
  background-color: #1A2F4A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-sedie-game-history-culture__feature-item:hover {
  transform: translateY(-8px);
  background-color: #2A4F7A;
}

.page-sedie-game-history-culture__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-sedie-game-history-culture__feature-description {
  font-size: 1em;
  color: #C0C0C0;
}

.highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-sedie-game-history-culture__hero-title {
    font-size: 2.5em;
  }

  .page-sedie-game-history-culture__hero-subtitle {
    font-size: 1.2em;
  }

  .page-sedie-game-history-culture__section-title {
    font-size: 2em;
  }

  .page-sedie-game-history-culture__text {
    font-size: 1em;
  }

  .page-sedie-game-history-culture__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-sedie-game-history-culture__feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-sedie-game-history-culture__hero-title {
    font-size: 2em;
  }

  .page-sedie-game-history-culture__hero-subtitle {
    font-size: 1em;
  }

  .page-sedie-game-history-culture__section-title {
    font-size: 1.8em;
  }

  .page-sedie-game-history-culture__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}