/* style/blog-go888-login-guide.css */

/* Variables from custom palette */
:root {
  --go888-primary-color: #11A84E;
  --go888-secondary-color: #22C768;
  --go888-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --go888-card-bg: #11271B;
  --go888-background: #08160F;
  --go888-text-main: #F2FFF6;
  --go888-text-secondary: #A7D9B8;
  --go888-border-color: #2E7A4E;
  --go888-glow-color: #57E38D;
  --go888-gold-color: #F2C14E;
  --go888-divider-color: #1E3A2A;
  --go888-deep-green: #0A4B2C;
}

.page-blog-go888-login-guide {
  font-family: 'Arial', sans-serif;
  color: var(--go888-text-main); /* Ensure light text on dark body background */
  background-color: var(--go888-background); /* Main content background */
  line-height: 1.6;
}

.page-blog-go888-login-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-go888-login-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--go888-deep-green);
  overflow: hidden;
}

.page-blog-go888-login-guide__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
}

.page-blog-go888-login-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: none; /* Explicitly ensure no filter */
}

.page-blog-go888-login-guide__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  box-sizing: border-box;
}

.page-blog-go888-login-guide__main-title {
  color: var(--go888-gold-color);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-go888-login-guide__hero-description {
  color: var(--go888-text-main);
  font-size: 1.15rem;
  margin-bottom: 30px;
}

.page-blog-go888-login-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}