/* style/resources-hm888-login-tutorial.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --login-button-color: #EA7C07;
  --dark-background: #000000;
  --light-text: #ffffff;
  --dark-text: #333333;
  --card-background-light: rgba(255, 255, 255, 0.1);
  --card-background-dark: rgba(0, 0, 0, 0.3);
}

/* Base styles for the page content */
.page-resources-hm888-login-tutorial {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--light-text); /* Default text color for dark body background */
  background-color: var(--dark-background); /* Body background is #000000 */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-hm888-login-tutorial__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-resources-hm888-login-tutorial__main-title,
.page-resources-hm888-login-tutorial__section-title {
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5em;
  line-height: 1.2;
}

.page-resources-hm888-login-tutorial__section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--light-text);
  font-size: 1.1em;
}

/* Background color handling for sections */
.page-resources-hm888-login-tutorial__dark-bg {
  background-color: var(--dark-background);
  color: var(--light-text);
}

.page-resources-hm888-login-tutorial__light-bg {
  background-color: #1a1a1a; /* Slightly lighter dark for contrast */
  color: var(--light-text);
}

/* Hero Section */
.page-resources-hm888-login-tutorial__hero-section {
  display: flex;
  align-items: center;
  min-height: 70vh;
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(38, 169, 224, 0.8), rgba(0, 0, 0, 0.8)), url('[GALLERY:bg:1920x1080:abstract,geometric,blue_dark_gradient]') center/cover no-repeat;
}

.page-resources-hm888-login-tutorial__hero-section .page-resources-hm888-login-tutorial__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-resources-hm888-login-tutorial__hero-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-resources-hm888-login-tutorial__main-title {
  font-size: 3.2em;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-resources-hm888-login-tutorial__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.page-resources-hm888-login-tutorial__hero-image-wrapper {
  flex: 1;
  min-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-resources-hm888-login-tutorial__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.page-resources-hm888-login-tutorial__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 30px;
}

.page-resources-hm888-login-tutorial__cta-buttons--centered {
  justify-content: center;
}

.page-resources-hm888-login-tutorial__btn-primary,
.page-resources-hm888-login-tutorial__btn-secondary,
.page-resources-hm888-login-tutorial__btn-small {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.page-resources-hm888-login-tutorial__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-hm888-login-tutorial__btn-primary:hover {
  background-color: #1e87b7; /* Darken primary color */
  border-color: #1e87b7;
}

.page-resources-hm888-login-tutorial__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-hm888-login-tutorial__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-resources-hm888-login-tutorial__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: var(--login-button-color);
  color: var(--secondary-color);
  border: 2px solid var(--login-button-color);
}

.page-resources-hm888-login-tutorial__btn-small:hover {
  background-color: #c06306; /* Darken login button color */
  border-color: #c06306;
}

/* Video Section */
.page-resources-hm888-login-tutorial__video-section {
  padding: 80px 0;
  text-align: center;
}