:root {
  --primary-color: #26A9E0;
  --primary-color-dark: #208ebf; /* Darkened version of primary */
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f9f9f9;
  --border-color: #e0e0e0;
  --login-color: #EA7C07; /* Custom color for login */
  --login-color-dark: #d46e06; /* Darkened version of login color */
}

.page-resources-777win-game-tips-tricks {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark); /* Default text color for light body background */
  background-color: var(--secondary-color); /* Assuming body background is light */
}

/* Hero Section */
.page-resources-777win-game-tips-tricks__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background: linear-gradient(135deg, var(--primary-color) 0%, #a9d9f0 100%); /* Lighter gradient for hero */
  color: var(--text-light);
  overflow: hidden; /* Ensure no overflow from images */
}

.page-resources-777win-game-tips-tricks__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-resources-777win-game-tips-tricks__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-777win-game-tips-tricks__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-resources-777win-game-tips-tricks__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-resources-777win-game-tips-tricks__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-777win-game-tips-tricks__intro-description {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--text-light);
}

.page-resources-777win-game-tips-tricks__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--login-color); /* Use custom login color for primary CTA */
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-resources-777win-game-tips-tricks__cta-button:hover {
  background: var(--login-color-dark); /* Using darkened custom color */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* General Section Styles */
.page-resources-777win-game-tips-tricks__section {
  padding: 80px 20px;
  background-color: var(--secondary-color);
  color: var(--text-dark);
  text-align: center;
}

.page-resources-777win-game-tips-tricks__overview {
  background-color: var(--background-light);
}

.page-resources-777win-game-tips-tricks__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page-resources-777win-game-tips-tricks__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.3;
}

.page-resources-777win-game-tips-tricks p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layout for Game Tips */
.page-resources-777win-game-tips-tricks__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-777win-game-tips-tricks__card {
  background: var(--secondary-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%; /* Ensure cards have equal height */
}

.page-resources-777win-game-tips-tricks__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}}