/* style/blog-kim88-new-user-bonus.css */

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

/* Base styles for the page */
.page-blog-kim88-new-user-bonus {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--kim88-text-main); /* Default text color for the page, suitable for dark background */
  background-color: var(--kim88-background); /* Overall page background */
}

.page-blog-kim88-new-user-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-kim88-new-user-bonus__section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-kim88-new-user-bonus__dark-section {
  background-color: var(--kim88-background);
  color: var(--kim88-text-main);
}

.page-blog-kim88-new-user-bonus__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-kim88-new-user-bonus__section-title {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--kim88-gold);
  line-height: 1.2;
}

.page-blog-kim88-new-user-bonus__text-block {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--kim88-text-secondary);
}

/* Hero Section */
.page-blog-kim88-new-user-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
}

.page-blog-kim88-new-user-bonus__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.6);
  min-height: 400px; /* Ensure minimum height */
}

.page-blog-kim88-new-user-bonus__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px; /* Ensure content pushes image down */
}

.page-blog-kim88-new-user-bonus__main-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem); /* Responsive font size */
  font-weight: 800;
  color: var(--kim88-gold);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-kim88-new-user-bonus__description {
  font-size: 1.3em;
  color: var(--kim88-text-main);
  margin-bottom: 40px;
  max-width: 700px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-blog-kim88-new-user-bonus__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  box-sizing: border-box;
}

.page-blog-kim88-new-user-bonus__btn-primary {
  background: var(--kim88-button-gradient);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-kim88-new-user-bonus__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-kim88-new-user-bonus__btn-secondary {
  background-color: transparent;
  color: var(--kim88-text-main);
  border: 2px solid var(--kim88-border);
  margin-left: 20px;
}

.page-blog-kim88-new-user-bonus__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Benefits Section */
.page-blog-kim88-new-user-bonus__benefits-section .page-blog-kim88-new-user-bonus__text-block {
  color: var(--kim88-text-secondary);
}

.page-blog-kim88-new-user-bonus__benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-kim88-new-user-bonus__card {
  background-color: var(--kim88-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--kim88-text-main);
  border: 1px solid var(--kim88-border);
  height: 100%;
}

.page-blog-kim88-new-user-bonus__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-blog-kim88-new-user-bonus__card-title {
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--kim88-gold);
  text-align: center;
}

.page-blog-kim88-new-user-bonus__card-text {
  font-size: 1em;
  color: var(--kim88-text-secondary);
  line-height: 1.7;
  text-align: center;
}

/* Registration Guide Section */
.page-blog-kim88-new-user-bonus__registration-guide-section .page-blog-kim88-new-user-bonus__section-title,
.page-blog-kim88-new-user-bonus__registration-guide-section .page-blog-kim88-new-user-bonus__text-block {
  color: #333333;
}

.page-blog-kim88-new-user-bonus__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}