*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --hbp_vibrant-gradient-1: linear-gradient(135deg, #ff2d75 0%, #7e3bdf 50%, #00c2ff 100%);
  --hbp_vibrant-gradient-2: linear-gradient(45deg, #ff6b6b 0%, #ffd93d 50%, #6bcf7f 100%);
  --hbp_vibrant-gradient-3: linear-gradient(120deg, #a166ab 0%, #5073b8 50%, #1098ad 100%);
  --hbp_vibrant-gradient-4: linear-gradient(90deg, #ff9a9e 0%, #fad0c4 50%, #fad0c4 100%);
  --hbp_neon-pink: #ff2d75;
  --hbp_electric-purple: #7e3bdf;
  --hbp_cyan-blue: #00c2ff;
  --hbp_sunshine-yellow: #ffd93d;
  --hbp_lime-green: #6bcf7f;
  --hbp_deep-space: #0f0f1f;
  --hbp_light-space: #1a1a2f;
  --hbp_white-text: #ffffff;
  --hbp_light-text: #e6e6ff;
  --hbp_header-font: 'Vollkorn', serif;
  --hbp_body-font: 'Public Sans', sans-serif;
  --hbp_container-max: 1440px;
  --hbp_border-radius-lg: 20px;
  --hbp_border-radius-md: 12px;
  --hbp_border-radius-sm: 8px;
  --hbp_shadow-soft: 0 8px 25px rgba(0, 0, 0, 0.1);
  --hbp_shadow-medium: 0 12px 35px rgba(0, 0, 0, 0.15);
  --hbp_shadow-strong: 0 20px 50px rgba(0, 0, 0, 0.25);
  --hbp_transition-fast: 0.3s ease;
  --hbp_transition-medium: 0.5s ease;
  --hbp_transition-slow: 0.8s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--hbp_body-font);
  background-color: var(--hbp_deep-space);
  color: var(--hbp_white-text);
  line-height: 1.6;
}

.hbp_page-wrapper {
  margin: 0 auto;
  position: relative;
}

.hbp_canvas-header {
  background: var(--hbp_vibrant-gradient-1);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--hbp_shadow-medium);
}

.hbp_header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hbp_header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hbp_header-logo {
  width: 100%;
  max-width: 50px;
  height: 100%;
  max-height: 50px;
  border-radius: var(--hbp_border-radius-sm);
}

.hbp_header-title {
  font-family: var(--hbp_header-font);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--hbp_white-text);
}

.hbp_nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--hbp_white-text);
  font-size: 1.75rem;
  cursor: pointer;
  transition: var(--hbp_transition-fast);
}

.hbp_nav-toggle:hover {
  transform: rotate(180deg);
}

.hbp_header-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
}

.hbp_nav-link {
  color: var(--hbp_white-text);
  text-decoration: none;
  font-weight: 500;
  transition: var(--hbp_transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.hbp_nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--hbp_sunshine-yellow);
  transition: var(--hbp_transition-fast);
}

.hbp_nav-link:hover::after {
  width: 100%;
}

.hbp_contact-trigger {
  background: var(--hbp_vibrant-gradient-2);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--hbp_border-radius-md);
  color: var(--hbp_deep-space);
  font-weight: 600;
  cursor: pointer;
  transition: var(--hbp_transition-fast);
  box-shadow: var(--hbp_shadow-soft);
}

.hbp_contact-trigger:hover {
  transform: translateY(-3px);
  box-shadow: var(--hbp_shadow-medium);
}

.hbp_canvas-welcome {
  background: var(--hbp_vibrant-gradient-3);
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hbp_canvas-welcome::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/hbp-engine/hbp-imgs/peak-background-image-1.webp') center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

.hbp_welcome-content {
  text-align: center;
  z-index: 1;
  position: relative;
  max-width: 1010px;
}

.hbp_welcome-content h1 {
  font-family: var(--hbp_header-font);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--hbp_white-text);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  min-height: 4.5rem;
}

.hbp_welcome-content p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: var(--hbp_light-text);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  min-height: 3rem;
}

.hbp_welcome-cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hbp_welcome-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--hbp_border-radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  width: 180px;
  transition: var(--hbp_transition-medium);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.hbp_welcome-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--hbp_transition-medium);
}

.hbp_welcome-card:hover::before {
  left: 100%;
}

.hbp_welcome-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: var(--hbp_shadow-strong);
}

.hbp_welcome-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--hbp_sunshine-yellow);
  display: block;
}

.hbp_welcome-card p {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--hbp_white-text);
  min-height: 3rem;
}

.hbp_card-link {
  display: inline-block;
  color: var(--hbp_cyan-blue);
  text-decoration: none;
  font-weight: 500;
  transition: var(--hbp_transition-fast);
  position: relative;
}

.hbp_card-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--hbp_cyan-blue);
  transition: var(--hbp_transition-fast);
}

.hbp_card-link:hover::after {
  width: 100%;
}

.hbp_canvas-about {
  padding: 6rem 2rem;
  background: var(--hbp_light-space);
}

.hbp_about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hbp_about-block {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 5rem;
}

.hbp_about-block:last-child {
  margin-bottom: 0;
}

.hbp_about-story {
  flex-direction: row;
}

.hbp_about-mission {
  flex-direction: row-reverse;
}

.hbp_about-vision {
  flex-direction: row;
}

.hbp_about-image {
  flex: 1;
  border-radius: var(--hbp_border-radius-lg);
  overflow: hidden;
  box-shadow: var(--hbp_shadow-strong);
  position: relative;
}

.hbp_about-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--hbp_vibrant-gradient-1);
  opacity: 0.3;
  mix-blend-mode: overlay;
}

.hbp_about-image img {
  width: 100%;
  max-width: 400px;
  height: 100%;
  max-height: 400px;
  display: block;
  transition: var(--hbp_transition-slow);
}

.hbp_about-image:hover img {
  transform: scale(1.1);
}

.hbp_about-text {
  flex: 1;
}

.hbp_about-text h2 {
  font-family: var(--hbp_header-font);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--hbp_white-text);
  background: var(--hbp_vibrant-gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  min-height: 3.5rem;
}

.hbp_about-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--hbp_light-text);
  line-height: 1.8;
  min-height: 6rem;
}

.hbp_about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hbp_about-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  border-radius: var(--hbp_border-radius-md);
  transition: var(--hbp_transition-fast);
}

.hbp_about-feature:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.hbp_about-feature i {
  color: var(--hbp_lime-green);
  font-size: 1.25rem;
}

.hbp_about-feature span {
  font-weight: 500;
  color: var(--hbp_white-text);
}

.hbp_about-cta {
  display: inline-block;
  background: var(--hbp_vibrant-gradient-1);
  color: var(--hbp_white-text);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: var(--hbp_border-radius-md);
  font-weight: 600;
  transition: var(--hbp_transition-medium);
  box-shadow: var(--hbp_shadow-soft);
  position: relative;
  overflow: hidden;
}

.hbp_about-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: var(--hbp_transition-medium);
}

.hbp_about-cta:hover::before {
  left: 100%;
}

.hbp_about-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--hbp_shadow-medium);
}

.hbp_canvas-features {
  background: var(--hbp_vibrant-gradient-4);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.hbp_canvas-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/hbp-engine/hbp-imgs/peak-background-image-2.webp') center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.hbp_features-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 1250px;
  margin: 0 auto;
}

.hbp_features-content h2 {
  font-family: var(--hbp_header-font);
  font-size: 3rem;
  margin-bottom: 3rem;
  color: var(--hbp_deep-space);
  min-height: 4rem;
}

.hbp_features-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hbp_feature-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--hbp_border-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  width: 220px;
  transition: var(--hbp_transition-medium);
  box-shadow: var(--hbp_shadow-soft);
  position: relative;
  overflow: hidden;
}

.hbp_feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--hbp_vibrant-gradient-1);
}

.hbp_feature-item:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: var(--hbp_shadow-strong);
}

.hbp_feature-item i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: var(--hbp_vibrant-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hbp_feature-item h3 {
  font-family: var(--hbp_header-font);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--hbp_deep-space);
  min-height: 79px;
}

.hbp_feature-item p {
  color: #666;
  line-height: 1.6;
  min-height: 4.5rem;
}

.hbp_canvas-games {
  padding: 6rem 2rem;
  background: var(--hbp_deep-space);
}

.hbp_games-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hbp_games-container h2 {
  font-family: var(--hbp_header-font);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--hbp_white-text);
  background: var(--hbp_vibrant-gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  min-height: 4rem;
}

.hbp_games-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hbp_game-card {
  background: var(--hbp_light-space);
  border-radius: var(--hbp_border-radius-lg);
  overflow: hidden;
  width: 350px;
  height: 100%;
  min-height: 340px;
  transition: var(--hbp_transition-medium);
  position: relative;
  box-shadow: var(--hbp_shadow-medium);
}

.hbp_game-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: var(--hbp_shadow-strong);
}

.hbp_game-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--hbp_vibrant-gradient-2);
  color: var(--hbp_deep-space);
  padding: 0.5rem 1rem;
  border-radius: var(--hbp_border-radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 2;
}

.hbp_game-card img {
  width: 100%;
  max-width: 426px;
  height: 100%;
  max-height: 200px;
  display: block;
  transition: var(--hbp_transition-medium);
}

.hbp_game-card:hover img {
  transform: scale(1.1);
}

.hbp_game-content {
  padding: 1.5rem;
  position: relative;
}

.hbp_game-content h3 {
  font-family: var(--hbp_header-font);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--hbp_white-text);
  min-height: 2.5rem;
}

.hbp_game-link {
  display: inline-block;
  background: var(--hbp_vibrant-gradient-1);
  color: var(--hbp_white-text);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--hbp_border-radius-md);
  font-weight: 600;
  transition: var(--hbp_transition-fast);
}

.hbp_game-link:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(126, 59, 223, 0.4);
}

.hbp_game-card i {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--hbp_cyan-blue);
  opacity: 0.7;
  transition: var(--hbp_transition-fast);
}

.hbp_game-card:hover i {
  opacity: 1;
  transform: scale(1.2);
}

.hbp_canvas-premium {
  background: var(--hbp_vibrant-gradient-1);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.hbp_canvas-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/hbp-engine/hbp-imgs/peak-background-image-3.webp') center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.hbp_premium-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.hbp_premium-content h2 {
  font-family: var(--hbp_header-font);
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--hbp_white-text);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  min-height: 4rem;
}

.hbp_premium-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--hbp_light-text);
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  min-height: 5.5rem;
}

.hbp_premium-cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hbp_premium-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--hbp_border-radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  width: 180px;
  transition: var(--hbp_transition-medium);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.hbp_premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--hbp_vibrant-gradient-2);
  opacity: 0;
  transition: var(--hbp_transition-medium);
  z-index: -1;
}

.hbp_premium-card:hover::before {
  opacity: 0.3;
}

.hbp_premium-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: var(--hbp_shadow-strong);
}

.hbp_premium-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--hbp_sunshine-yellow);
  display: block;
}

.hbp_premium-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--hbp_white-text);
  min-height: 2rem;
}

.hbp_premium-card p {
  font-size: 0.9rem;
  color: var(--hbp_light-text);
  margin-bottom: 0;
  min-height: 3.5rem;
}

.hbp_premium-cta {
  display: inline-block;
  background: var(--hbp_vibrant-gradient-2);
  color: var(--hbp_deep-space);
  text-decoration: none;
  padding: 1.25rem 2.5rem;
  border-radius: var(--hbp_border-radius-md);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--hbp_transition-medium);
  box-shadow: var(--hbp_shadow-medium);
  position: relative;
  overflow: hidden;
}

.hbp_premium-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: var(--hbp_transition-medium);
}

.hbp_premium-cta:hover::before {
  left: 100%;
}

.hbp_premium-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--hbp_shadow-strong);
}

.hbp_canvas-faq {
  padding: 6rem 2rem;
  background: var(--hbp_light-space);
  position: relative;
  overflow: hidden;
}

.hbp_canvas-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/hbp-engine/hbp-imgs/peak-background-image-4.webp') center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.hbp_faq-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hbp_faq-container h2 {
  font-family: var(--hbp_header-font);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--hbp_white-text);
  background: var(--hbp_vibrant-gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  min-height: 4rem;
}

.hbp_faq-grid {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.hbp_faq-category {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--hbp_border-radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hbp_faq-category h3 {
  font-family: var(--hbp_header-font);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--hbp_cyan-blue);
  text-align: center;
  min-height: 2.5rem;
}

.hbp_faq-item {
  margin-bottom: 1rem;
  border-radius: var(--hbp_border-radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  transition: var(--hbp_transition-fast);
}

.hbp_faq-item:hover {
  background: rgba(255, 255, 255, 0.07);
}

.hbp_faq-question {
  padding: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--hbp_transition-fast);
}

.hbp_faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hbp_faq-question span {
  font-weight: 500;
  color: var(--hbp_white-text);
  flex: 1;
  min-height: 1.5rem;
}

.hbp_faq-question i {
  color: var(--hbp_cyan-blue);
  transition: var(--hbp_transition-fast);
  font-size: 1.25rem;
}

.hbp_faq-item.active .hbp_faq-question i {
  transform: rotate(45deg);
}

.hbp_faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--hbp_transition-medium);
  background: rgba(0, 0, 0, 0.2);
}

.hbp_faq-item.active .hbp_faq-answer {
  max-height: 300px;
}

.hbp_faq-answer p {
  padding: 1.25rem;
  color: var(--hbp_light-text);
  line-height: 1.6;
  margin: 0;
  min-height: 3rem;
}

.hbp_faq-contact {
  display: block;
  margin: 0 auto;
  background: var(--hbp_vibrant-gradient-1);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--hbp_border-radius-md);
  color: var(--hbp_white-text);
  font-weight: 600;
  cursor: pointer;
  transition: var(--hbp_transition-fast);
  box-shadow: var(--hbp_shadow-soft);
}

.hbp_faq-contact:hover {
  transform: translateY(-3px);
  box-shadow: var(--hbp_shadow-medium);
}

.hbp_canvas-reviews {
  padding: 6rem 2rem;
  background: var(--hbp_deep-space);
}

.hbp_reviews-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hbp_reviews-container h2 {
  font-family: var(--hbp_header-font);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--hbp_white-text);
  background: var(--hbp_vibrant-gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  min-height: 4rem;
}

.hbp_reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.hbp_review-card {
  background: var(--hbp_light-space);
  border-radius: var(--hbp_border-radius-lg);
  padding: 2rem;
  width: calc(50% - 1rem);
  transition: var(--hbp_transition-medium);
  box-shadow: var(--hbp_shadow-soft);
  position: relative;
  overflow: hidden;
}

.hbp_review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--hbp_vibrant-gradient-1);
}

.hbp_review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hbp_shadow-strong);
}

.hbp_review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.hbp_review-avatar {
  width: 100%;
  max-width: 60px;
  height: 100%;
  max-height: 60px;
  border-radius: 50%;
  border: 3px solid var(--hbp_cyan-blue);
}

.hbp_review-meta {
  flex: 1;
}

.hbp_review-name {
  display: block;
  font-weight: 600;
  color: var(--hbp_white-text);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  min-height: 1.5rem;
}

.hbp_review-location {
  display: block;
  color: var(--hbp_cyan-blue);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  min-height: 1.2rem;
}

.hbp_review-rating {
  display: flex;
  gap: 0.25rem;
}

.hbp_review-rating i {
  color: var(--hbp_sunshine-yellow);
  font-size: 0.9rem;
}

.hbp_review-icon {
  font-size: 2rem;
  color: var(--hbp_electric-purple);
  opacity: 0.5;
}

.hbp_review-text {
  font-style: italic;
  color: var(--hbp_light-text);
  line-height: 1.6;
  margin-bottom: 1rem;
  min-height: 4rem;
}

.hbp_review-date {
  color: var(--hbp_cyan-blue);
  font-size: 0.875rem;
  font-weight: 500;
  min-height: 1.2rem;
}

.hbp_canvas-responsibility {
  padding: 6rem 2rem;
  background: var(--hbp_vibrant-gradient-3);
}

.hbp_responsibility-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hbp_responsibility-container h2 {
  font-family: var(--hbp_header-font);
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--hbp_white-text);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  min-height: 4rem;
}

.hbp_responsibility-content {
  text-align: left;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--hbp_border-radius-lg);
  padding: 2.5rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hbp_responsibility-content p {
  margin-bottom: 1.5rem;
  color: var(--hbp_light-text);
  line-height: 1.7;
  min-height: 3.5rem;
}

.hbp_responsibility-content a {
  color: var(--hbp_sunshine-yellow);
  text-decoration: none;
  transition: var(--hbp_transition-fast);
  border-bottom: 1px solid transparent;
}

.hbp_responsibility-content a:hover {
  border-bottom-color: var(--hbp_sunshine-yellow);
}

.hbp_responsibility-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hbp_partner-link {
  display: inline-block;
  transition: var(--hbp_transition-fast);
}

.hbp_partner-link:hover {
  transform: translateY(-5px);
}

.hbp_partner-link img {
  border-radius: var(--hbp_border-radius-sm);
  filter: brightness(1) invert(0);
  transition: var(--hbp_transition-fast);
}

.hbp_partner-link:hover img {
  filter: brightness(0.8) invert(0) drop-shadow(0 5px 15px rgba(255, 255, 255, 0.3));
}

.hbp_age-restriction {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hbp_age-restriction img {
  border-radius: 50%;
  border: 2px solid var(--hbp_white-text);
}

.hbp_canvas-footer {
  background: var(--hbp_vibrant-gradient-1);
  padding: 3rem 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.hbp_canvas-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/hbp-engine/hbp-imgs/peak-background-image-5.webp') center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.hbp_footer-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hbp_footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hbp_footer-brand {
  display: flex;
  align-items: center;
}

.hbp_footer-title {
  font-family: var(--hbp_header-font);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--hbp_white-text);
}

.hbp_footer-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hbp_footer-link {
  color: var(--hbp_light-text);
  text-decoration: none;
  transition: var(--hbp_transition-fast);
  position: relative;
}

.hbp_footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--hbp_sunshine-yellow);
  transition: var(--hbp_transition-fast);
}

.hbp_footer-link:hover {
  color: var(--hbp_white-text);
}

.hbp_footer-link:hover::after {
  width: 100%;
}

.hbp_footer-contact {
  background: var(--hbp_vibrant-gradient-2);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--hbp_border-radius-md);
  color: var(--hbp_deep-space);
  font-weight: 600;
  cursor: pointer;
  transition: var(--hbp_transition-fast);
}

.hbp_footer-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hbp_footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.hbp_copyright {
  color: var(--hbp_light-text);
  font-size: 0.9rem;
}

.hbp_footer-social {
  display: flex;
  gap: 1rem;
}

.hbp_social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--hbp_white-text);
  text-decoration: none;
  transition: var(--hbp_transition-fast);
}

.hbp_social-link:hover {
  background: var(--hbp_vibrant-gradient-2);
  color: var(--hbp_deep-space);
  transform: translateY(-3px);
}

.hbp_modal-overlay:not(.hbp_age-modal) {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1rem;
  overflow-y: auto;
}

.hbp_modal-overlay:not(.hbp_age-modal).active {
  display: flex;
}

.hbp_modal-content:not(.hbp_cookie-content) {
  background: var(--hbp_light-space);
  border-radius: 20px;
  padding: 3rem;
  max-width: 1000px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  animation: hbp_modalAppear 0.5s ease-out;
  max-height: 85vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(126, 59, 223, 0.5) transparent;
}

.hbp_modal-content:not(.hbp_cookie-content)::-webkit-scrollbar {
  width: 6px;
}

.hbp_modal-content:not(.hbp_cookie-content)::-webkit-scrollbar-track {
  background: transparent;
}

.hbp_modal-content:not(.hbp_cookie-content)::-webkit-scrollbar-thumb {
  background: rgba(126, 59, 223, 0.5);
  border-radius: 3px;
}

.hbp_modal-content:not(.hbp_cookie-content)::-webkit-scrollbar-thumb:hover {
  background: rgba(126, 59, 223, 0.7);
}

.hbp_modal-content {
  background: var(--hbp_light-space);
  border-radius: var(--hbp_border-radius-lg);
  padding: 3rem;
  max-width: 600px;
  width: 100%;
  box-shadow: var(--hbp_shadow-strong);
  position: relative;
  animation: hbp_modalAppear 0.5s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes hbp_modalAppear {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hbp_modal-overlay.hbp_age-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.98);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1rem;
  overflow-y: auto;
}

.hbp_modal-overlay.hbp_age-modal.active {
  display: flex;
}

.hbp_age-content {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 50%, #c23616 100%);
  color: white;
  text-align: center;
  max-width: 500px;
  width: 100%;
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  animation: hbp_modalAppear 0.5s ease-out;
}

@keyframes hbp_modalAppear {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hbp_age-content h2 {
  font-family: 'Vollkorn', serif;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hbp_age-content p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  color: #f7f7f7;
}

.hbp_age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hbp_age-confirm {
  background: linear-gradient(45deg, #00b894, #55efc4);
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  color: #2d3436;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 184, 148, 0.3);
}

.hbp_age-confirm:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 184, 148, 0.4);
}

.hbp_age-decline {
  background: transparent;
  border: 2px solid #ffffff;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hbp_age-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.hbp_age-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hbp_age-partner {
  display: inline-block;
  transition: transform 0.3s ease;
}

.hbp_age-partner:hover {
  transform: translateY(-3px);
}

.hbp_age-partner img {
  border-radius: 8px;
}

.hbp_age-restriction {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hbp_age-restriction img {
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 50px;
  height: 50px;
}

.hbp_cookie-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
  color: white;
  z-index: 998;
  display: none;
  animation: hbp_slideUp 0.5s ease-out;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
}

.hbp_cookie-modal.active {
  display: block;
}

.hbp_cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
}

@keyframes hbp_slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.hbp_cookie-content p {
  margin: 0;
  flex: 1;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
}

.hbp_cookie-content a {
  color: #ffeaa7;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.hbp_cookie-content a:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.hbp_cookie-accept {
  background: linear-gradient(45deg, #ffeaa7, #fdcb6e);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  color: #2d3436;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(253, 203, 110, 0.3);
  flex-shrink: 0;
}

.hbp_cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 203, 110, 0.4);
}

.hbp_contact-content {
  max-width: 900px;
  display: flex;
  gap: 3rem;
  padding: 0;
  overflow: hidden;
}

.hbp_contact-main {
  flex: 1;
  padding: 3rem;
}

.hbp_contact-main h2 {
  font-family: var(--hbp_header-font);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--hbp_white-text);
  background: var(--hbp_vibrant-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  min-height: 3.5rem;
}

.hbp_contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hbp_form-group {
  position: relative;
}

.hbp_form-input, .hbp_form-textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--hbp_border-radius-md);
  color: var(--hbp_white-text);
  font-family: var(--hbp_body-font);
  font-size: 1rem;
  transition: var(--hbp_transition-fast);
}

.hbp_form-textarea {
  resize: vertical;
  min-height: 120px;
}

.hbp_form-input:focus, .hbp_form-textarea:focus {
  outline: none;
  border-color: var(--hbp_cyan-blue);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.1);
}

.hbp_form-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--hbp_light-text);
  transition: var(--hbp_transition-fast);
  pointer-events: none;
  background: var(--hbp_light-space);
  padding: 0 0.5rem;
}

.hbp_form-input:focus + .hbp_form-label,
.hbp_form-input:not(:placeholder-shown) + .hbp_form-label,
.hbp_form-textarea:focus + .hbp_form-label,
.hbp_form-textarea:not(:placeholder-shown) + .hbp_form-label {
  top: -0.5rem;
  left: 0.5rem;
  font-size: 0.875rem;
  color: var(--hbp_cyan-blue);
}

.hbp_form-error {
  display: block;
  color: #ff6b6b;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
}

.hbp_form-checkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem;
}

.hbp_checkbox-input {
  margin-top: 0.25rem;
}

.hbp_checkbox-label {
  color: var(--hbp_light-text);
  font-size: 0.9rem;
  line-height: 1.4;
  min-height: 1.5rem;
}

.hbp_checkbox-label a {
  color: var(--hbp_cyan-blue);
  text-decoration: none;
  transition: var(--hbp_transition-fast);
}

.hbp_checkbox-label a:hover {
  text-decoration: underline;
}

.hbp_form-submit {
  background: var(--hbp_vibrant-gradient-1);
  border: none;
  padding: 1.25rem 2rem;
  border-radius: var(--hbp_border-radius-md);
  color: var(--hbp_white-text);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--hbp_transition-medium);
  box-shadow: var(--hbp_shadow-soft);
  position: relative;
  overflow: hidden;
}

.hbp_form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: var(--hbp_transition-medium);
}

.hbp_form-submit:hover::before {
  left: 100%;
}

.hbp_form-submit:hover {
  transform: translateY(-3px);
  box-shadow: var(--hbp_shadow-medium);
}

.hbp_form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.hbp_contact-info {
  flex: 1;
  background: var(--hbp_vibrant-gradient-1);
  padding: 3rem;
  border-radius: 0 var(--hbp_border-radius-lg) var(--hbp_border-radius-lg) 0;
}

.hbp_contact-info h3 {
  font-family: var(--hbp_header-font);
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--hbp_white-text);
  text-align: center;
  min-height: 2.5rem;
}

.hbp_contact-cards {
  display: grid;
  gap: 1.5rem;
}

.hbp_contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--hbp_border-radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: var(--hbp_transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hbp_contact-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.hbp_contact-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--hbp_sunshine-yellow);
  display: block;
}

.hbp_contact-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--hbp_white-text);
  min-height: 1.5rem;
}

.hbp_contact-card p {
  color: var(--hbp_light-text);
  font-size: 0.9rem;
  line-height: 1.5;
  min-height: 3rem;
}

.hbp_contact-card a {
  color: var(--hbp_sunshine-yellow);
  text-decoration: none;
  transition: var(--hbp_transition-fast);
}

.hbp_contact-card a:hover {
  text-decoration: underline;
}

.hbp_modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--hbp_light-text);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--hbp_transition-fast);
  z-index: 1;
}

.hbp_modal-close:hover {
  color: var(--hbp_white-text);
  transform: rotate(90deg);
}

.hbp_subscribe-content {
  max-width: 600px;
  text-align: center;
}

.hbp_subscribe-main h2 {
  font-family: var(--hbp_header-font);
  font-size: 2.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: var(--hbp_white-text);
  background: var(--hbp_vibrant-gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  min-height: 3.5rem;
}

.hbp_subscribe-main p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--hbp_light-text);
  line-height: 1.6;
  min-height: 3.5rem;
}

.hbp_subscribe-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hbp_subscribe-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hbp_subscribe-feature i {
  font-size: 2rem;
  color: var(--hbp_cyan-blue);
}

.hbp_subscribe-feature span {
  font-size: 0.9rem;
  color: var(--hbp_light-text);
  font-weight: 500;
  min-height: 1.2rem;
}

.hbp_subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hbp_subscribe-success {
  display: none;
}

.hbp_subscribe-success h2 {
  font-family: var(--hbp_header-font);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--hbp_white-text);
  background: var(--hbp_vibrant-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  min-height: 3.5rem;
}

.hbp_subscribe-success p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: var(--hbp_light-text);
  line-height: 1.6;
  min-height: 3.5rem;
}

.hbp_success-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hbp_success-btn {
  display: inline-block;
  background: var(--hbp_vibrant-gradient-1);
  color: var(--hbp_white-text);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: var(--hbp_border-radius-md);
  font-weight: 600;
  transition: var(--hbp_transition-fast);
}

.hbp_success-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--hbp_shadow-soft);
}

.hbp_unsubscribe-btn {
  background: transparent;
  border: 2px solid var(--hbp_cyan-blue);
  color: var(--hbp_cyan-blue);
  padding: 1rem 2rem;
  border-radius: var(--hbp_border-radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--hbp_transition-fast);
}

.hbp_unsubscribe-btn:hover {
  background: var(--hbp_cyan-blue);
  color: var(--hbp_deep-space);
  transform: translateY(-3px);
}

.hbp_success-content, .hbp_unsubscribe-content {
  text-align: center;
  max-width: 500px;
}

.hbp_success-content h2, .hbp_unsubscribe-content h2 {
  font-family: var(--hbp_header-font);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--hbp_white-text);
  background: var(--hbp_vibrant-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  min-height: 3.5rem;
}

.hbp_success-content p, .hbp_unsubscribe-content p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: var(--hbp_light-text);
  line-height: 1.6;
  min-height: 3.5rem;
}

.hbp_success-close, .hbp_unsubscribe-close {
  background: var(--hbp_vibrant-gradient-1);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--hbp_border-radius-md);
  color: var(--hbp_white-text);
  font-weight: 600;
  cursor: pointer;
  transition: var(--hbp_transition-fast);
}

.hbp_success-close:hover, .hbp_unsubscribe-close:hover {
  transform: translateY(-3px);
  box-shadow: var(--hbp_shadow-soft);
}

.hbp_scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 1.2rem;
  width: 50px;
  height: 50px;
  background: var(--hbp_vibrant-gradient-1);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--hbp_white-text);
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--hbp_transition-medium);
  box-shadow: var(--hbp_shadow-medium);
  z-index: 999;
}

.hbp_scroll-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--hbp_shadow-strong);
}

.hbp_scroll-top.active {
  display: flex;
}

@media (max-width: 1024px) {
  .hbp_about-block {
    gap: 3rem;
  }
  
  .hbp_faq-grid {
    gap: 1.5rem;
  }
  
  .hbp_contact-content {
    flex-direction: column;
    max-width: 600px;
  }
  
  .hbp_contact-info {
    border-radius: 0 0 var(--hbp_border-radius-lg) var(--hbp_border-radius-lg);
  }
}

@media (max-width: 768px) {
  .hbp_canvas-header {
    padding: 1rem;
  }
  
  .hbp_nav-toggle {
    display: block;
    z-index: 1000;
  }
  
  .hbp_header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hbp_vibrant-gradient-1);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: var(--hbp_transition-medium);
    z-index: 999;
  }
  
  .hbp_header-nav.active {
    transform: translateY(0);
  }
  
  .hbp_header-brand {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .hbp_welcome-content h1 {
    font-size: 2.5rem;
  }
  
  .hbp_about-block {
    flex-direction: column;
    gap: 2rem;
  }
  
  .hbp_about-story, .hbp_about-mission, .hbp_about-vision {
    flex-direction: column;
  }
  
  .hbp_features-grid {
    gap: 1.5rem;
  }
  
  .hbp_feature-item {
    width: calc(50% - 0.75rem);
  }
  
  .hbp_games-grid {
    gap: 1.5rem;
  }
  
  .hbp_game-card {
    width: calc(50% - 0.75rem);
  }
  
  .hbp_faq-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hbp_review-card {
    width: 100%;
  }
  
  .hbp_footer-top {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .hbp_footer-links {
    justify-content: center;
  }
  
  .hbp_footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .hbp_cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .hbp_age-content {
    margin: 1rem;
    padding: 2rem 1.5rem;
  }
  
  .hbp_age-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hbp_age-confirm,
  .hbp_age-decline {
    width: 100%;
    max-width: 250px;
  }
  
  .hbp_age-partners {
    gap: 0.75rem;
  }
  
  .hbp_modal-content:not(.hbp_cookie-content) {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
}

@media (max-width: 480px) {
  .hbp_canvas-welcome, .hbp_canvas-about, .hbp_canvas-features, 
  .hbp_canvas-games, .hbp_canvas-premium, .hbp_canvas-faq, 
  .hbp_canvas-reviews, .hbp_canvas-responsibility {
    padding: 4rem 1rem;
  }
  
  .hbp_welcome-content h1 {
    font-size: 2rem;
  }
  
  .hbp_welcome-card, .hbp_premium-card {
    width: 100%;
    max-width: 250px;
  }
  
  .hbp_feature-item {
    width: 100%;
  }
  
  .hbp_game-card {
    width: 100%;
  }
  
  .hbp_modal-content {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
  
  .hbp_contact-main, .hbp_contact-info,
  .hbp_contact-card {
    padding: 2rem 0.5rem;
  }

  .hbp_responsibility-container h2 {
    font-size: 2.2rem;
  }
  
  .hbp_responsibility-partners {
    gap: 1rem;
  }

  .hbp_cookie-content {
    padding: 1rem;
  }
  
  .hbp_cookie-content p {
    font-size: 0.9rem;
  }
  
  .hbp_age-content {
    padding: 1.5rem 1rem;
  }
  
  .hbp_age-content h2 {
    font-size: 1.8rem;
  }
  
  .hbp_age-content p {
    font-size: 1rem;
  }
  
  .hbp_age-partners {
    gap: 0.5rem;
  }

  .hbp_modal-content:not(.hbp_cookie-content),
  .hbp_contact-main, .hbp_contact-info,
  .hbp_modal-content, .hbp_contact-content {
    padding: 1.5rem 0.4rem;
  }

  .hbp_success-content h2, .hbp_unsubscribe-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 320px) {
  .hbp_canvas-welcome, .hbp_canvas-about, .hbp_canvas-features, 
  .hbp_canvas-games, .hbp_canvas-premium, .hbp_canvas-faq, 
  .hbp_canvas-reviews, .hbp_canvas-responsibility {
    padding: 3rem 0.5rem;
  }
  
  .hbp_welcome-content h1 {
    font-size: 1.75rem;
  }
  
  .hbp_about-text h2, .hbp_features-content h2, .hbp_games-container h2,
  .hbp_premium-content h2, .hbp_faq-container h2, .hbp_reviews-container h2,
  .hbp_responsibility-container h2 {
    font-size: 2rem;
  }
  
  .hbp_modal-content:not(.hbp_cookie-content),
  .hbp_modal-content {
    margin: 0.5rem;
  }
  
  .hbp_footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

.hbppages_privacy-main {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  min-height: 100vh;
}

.hbppages_privacy-hero {
  background: linear-gradient(45deg, #7e3bdf 0%, #00c2ff 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hbppages_privacy-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/hbp-engine/hbp-imgs/peak-background-image-1.webp') center/cover no-repeat;
  opacity: 0.1;
}

.hbppages_privacy-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hbppages_privacy-hero h1 {
  font-family: 'Vollkorn', serif;
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hbppages_privacy-hero p {
  font-size: 1.3rem;
  color: #e6e6ff;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hbppages_privacy-hero i {
  font-size: 4rem;
  color: #ffd93d;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hbppages_privacy-content {
  padding: 5rem 2rem;
}

.hbppages_privacy-sections {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}

.hbppages_privacy-block {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.hbppages_privacy-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.hbppages_privacy-block:hover::before {
  left: 100%;
}

.hbppages_privacy-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(126, 59, 223, 0.5);
}

.hbppages_privacy-icon {
  flex-shrink: 0;
}

.hbppages_privacy-icon i {
  font-size: 3rem;
  color: #00c2ff;
  background: linear-gradient(45deg, #00c2ff, #7e3bdf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.hbppages_privacy-block:hover .hbppages_privacy-icon i {
  transform: scale(1.2) rotate(10deg);
}

.hbppages_privacy-text {
  flex: 1;
}

.hbppages_privacy-text h2 {
  font-family: 'Vollkorn', serif;
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffd93d, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hbppages_privacy-text p {
  color: #e6e6ff;
  line-height: 1.7;
  font-size: 1.1rem;
}

.hbppages_privacy-text a {
  color: #ffd93d;
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.hbppages_privacy-text a:hover {
  color: #00c2ff;
  border-bottom-color: #00c2ff;
}

@media (max-width: 768px) {
  .hbppages_privacy-hero {
    padding: 4rem 1rem;
  }
  
  .hbppages_privacy-hero h1 {
    font-size: 2.5rem;
  }
  
  .hbppages_privacy-hero p {
    font-size: 1.1rem;
  }
  
  .hbppages_privacy-content {
    padding: 3rem 1rem;
  }
  
  .hbppages_privacy-block {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .hbppages_privacy-icon i {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hbppages_privacy-hero h1 {
    font-size: 2rem;
  }
  
  .hbppages_privacy-hero i {
    font-size: 3rem;
  }
  
  .hbppages_privacy-block {
    padding: 1.5rem;
  }
  
  .hbppages_privacy-text h2 {
    font-size: 1.5rem;
  }

  .hbppages_privacy-text a {
    font-size: 0.9rem;
  }
}

.hbppages_terms-main {
  background: linear-gradient(135deg, #0c2461 0%, #1e3799 50%, #4a69bd 100%);
  min-height: 100vh;
}

.hbppages_terms-hero {
  background: linear-gradient(45deg, #ff6b6b 0%, #ffd93d 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hbppages_terms-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/hbp-engine/hbp-imgs/peak-background-image-2.webp') center/cover no-repeat;
  opacity: 0.1;
}

.hbppages_terms-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hbppages_terms-hero h1 {
  font-family: 'Vollkorn', serif;
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hbppages_terms-hero p {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 500;
}

.hbppages_terms-hero i {
  font-size: 4rem;
  color: #2c3e50;
  animation: spin 8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

.hbppages_terms-content {
  padding: 5rem 2rem;
}

.hbppages_terms-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.hbppages_terms-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

.hbppages_terms-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(45deg, #ff6b6b, #ffd93d, #4a69bd);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hbppages_terms-card:hover {
  transform: translateY(-12px) rotate(1deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hbppages_terms-card-header {
  background: linear-gradient(135deg, #4a69bd, #1e3799);
  padding: 2rem;
  text-align: center;
  color: white;
}

.hbppages_terms-card-header i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  color: #ffd93d;
}

.hbppages_terms-card-header h2 {
  font-family: 'Vollkorn', serif;
  font-size: 1.6rem;
  margin: 0;
  color: #ffffff;
}

.hbppages_terms-card-body {
  padding: 2rem;
}

.hbppages_terms-card-body p {
  color: #2c3e50;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.hbppages_terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hbppages_terms-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #4a69bd;
  font-weight: 500;
}

.hbppages_terms-list li:last-child {
  margin-bottom: 0;
}

.hbppages_terms-list i {
  color: #ff6b6b;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hbppages_terms-card:nth-child(even) .hbppages_terms-card-header {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

.hbppages_terms-card:nth-child(even) .hbppages_terms-list i {
  color: #4a69bd;
}

.hbppages_terms-card:nth-child(3n) .hbppages_terms-card-header {
  background: linear-gradient(135deg, #ffd93d, #ffed4e);
}

.hbppages_terms-card:nth-child(3n) .hbppages_terms-card-header h2 {
  color: #2c3e50;
}

.hbppages_terms-card:nth-child(3n) .hbppages_terms-list i {
  color: #ff6b6b;
}

@media (max-width: 768px) {
  .hbppages_terms-hero {
    padding: 4rem 1rem;
  }
  
  .hbppages_terms-hero h1 {
    font-size: 2.5rem;
  }
  
  .hbppages_terms-hero p {
    font-size: 1.1rem;
  }
  
  .hbppages_terms-content {
    padding: 3rem 1rem;
  }
  
  .hbppages_terms-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hbppages_terms-card {
    margin: 0 auto;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .hbppages_terms-hero h1 {
    font-size: 2rem;
  }
  
  .hbppages_terms-hero i {
    font-size: 3rem;
  }
  
  .hbppages_terms-card-header,
  .hbppages_terms-card-body {
    padding: 1.5rem;
  }
  
  .hbppages_terms-card-header h2 {
    font-size: 1.4rem;
  }
  
  .hbppages_terms-card-header i {
    font-size: 2.5rem;
  }
}

.hbppages_cookies-main {
  background: linear-gradient(135deg, #2d3436 0%, #636e72 50%, #b2bec3 100%);
  min-height: 100vh;
}

.hbppages_cookies-hero {
  background: linear-gradient(45deg, #a29bfe 0%, #6c5ce7 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hbppages_cookies-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/hbp-engine/hbp-imgs/peak-background-image-3.webp') center/cover no-repeat;
  opacity: 0.1;
}

.hbppages_cookies-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hbppages_cookies-hero h1 {
  font-family: 'Vollkorn', serif;
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hbppages_cookies-hero p {
  font-size: 1.3rem;
  color: #dfe6e9;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hbppages_cookies-animation {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.hbppages_cookies-animation i {
  font-size: 4rem;
  color: #ffeaa7;
  animation: bounce 2s ease-in-out infinite;
}

.hbppages_cookies-animation i:last-child {
  animation-delay: 0.5s;
  color: #fab1a0;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(10deg); }
  50% { transform: translateY(0) rotate(0deg); }
  75% { transform: translateY(-10px) rotate(-10deg); }
}

.hbppages_cookies-content {
  padding: 5rem 2rem;
}

.hbppages_cookies-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.hbppages_cookies-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.hbppages_cookies-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hbppages_cookies-item:last-child {
  margin-bottom: 0;
}

.hbppages_cookies-question {
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
}

.hbppages_cookies-question:hover {
  background-color: #f8f9fa;
}

.hbppages_cookies-question i:first-child {
  font-size: 2rem;
  color: #6c5ce7;
  flex-shrink: 0;
}

.hbppages_cookies-question h2 {
  font-family: 'Vollkorn', serif;
  font-size: 1.5rem;
  color: #2d3436;
  margin: 0;
  flex: 1;
}

.hbppages_cookies-question i:last-child {
  font-size: 1.2rem;
  color: #636e72;
  transition: transform 0.3s ease;
}

.hbppages_cookies-item.active .hbppages_cookies-question i:last-child {
  transform: rotate(180deg);
}

.hbppages_cookies-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  background: #f8f9fa;
}

.hbppages_cookies-item.active .hbppages_cookies-answer {
  max-height: 500px;
  padding: 0 2rem 2rem 2rem;
}

.hbppages_cookies-answer p {
  color: #2d3436;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.hbppages_cookies-answer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hbppages_cookies-answer li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #2d3436;
  font-weight: 500;
}

.hbppages_cookies-answer li:last-child {
  margin-bottom: 0;
}

.hbppages_cookies-answer li i {
  color: #00b894;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hbppages_cookies-item:nth-child(odd) .hbppages_cookies-question i:first-child {
  color: #00b894;
}

.hbppages_cookies-item:nth-child(even) .hbppages_cookies-question i:first-child {
  color: #fd79a8;
}

.hbppages_cookies-item:nth-child(3n) .hbppages_cookies-question i:first-child {
  color: #fdcb6e;
}

.hbppages_cookies-item:nth-child(4n) .hbppages_cookies-question i:first-child {
  color: #e17055;
}

@media (max-width: 768px) {
  .hbppages_cookies-hero {
    padding: 4rem 1rem;
  }
  
  .hbppages_cookies-hero h1 {
    font-size: 2.5rem;
  }
  
  .hbppages_cookies-hero p {
    font-size: 1.1rem;
  }
  
  .hbppages_cookies-content {
    padding: 3rem 1rem;
  }
  
  .hbppages_cookies-question {
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .hbppages_cookies-question h2 {
    font-size: 1.3rem;
  }
  
  .hbppages_cookies-question i:first-child {
    font-size: 1.5rem;
  }
  
  .hbppages_cookies-item.active .hbppages_cookies-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hbppages_cookies-hero h1 {
    font-size: 2rem;
  }
  
  .hbppages_cookies-animation i {
    font-size: 3rem;
  }
  
  .hbppages_cookies-question {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .hbppages_cookies-question h2 {
    font-size: 1.2rem;
  }
}

.hbppages_responsible-main {
  background: linear-gradient(135deg, #006266 0%, #009432 50%, #00b894 100%);
  min-height: 100vh;
}

.hbppages_responsible-hero {
  background: linear-gradient(45deg, #00b894 0%, #55efc4 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hbppages_responsible-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/hbp-engine/hbp-imgs/peak-background-image-4.webp') center/cover no-repeat;
  opacity: 0.1;
}

.hbppages_responsible-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hbppages_responsible-hero h1 {
  font-family: 'Vollkorn', serif;
  font-size: 3.5rem;
  color: #2d3436;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
}

.hbppages_responsible-hero p {
  font-size: 1.3rem;
  color: #2d3436;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 500;
}

.hbppages_responsible-hero i {
  font-size: 4rem;
  color: #2d3436;
  animation: balance 4s ease-in-out infinite;
}

@keyframes balance {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

.hbppages_responsible-content {
  padding: 5rem 2rem;
}

.hbppages_responsible-features {
  max-width: 1200px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.hbppages_responsible-feature {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.hbppages_responsible-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #00b894, #55efc4, #81ecec);
}

.hbppages_responsible-feature:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hbppages_responsible-feature-icon {
  margin-bottom: 1.5rem;
}

.hbppages_responsible-feature-icon i {
  font-size: 3.5rem;
  background: linear-gradient(45deg, #00b894, #006266);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.hbppages_responsible-feature:hover .hbppages_responsible-feature-icon i {
  transform: scale(1.2) rotate(10deg);
}

.hbppages_responsible-feature h2 {
  font-family: 'Vollkorn', serif;
  font-size: 1.6rem;
  color: #2d3436;
  margin-bottom: 1rem;
}

.hbppages_responsible-feature p {
  color: #636e72;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.hbppages_responsible-feature ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hbppages_responsible-feature li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #2d3436;
  font-weight: 500;
}

.hbppages_responsible-feature li:last-child {
  margin-bottom: 0;
}

.hbppages_responsible-feature li i {
  color: #00b894;
  font-size: 1.1rem;
}

.hbppages_responsible-resources {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hbppages_responsible-resources h2 {
  font-family: 'Vollkorn', serif;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hbppages_responsible-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.hbppages_resource-link {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 1.5rem;
  text-decoration: none;
  color: #2d3436;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hbppages_resource-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: #ffffff;
  color: #00b894;
}

.hbppages_resource-link i {
  font-size: 2rem;
  color: #00b894;
  transition: all 0.3s ease;
}

.hbppages_resource-link:hover i {
  transform: scale(1.2);
  color: #006266;
}

.hbppages_resource-link span {
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
}

@media (max-width: 768px) {
  .hbppages_responsible-hero {
    padding: 4rem 1rem;
  }
  
  .hbppages_responsible-hero h1 {
    font-size: 2.5rem;
  }
  
  .hbppages_responsible-hero p {
    font-size: 1.1rem;
  }
  
  .hbppages_responsible-content {
    padding: 3rem 1rem;
  }
  
  .hbppages_responsible-features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hbppages_responsible-feature {
    padding: 2rem;
  }
  
  .hbppages_responsible-resources h2 {
    font-size: 2rem;
  }
  
  .hbppages_responsible-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hbppages_responsible-hero h1 {
    font-size: 2rem;
  }
  
  .hbppages_responsible-hero i {
    font-size: 3rem;
  }
  
  .hbppages_responsible-feature {
    padding: 1.5rem;
  }
  
  .hbppages_responsible-feature-icon i {
    font-size: 2.5rem;
  }
  
  .hbppages_responsible-feature h2 {
    font-size: 1.4rem;
  }
  
  .hbppages_responsible-links {
    grid-template-columns: 1fr;
  }
}

.hbppages_404-main {
  background: linear-gradient(135deg, #6a89cc 0%, #4a69bd 50%, #1e3799 100%);
  min-height: 100vh;
}

.hbppages_404-hero {
  padding: 6rem 2rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hbppages_404-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hbppages_404-content h1 {
  font-family: 'Vollkorn', serif;
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
  background: linear-gradient(45deg, #ffffff, #f6b93b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hbppages_404-content p {
  font-size: 1.3rem;
  color: #e6e6ff;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hbppages_404-animation {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  justify-content: flex-start;
}

.hbppages_404-animation i {
  font-size: 3rem;
  color: #f6b93b;
  animation: search 3s ease-in-out infinite;
}

.hbppages_404-animation i:nth-child(2) {
  animation-delay: 0.5s;
  color: #e55039;
}

.hbppages_404-animation i:nth-child(3) {
  animation-delay: 1s;
  color: #78e08f;
}

@keyframes search {
  0%, 100% { 
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  25% { 
    transform: translateY(-20px) scale(1.1);
    opacity: 0.8;
  }
  50% { 
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  75% { 
    transform: translateY(-10px) scale(1.05);
    opacity: 0.9;
  }
}

.hbppages_404-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(45deg, #f6b93b, #e55039);
  color: #ffffff;
  text-decoration: none;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(230, 80, 57, 0.3);
  position: relative;
  overflow: hidden;
}

.hbppages_404-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.hbppages_404-button:hover::before {
  left: 100%;
}

.hbppages_404-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(230, 80, 57, 0.5);
}

.hbppages_404-button i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.hbppages_404-button:hover i {
  transform: translateX(-5px);
}

.hbppages_404-image {
  position: relative;
}

.hbppages_404-image img {
  width: 100%;
  max-width: 500px;
  height: 100%;
  max-height: 400px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(1deg); }
  66% { transform: translateY(10px) rotate(-1deg); }
}

.hbppages_404-suggestions {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 4rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hbppages_404-suggestions-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hbppages_404-suggestions h2 {
  font-family: 'Vollkorn', serif;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hbppages_404-suggestions p {
  font-size: 1.2rem;
  color: #e6e6ff;
  margin-bottom: 3rem;
}

.hbppages_404-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.hbppages_404-suggestion {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 2rem;
  text-decoration: none;
  color: #2d3436;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.hbppages_404-suggestion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #6a89cc, #4a69bd, #1e3799);
}

.hbppages_404-suggestion:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hbppages_404-suggestion i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  background: linear-gradient(45deg, #6a89cc, #4a69bd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.hbppages_404-suggestion:hover i {
  transform: scale(1.2) rotate(10deg);
}

.hbppages_404-suggestion span {
  display: block;
  font-family: 'Vollkorn', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d3436;
  margin-bottom: 0.75rem;
}

.hbppages_404-suggestion p {
  color: #636e72;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .hbppages_404-hero {
    padding: 4rem 1rem;
  }
  
  .hbppages_404-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hbppages_404-content h1 {
    font-size: 3rem;
  }
  
  .hbppages_404-content p {
    font-size: 1.1rem;
  }
  
  .hbppages_404-animation {
    justify-content: center;
  }
  
  .hbppages_404-suggestions {
    padding: 3rem 1rem;
  }
  
  .hbppages_404-suggestions h2 {
    font-size: 2rem;
  }
  
  .hbppages_404-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hbppages_404-content h1 {
    font-size: 2.5rem;
  }
  
  .hbppages_404-animation i {
    font-size: 2.5rem;
  }
  
  .hbppages_404-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .hbppages_404-suggestion {
    padding: 1.5rem;
  }
  
  .hbppages_404-suggestion i {
    font-size: 2rem;
  }
  
  .hbppages_404-suggestion span {
    font-size: 1.2rem;
  }
}