/* style/resources-how-to-register-and-use-88clb-xyz.css */

/* Variables */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-dark: #000000; /* From body background */
  --background-light: #ffffff;
  --button-login-color: #EA7C07;
}

.page-resources-how-to-register-and-use-88clb-xyz {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: var(--text-light); /* Main text color for dark body background */
  background-color: var(--background-dark); /* Ensure main content area respects body background */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-resources-how-to-register-and-use-88clb-xyz__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-how-to-register-and-use-88clb-xyz__hero-section {
  position: relative;
  width: 100%;
  height: 600px; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--text-light);
}

.page-resources-how-to-register-and-use-88clb-xyz__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-how-to-register-and-use-88clb-xyz__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65); /* Dark overlay for text readability */
  z-index: 2;
}

.page-resources-how-to-register-and-use-88clb-xyz__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}

.page-resources-how-to-register-and-use-88clb-xyz__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-resources-how-to-register-and-use-88clb-xyz__hero-description {
  font-size: 1.25em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources-how-to-register-and-use-88clb-xyz__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* General Buttons */
.page-resources-how-to-register-and-use-88clb-xyz__btn-primary,
.page-resources-how-to-register-and-use-88clb-xyz__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  max-width: 100%; 
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-resources-how-to-register-and-use-88clb-xyz__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 10px rgba(38, 169, 224, 0.4);
}

.page-resources-how-to-register-and-use-88clb-xyz__btn-primary:hover {
  background-color: #1a8fbf; 
  border-color: #1a8fbf;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(38, 169, 224, 0.6);
}

.page-resources-how-to-register-and-use-88clb-xyz__btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

.page-resources-how-to-register-and-use-88clb-xyz__btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.4);
}

/* Sections */
.page-resources-how-to-register-and-use-88clb-xyz__introduction-section,
.page-resources-how-to-register-and-use-88clb-xyz__registration-guide,
.page-resources-how-to-register-and-use-88clb-xyz__features-section,
.page-resources-how-to-register-and-use-88clb-xyz__faq-section {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 80px 0;
}

.page-resources-how-to-register-and-use-88clb-xyz__benefits-section,
.page-resources-how-to-register-and-use-88clb-xyz__login-guide,
.page-resources-how-to-register-and-use-88clb-xyz__tips-section,
.page-resources-how-to-register-and-use-88clb-xyz__conclusion-section {
  background-color: var(--background-light);
  color: var(--text-dark);
  padding: 80px 0;
}

.page-resources-how-to-register-and-use-88clb-xyz__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary-color); 
  font-weight: bold;
}