/* style/resources-vin7777-game-guide.css */

:root {
  --vin7777-gold: #FFD700;
  --vin7777-dark-red: #8B0000;
  --vin7777-text-light: #ffffff;
  --vin7777-text-dark: #333333;
  --vin7777-bg-light: #f8f8f8;
  --vin7777-bg-dark: #1a1a1a; /* Assuming shared.css var(--background-dark) is a dark tone */
}

.page-resources-vin7777-game-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--vin7777-text-light); /* Default text color for dark body background */
  background-color: var(--vin7777-bg-dark);
}

.page-resources-vin7777-game-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* --- Hero Section --- */
.page-resources-vin7777-game-guide__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not covered by fixed header */
  color: var(--vin7777-text-light);
  background-color: var(--vin7777-bg-dark);
}

.page-resources-vin7777-game-guide__hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-resources-vin7777-game-guide__hero-video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.page-resources-vin7777-game-guide__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 1;
}

.page-resources-vin7777-game-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  animation: fadeIn 1.5s ease-out;
}

.page-resources-vin7777-game-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--vin7777-gold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-vin7777-game-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--vin7777-text-light);
}

/* --- General Section Styles --- */
.page-resources-vin7777-game-guide__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--vin7777-gold);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-resources-vin7777-game-guide__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: var(--vin7777-text-light);
}

.page-resources-vin7777-game-guide__light-bg {
  background-color: var(--vin7777-bg-light);
  color: var(--vin7777-text-dark);
  padding: 60px 0;
}

.page-resources-vin7777-game-guide__dark-bg {
  background-color: var(--vin7777-bg-dark);
  color: var(--vin7777-text-light);
  padding: 60px 0;
}

/* Adjust text color for dark cards on dark background */
.page-resources-vin7777-game-guide__card--dark .page-resources-vin7777-game-guide__card-title,
.page-resources-vin7777-game-guide__card--dark .page-resources-vin7777-game-guide__card-text,
.page-resources-vin7777-game-guide__list--dark li {
  color: var(--vin7777-text-light);
}

/* --- Grid Layouts --- */
.page-resources-vin7777-game-guide__grid-2-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-vin7777-game-guide__grid-3-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

/* --- Card Styles --- */
.page-resources-vin7777-game-guide__card {
  background: #ffffff; /* Default white background for cards */
  color: var(--vin7777-text-dark);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-vin7777-game-guide__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-vin7777-game-guide__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-vin7777-game-guide__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--vin7777-dark-red);
}

.page-resources-vin7777-game-guide__card-text {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Dark card variation for dark sections */
.page-resources-vin7777-game-guide__card--dark {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark background */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: var(--vin7777-text-light);
}

.page-resources-vin7777-game-guide__card--dark .page-resources-vin7777-game-guide__card-title {
  color: var(--vin7777-gold);
}

/* --- List Styles --- */
.page-resources-vin7777-game-guide__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
  width: 100%;
}

.page-resources-vin7777-game-guide__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 0.95em;
  color: var(--vin7777-text-dark);
}

.page-resources-vin7777-game-guide__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--vin7777-gold);
  font-weight: bold;
}

.page-resources-vin7777-game-guide__list--dark li {
  color: var(--vin7777-text-light);
}

.page-resources-vin7777-game-guide__list--dark li::before {
  color: var(--vin7777-gold);
}