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

:root {
  --rlw-gradient-primary: linear-gradient(135deg, #ff3366, #ff9933, #33ccff);
  --rlw-gradient-secondary: linear-gradient(135deg, #9933ff, #ff3366, #ffcc00);
  --rlw-gradient-tertiary: linear-gradient(135deg, #33ffcc, #3366ff, #cc33ff);
  --rlw-gradient-dark: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  --rlw-color-accent: #ff3366;
  --rlw-color-secondary: #33ccff;
  --rlw-color-tertiary: #ffcc00;
  --rlw-color-light: #f8f9fa;
  --rlw-color-dark: #212529;
  --rlw-shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
  --rlw-shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
  --rlw-shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.2);
  --rlw-border-radius: 12px;
  --rlw-border-radius-lg: 20px;
  --rlw-transition: all 0.3s ease;
}

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  color: var(--rlw-color-dark);
  background: url('/hb-core/hb-img/hb-back-image.webp') center/cover fixed;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--rlw-gradient-dark);
  opacity: 0.95;
  z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  min-height: 4.2rem;
}

h2 {
  font-size: 2.8rem;
  min-height: 3.4rem;
}

h3 {
  font-size: 2rem;
  min-height: 2.4rem;
}

h4 {
  font-size: 1.5rem;
  min-height: 1.8rem;
}

p {
  margin-bottom: 1rem;
  min-height: 1.5rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--rlw-transition);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--rlw-transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hb-rlw-age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 1rem;
  overflow: auto;
}

.hb-rlw-age-content {
  background: var(--rlw-gradient-primary);
  padding: 3rem;
  border-radius: var(--rlw-border-radius-lg);
  text-align: center;
  max-width: 600px;
  width: 100%;
  box-shadow: var(--rlw-shadow-strong);
  color: white;
  position: relative;
  overflow: hidden;
  overflow-y: auto;
  max-height: 90vh;
}

.hb-rlw-age-header {
  margin-bottom: 2rem;
}

.hb-rlw-age-header .material-icons {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}

.hb-rlw-age-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hb-rlw-age-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hb-rlw-age-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.hb-rlw-age-partners a {
  display: block;
  transition: transform 0.3s ease;
}

.hb-rlw-age-partners a:hover {
  transform: scale(1.05);
}

.hb-rlw-age-partners img {
  width: 120px;
  height: 60px;
  object-fit: contain;
  border-radius: 0.5rem;
  background: white;
  padding: 0.25rem;
}

.hb-rlw-age-18plus {
  background: white;
  color: var(--rlw-color-dark);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: var(--rlw-shadow-medium);
}

.hb-rlw-age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.hb-rlw-age-confirm,
.hb-rlw-age-decline {
  padding: 1rem 2rem;
  border-radius: var(--rlw-border-radius);
  font-size: 1.1rem;
  font-weight: bold;
  transition: var(--rlw-transition);
  min-width: 160px;
}

.hb-rlw-age-confirm {
  background: white;
  color: var(--rlw-color-accent);
}

.hb-rlw-age-confirm:hover {
  transform: translateY(-3px);
  box-shadow: var(--rlw-shadow-medium);
}

.hb-rlw-age-decline {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
}

.hb-rlw-age-decline:hover {
  background: white;
  color: var(--rlw-color-dark);
}

.hb-rlw-cookie-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  background: var(--rlw-gradient-tertiary);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: var(--rlw-shadow-strong);
}

.hb-rlw-cookie-content {
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.hb-rlw-cookie-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  flex: 1;
}

.hb-rlw-cookie-text .material-icons {
  font-size: 2rem;
}

.hb-rlw-cookie-text p {
  margin: 0;
  font-size: 1rem;
}

.hb-rlw-cookie-text a {
  color: white;
  text-decoration: underline;
  font-weight: bold;
}

.hb-rlw-cookie-accept {
  background: white;
  color: var(--rlw-color-dark);
  padding: 0.8rem 2rem;
  border-radius: var(--rlw-border-radius);
  font-weight: bold;
  white-space: nowrap;
}

.hb-rlw-cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--rlw-shadow-soft);
}

.hb-rlw-header {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hb-rlw-header-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hb-rlw-logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hb-rlw-logo {
  width: 50px;
  height: 50px;
}

.hb-rlw-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: bold;
  background: var(--rlw-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hb-rlw-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hb-rlw-nav-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 2rem;
}

.hb-rlw-nav-link {
  color: white;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.hb-rlw-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rlw-gradient-primary);
  transition: var(--rlw-transition);
}

.hb-rlw-nav-link:hover::after {
  width: 100%;
}

.hb-rlw-contact-trigger {
  background: var(--rlw-gradient-primary);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: var(--rlw-border-radius);
  font-weight: bold;
}

.hb-rlw-contact-trigger:hover {
  transform: translateY(-2px);
  box-shadow: var(--rlw-shadow-soft);
}

.hb-rlw-mobile-toggle {
  display: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.hb-rlw-main {
  margin-top: 80px;
}

.hb-rlw-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.hb-rlw-hero-content {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
}

.hb-rlw-hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  background: var(--rlw-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hb-rlw-hero-content p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hb-rlw-hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hb-rlw-hero-button,
.hb-rlw-hero-button-alt {
  padding: 1.2rem 2.5rem;
  border-radius: var(--rlw-border-radius);
  font-size: 1.1rem;
  font-weight: bold;
  transition: var(--rlw-transition);
}

.hb-rlw-hero-button {
  background: var(--rlw-gradient-primary);
  color: white;
}

.hb-rlw-hero-button:hover {
  transform: translateY(-5px);
  box-shadow: var(--rlw-shadow-medium);
}

.hb-rlw-hero-button-alt {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hb-rlw-hero-button-alt:hover {
  background: white;
  color: var(--rlw-color-dark);
  transform: translateY(-5px);
}

.hb-rlw-hero-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hb-rlw-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.7;
  animation: rlw-float 6s ease-in-out infinite;
}

.hb-rlw-hero-orb-1 {
  width: 300px;
  height: 300px;
  background: var(--rlw-color-accent);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.hb-rlw-hero-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--rlw-color-secondary);
  top: 50%;
  right: 10%;
  animation-delay: 2s;
}

.hb-rlw-hero-orb-3 {
  width: 250px;
  height: 250px;
  background: var(--rlw-color-tertiary);
  bottom: 10%;
  left: 50%;
  animation-delay: 4s;
}

.hb-rlw-features {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
}

.hb-rlw-features-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.hb-rlw-features h2 {
  color: white;
  margin-bottom: 1rem;
}

.hb-rlw-features p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 4rem;
}

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

.hb-rlw-feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: var(--rlw-border-radius-lg);
  text-align: center;
  flex: 1 1 300px;
  max-width: 350px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--rlw-transition);
  position: relative;
  overflow: hidden;
}

.hb-rlw-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--rlw-gradient-primary);
  opacity: 0;
  transition: var(--rlw-transition);
  z-index: -1;
}

.hb-rlw-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--rlw-shadow-medium);
}

.hb-rlw-feature-card:hover::before {
  opacity: 0.1;
}

.hb-rlw-feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--rlw-gradient-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.hb-rlw-feature-icon .material-icons {
  font-size: 2.5rem;
}

.hb-rlw-feature-card h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.hb-rlw-feature-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.hb-rlw-features-cta {
  margin-top: 4rem;
}

.hb-rlw-features-button {
  display: inline-block;
  background: var(--rlw-gradient-secondary);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: var(--rlw-border-radius);
  font-weight: bold;
  font-size: 1.1rem;
  transition: var(--rlw-transition);
}

.hb-rlw-features-button:hover {
  transform: translateY(-5px);
  box-shadow: var(--rlw-shadow-medium);
}

.hb-rlw-about {
  padding: 6rem 0;
  position: relative;
}

.hb-rlw-about-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.hb-rlw-about-visual {
  flex: 1;
  position: relative;
}

.hb-rlw-about-image {
  border-radius: var(--rlw-border-radius-lg);
  overflow: hidden;
  box-shadow: var(--rlw-shadow-strong);
  position: relative;
}

.hb-rlw-about-image img {
  width: 100%;
  max-width: 550px;
  height: 100%;
  max-height: 550px;
  transition: var(--rlw-transition);
}

.hb-rlw-about-image:hover img {
  transform: scale(1.05);
}

.hb-rlw-about-decoration {
  position: absolute;
  top: -20px;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hb-rlw-about-orb {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 100px;
  height: 100px;
  background: var(--rlw-gradient-primary);
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.7;
  animation: rlw-pulse 4s ease-in-out infinite;
}

.hb-rlw-about-sparkle {
  position: absolute;
  bottom: 20%;
  left: -10%;
  width: 60px;
  height: 60px;
  background: var(--rlw-gradient-tertiary);
  border-radius: 50%;
  filter: blur(15px);
  opacity: 0.5;
  animation: rlw-float 5s ease-in-out infinite;
}

.hb-rlw-about-content {
  flex: 1;
  color: white;
}

.hb-rlw-about-content h2 {
  margin-bottom: 1.5rem;
  background: var(--rlw-gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hb-rlw-about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.hb-rlw-about-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.hb-rlw-about-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.2rem;
  border-radius: var(--rlw-border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hb-rlw-about-highlight .material-icons {
  color: var(--rlw-color-tertiary);
}

.hb-rlw-about-highlight span:last-child {
  font-weight: 500;
  color: white;
}

.hb-rlw-about-story {
  margin-bottom: 2.5rem;
}

.hb-rlw-about-story h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.hb-rlw-about-story p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hb-rlw-about-milestones {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.hb-rlw-about-milestone {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.hb-rlw-about-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  background: var(--rlw-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.hb-rlw-about-milestone span:last-child {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.hb-rlw-about-cta {
  text-align: center;
}

.hb-rlw-about-button {
  display: inline-block;
  background: var(--rlw-gradient-tertiary);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: var(--rlw-border-radius);
  font-weight: bold;
  font-size: 1.1rem;
  transition: var(--rlw-transition);
}

.hb-rlw-about-button:hover {
  transform: translateY(-5px);
  box-shadow: var(--rlw-shadow-medium);
}

.hb-rlw-games {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.05);
}

.hb-rlw-games-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.hb-rlw-games h2 {
  color: white;
  margin-bottom: 1rem;
}

.hb-rlw-games p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 4rem;
}

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

.hb-rlw-game-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--rlw-border-radius-lg);
  overflow: hidden;
  flex: 1 1 350px;
  max-width: 400px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--rlw-transition);
  position: relative;
}

.hb-rlw-game-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--rlw-shadow-medium);
}

.hb-rlw-game-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--rlw-gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 2;
}

.hb-rlw-game-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.hb-rlw-game-image img {
  width: 100%;
  height: 100%;
  transition: var(--rlw-transition);
}

.hb-rlw-game-card:hover .hb-rlw-game-image img {
  transform: scale(1.1);
}

.hb-rlw-game-content {
  padding: 1.5rem;
  text-align: left;
}

.hb-rlw-game-content h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.hb-rlw-game-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--rlw-color-tertiary);
}

.hb-rlw-game-link {
  display: inline-block;
  background: var(--rlw-gradient-secondary);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: var(--rlw-border-radius);
  font-weight: bold;
  transition: var(--rlw-transition);
}

.hb-rlw-game-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--rlw-shadow-soft);
}

.hb-rlw-testimonials {
  padding: 6rem 0;
  position: relative;
}

.hb-rlw-testimonials-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.hb-rlw-testimonials h2 {
  color: white;
  margin-bottom: 1rem;
}

.hb-rlw-testimonials p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 4rem;
}

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

.hb-rlw-testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--rlw-border-radius-lg);
  flex: 1 1 350px;
  max-width: 400px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--rlw-transition);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hb-rlw-testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--rlw-gradient-primary);
}

.hb-rlw-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--rlw-shadow-soft);
}

.hb-rlw-testimonial-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hb-rlw-testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.hb-rlw-testimonial-avatar img {
  width: 100%;
  height: 100%;
}

.hb-rlw-testimonial-info {
  flex: 1;
}

.hb-rlw-testimonial-info h4 {
  color: white;
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
}

.hb-rlw-testimonial-info span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.hb-rlw-testimonial-rating {
  display: flex;
  gap: 0.2rem;
  color: var(--rlw-color-tertiary);
}

.hb-rlw-testimonial-content {
  margin-bottom: 1.5rem;
}

.hb-rlw-testimonial-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.hb-rlw-testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.hb-rlw-faq {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.05);
}

.hb-rlw-faq-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.hb-rlw-faq h2 {
  color: white;
  margin-bottom: 1rem;
}

.hb-rlw-faq p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.hb-rlw-faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.hb-rlw-faq-category {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--rlw-border-radius-lg);
  flex: 1 1 350px;
  max-width: 400px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.hb-rlw-faq-category h3 {
  color: white;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hb-rlw-faq-item {
  margin-bottom: 1rem;
  border-radius: var(--rlw-border-radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.hb-rlw-faq-question {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: white;
  font-weight: 500;
  transition: var(--rlw-transition);
}

.hb-rlw-faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hb-rlw-faq-question .material-icons {
  transition: var(--rlw-transition);
  color: var(--rlw-color-secondary);
}

.hb-rlw-faq-item.active .hb-rlw-faq-question .material-icons {
  transform: rotate(180deg);
}

.hb-rlw-faq-answer {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--rlw-transition);
  background: rgba(255, 255, 255, 0.02);
}

.hb-rlw-faq-item.active .hb-rlw-faq-answer {
  padding: 1rem;
  max-height: 500px;
}

.hb-rlw-faq-answer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.hb-rlw-faq-answer a {
  color: var(--rlw-color-secondary);
  text-decoration: underline;
}

.hb-rlw-faq-cta {
  text-align: center;
  color: white;
}

.hb-rlw-faq-cta p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.hb-rlw-faq-button {
  background: var(--rlw-gradient-primary);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: var(--rlw-border-radius);
  font-weight: bold;
  font-size: 1.1rem;
  transition: var(--rlw-transition);
}

.hb-rlw-faq-button:hover {
  transform: translateY(-5px);
  box-shadow: var(--rlw-shadow-medium);
}

.hb-rlw-welcome {
  padding: 6rem 0;
  position: relative;
}

.hb-rlw-welcome-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.hb-rlw-welcome h2 {
  color: white;
  margin-bottom: 1rem;
}

.hb-rlw-welcome p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.hb-rlw-welcome-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.hb-rlw-welcome-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: var(--rlw-border-radius-lg);
  text-align: center;
  flex: 1 1 250px;
  max-width: 280px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--rlw-transition);
  position: relative;
  overflow: hidden;
}

.hb-rlw-welcome-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--rlw-gradient-secondary);
  opacity: 0;
  transition: var(--rlw-transition);
  z-index: -1;
}

.hb-rlw-welcome-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--rlw-shadow-medium);
}

.hb-rlw-welcome-card:hover::before {
  opacity: 0.1;
}

.hb-rlw-welcome-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--rlw-gradient-tertiary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.hb-rlw-welcome-icon .material-icons {
  font-size: 2rem;
}

.hb-rlw-welcome-card h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.hb-rlw-welcome-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  font-size: 0.95rem;
}

.hb-rlw-welcome-cta {
  text-align: center;
}

.hb-rlw-welcome-button {
  display: inline-block;
  background: var(--rlw-gradient-primary);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: var(--rlw-border-radius);
  font-weight: bold;
  font-size: 1.1rem;
  transition: var(--rlw-transition);
}

.hb-rlw-welcome-button:hover {
  transform: translateY(-5px);
  box-shadow: var(--rlw-shadow-medium);
}

.hb-rlw-responsible {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.05);
}

.hb-rlw-responsible-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.hb-rlw-responsible h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.hb-rlw-responsible p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hb-rlw-responsible-content {
  text-align: left;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.hb-rlw-responsible-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hb-rlw-responsible-content a {
  color: var(--rlw-color-secondary);
  text-decoration: underline;
  font-weight: bold;
}

.hb-rlw-responsible-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.hb-rlw-responsible-18 {
  background: white;
  color: var(--rlw-color-dark);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  box-shadow: var(--rlw-shadow-medium);
}

.hb-rlw-responsible-cta {
  margin-top: 3rem;
}

.hb-rlw-responsible-button {
  display: inline-block;
  background: var(--rlw-gradient-secondary);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: var(--rlw-border-radius);
  font-weight: bold;
  font-size: 1.1rem;
  transition: var(--rlw-transition);
}

.hb-rlw-responsible-button:hover {
  transform: translateY(-5px);
  box-shadow: var(--rlw-shadow-medium);
}

.hb-rlw-contact {
  padding: 6rem 0;
  position: relative;
}

.hb-rlw-contact-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.hb-rlw-contact-form-section {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: var(--rlw-border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hb-rlw-contact-form-section h2 {
  color: white;
  margin-bottom: 1rem;
  text-align: center;
}

.hb-rlw-contact-form-section p {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 2.5rem;
}

.hb-rlw-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hb-rlw-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hb-rlw-form-group label {
  color: white;
  font-weight: 500;
}

.hb-rlw-form-group input,
.hb-rlw-form-group textarea {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--rlw-border-radius);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--rlw-transition);
}

.hb-rlw-form-group input:focus,
.hb-rlw-form-group textarea:focus {
  outline: none;
  border-color: var(--rlw-color-secondary);
  box-shadow: 0 0 0 2px rgba(51, 204, 255, 0.2);
}

.hb-rlw-form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.hb-rlw-form-hint {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  min-height: 1rem;
  opacity: 0;
  transition: var(--rlw-transition);
}

.hb-rlw-form-group.invalid .hb-rlw-form-hint {
  opacity: 1;
  color: #ff6b6b;
}

.hb-rlw-form-group.valid .hb-rlw-form-hint {
  opacity: 1;
  color: #51cf66;
}

.hb-rlw-form-checkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.8rem;
  margin: 1rem 0;
}

.hb-rlw-form-checkbox input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.hb-rlw-form-checkbox label {
  color: white;
  font-weight: normal;
  line-height: 1.4;
}

.hb-rlw-form-checkbox a {
  color: var(--rlw-color-secondary);
  text-decoration: underline;
}

.hb-rlw-contact-submit {
  background: var(--rlw-gradient-primary);
  color: white;
  padding: 1.2rem 2rem;
  border-radius: var(--rlw-border-radius);
  font-weight: bold;
  font-size: 1.1rem;
  transition: var(--rlw-transition);
  margin-top: 1rem;
}

.hb-rlw-contact-submit:not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow: var(--rlw-shadow-medium);
}

.hb-rlw-contact-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.hb-rlw-contact-info {
  flex: 1;
  color: white;
}

.hb-rlw-contact-info h3 {
  margin-bottom: 2rem;
  text-align: center;
}

.hb-rlw-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hb-rlw-contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--rlw-border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--rlw-transition);
}

.hb-rlw-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--rlw-shadow-soft);
}

.hb-rlw-contact-card .material-icons {
  font-size: 2.5rem;
  color: var(--rlw-color-tertiary);
  margin-bottom: 1rem;
  display: block;
}

.hb-rlw-contact-card h4 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.hb-rlw-contact-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.hb-rlw-contact-card a {
  color: var(--rlw-color-secondary);
  font-weight: bold;
  display: inline-block;
}

.hb-rlw-contact-card a:hover {
  text-decoration: underline;
}

.hb-rlw-contact-note {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: var(--rlw-border-radius);
  border-left: 4px solid var(--rlw-color-tertiary);
}

.hb-rlw-contact-note p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}

.hb-rlw-footer {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 4rem 0 2rem;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hb-rlw-footer-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hb-rlw-footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 3rem;
}

.hb-rlw-footer-brand {
  flex: 1;
  min-width: 250px;
}

.hb-rlw-footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hb-rlw-footer-logo img {
  width: 40px;
  height: 40px;
}

.hb-rlw-footer-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: bold;
  background: var(--rlw-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hb-rlw-footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 300px;
}

.hb-rlw-footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.hb-rlw-footer-column {
  min-width: 150px;
}

.hb-rlw-footer-column h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.hb-rlw-footer-column ul {
  list-style: none;
}

.hb-rlw-footer-column li {
  margin-bottom: 0.8rem;
}

.hb-rlw-footer-column a,
.hb-rlw-footer-column button {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--rlw-transition);
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

.hb-rlw-footer-column a:hover,
.hb-rlw-footer-column button:hover {
  color: white;
  padding-left: 0.5rem;
}

.hb-rlw-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hb-rlw-footer-copyright {
  color: rgba(255, 255, 255, 0.7);
}

.hb-rlw-footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hb-rlw-footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--rlw-transition);
}

.hb-rlw-footer-legal a:hover {
  color: white;
}

.hb-rlw-success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--rlw-transition);
}

.hb-rlw-success-modal.active {
  opacity: 1;
  visibility: visible;
}

.hb-rlw-success-content {
  background: var(--rlw-gradient-primary);
  padding: 2.5rem;
  border-radius: var(--rlw-border-radius-lg);
  max-width: 500px;
  width: 100%;
  text-align: center;
  color: white;
  box-shadow: var(--rlw-shadow-strong);
  position: relative;
}

.hb-rlw-success-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.hb-rlw-success-header .material-icons {
  font-size: 3rem;
  color: #51cf66;
}

.hb-rlw-success-header h3 {
  color: white;
  margin: 0;
  flex: 1;
  text-align: center;
}

.hb-rlw-success-close {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  transition: var(--rlw-transition);
}

.hb-rlw-success-close:hover {
  color: white;
  transform: rotate(90deg);
}

.hb-rlw-success-body p {
  color: white;
  line-height: 1.6;
  margin: 0;
}

.hb-rlw-scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--rlw-gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--rlw-transition);
  z-index: 999;
  box-shadow: var(--rlw-shadow-medium);
}

.hb-rlw-scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.hb-rlw-scroll-top:hover {
  transform: translateY(-5px);
}

@keyframes rlw-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

@keyframes rlw-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
}

.hb-rlw-subscribe-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2001;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.hb-rlw-subscribe-modal.active {
  opacity: 1;
  visibility: visible;
}

.hb-rlw-subscribe-content {
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  animation: hb-rlw-modal-appear 0.5s ease-out;
}

.hb-rlw-subscribe-header {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

.hb-rlw-subscribe-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hb-rlw-subscribe-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.hb-rlw-subscribe-body {
  padding: 3rem 2.5rem 2.5rem;
}

.hb-rlw-subscribe-hero {
  text-align: center;
  margin-bottom: 2rem;
}

.hb-rlw-subscribe-hero .material-icons {
  font-size: 4rem;
  color: #ffcc00;
  margin-bottom: 1rem;
  display: block;
  animation: hb-rlw-icon-pulse 2s ease-in-out infinite;
}

.hb-rlw-subscribe-hero h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  line-height: 1.3;
}

.hb-rlw-subscribe-hero p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.hb-rlw-subscribe-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hb-rlw-subscribe-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  color: white;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.hb-rlw-subscribe-feature:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hb-rlw-subscribe-feature .material-icons {
  color: #33ccff;
  font-size: 1.2rem;
}

.hb-rlw-subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hb-rlw-subscribe-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hb-rlw-subscribe-input-group input {
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hb-rlw-subscribe-input-group input:focus {
  outline: none;
  border-color: #33ccff;
  box-shadow: 0 0 0 2px rgba(51, 204, 255, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.hb-rlw-subscribe-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.hb-rlw-subscribe-hint {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  min-height: 1rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.hb-rlw-subscribe-input-group.invalid .hb-rlw-subscribe-hint,
.hb-rlw-subscribe-checkbox-group.invalid .hb-rlw-subscribe-hint {
  opacity: 1;
  color: #ff6b6b;
}

.hb-rlw-subscribe-input-group.valid .hb-rlw-subscribe-hint,
.hb-rlw-subscribe-checkbox-group.valid .hb-rlw-subscribe-hint {
  opacity: 1;
  color: #51cf66;
}

.hb-rlw-subscribe-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.8rem;
}

.hb-rlw-subscribe-checkbox-group input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.hb-rlw-subscribe-checkbox-group label {
  color: white;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: normal;
}

.hb-rlw-subscribe-checkbox-group a {
  color: #33ccff;
  text-decoration: none;
  font-weight: bold;
}

.hb-rlw-subscribe-checkbox-group a:hover {
  text-decoration: underline;
}

.hb-rlw-subscribe-submit {
  background: linear-gradient(135deg, #ff3366, #9933ff);
  color: white;
  padding: 1.2rem 2rem;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.hb-rlw-subscribe-submit:not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 51, 102, 0.4);
}

.hb-rlw-subscribe-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.hb-rlw-subscribe-footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hb-rlw-subscribe-footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.hb-rlw-subscribe-footer a {
  color: #33ccff;
  text-decoration: none;
  font-weight: bold;
}

.hb-rlw-subscribe-footer a:hover {
  text-decoration: underline;
}

.hb-rlw-subscribe-success {
  text-align: center;
  color: white;
}

.hb-rlw-subscribe-success-icon {
  margin-bottom: 1.5rem;
}

.hb-rlw-subscribe-success-icon .material-icons {
  font-size: 5rem;
  color: #51cf66;
  animation: hb-rlw-success-bounce 0.6s ease-out;
}

.hb-rlw-subscribe-success h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  background: linear-gradient(45deg, #51cf66, #33ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hb-rlw-subscribe-success p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hb-rlw-subscribe-success-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hb-rlw-subscribe-continue {
  background: linear-gradient(135deg, #33ccff, #ff3366);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hb-rlw-subscribe-continue:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(51, 204, 255, 0.4);
}

.hb-rlw-subscribe-unsubscribe {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hb-rlw-subscribe-unsubscribe:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.hb-rlw-unsubscribe-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2002;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.hb-rlw-unsubscribe-modal.active {
  opacity: 1;
  visibility: visible;
}

.hb-rlw-unsubscribe-content {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  padding: 2.5rem;
  border-radius: 20px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  color: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: hb-rlw-modal-appear 0.3s ease-out;
}

.hb-rlw-unsubscribe-header {
  margin-bottom: 1.5rem;
}

.hb-rlw-unsubscribe-header .material-icons {
  font-size: 3rem;
  color: #ff6b6b;
  margin-bottom: 1rem;
  display: block;
}

.hb-rlw-unsubscribe-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.hb-rlw-unsubscribe-body {
  margin-bottom: 2rem;
}

.hb-rlw-unsubscribe-body p {
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hb-rlw-unsubscribe-close {
  background: linear-gradient(135deg, #33ccff, #ff3366);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.hb-rlw-unsubscribe-close:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(51, 204, 255, 0.4);
}

@keyframes hb-rlw-modal-appear {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes hb-rlw-icon-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes hb-rlw-success-bounce {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .hb-rlw-subscribe-content {
    max-width: 90%;
    margin: 0 auto;
  }
  
  .hb-rlw-subscribe-body {
    padding: 2.5rem 2rem 2rem;
  }
  
  .hb-rlw-subscribe-hero h2 {
    font-size: 1.5rem;
  }
  
  .hb-rlw-subscribe-features {
    gap: 1rem;
  }
  
  .hb-rlw-subscribe-feature {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
  
  .hb-rlw-unsubscribe-content {
    max-width: 90%;
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hb-rlw-subscribe-body {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .hb-rlw-subscribe-hero .material-icons {
    font-size: 3rem;
  }
  
  .hb-rlw-subscribe-hero h2 {
    font-size: 1.3rem;
  }
  
  .hb-rlw-subscribe-features {
    flex-direction: column;
    align-items: center;
  }
  
  .hb-rlw-subscribe-feature {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
  
  .hb-rlw-subscribe-success-actions {
    gap: 0.8rem;
  }
  
  .hb-rlw-subscribe-continue,
  .hb-rlw-subscribe-unsubscribe {
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.4rem;
  }
  
  .hb-rlw-about-container {
    flex-direction: column;
    gap: 3rem;
  }
  
  .hb-rlw-contact-container {
    flex-direction: column;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .hb-rlw-header-container {
    padding: 0 1rem;
  }
  
  .hb-rlw-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    flex-direction: column;
    align-items: center;
  }
  
  .hb-rlw-nav.active {
    display: flex;
  }
  
  .hb-rlw-nav-list {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    width: 100%;
  }
  
  .hb-rlw-mobile-toggle {
    display: block;
  }
  
  .hb-rlw-hero-content {
    padding: 0 1rem;
  }
  
  .hb-rlw-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hb-rlw-features-container,
  .hb-rlw-about-container,
  .hb-rlw-games-container,
  .hb-rlw-testimonials-container,
  .hb-rlw-faq-container,
  .hb-rlw-welcome-container,
  .hb-rlw-responsible-container,
  .hb-rlw-contact-container {
    padding: 0 0.3rem;
  }
  
  .hb-rlw-feature-card,
  .hb-rlw-game-card,
  .hb-rlw-testimonial-card,
  .hb-rlw-faq-category,
  .hb-rlw-welcome-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hb-rlw-hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hb-rlw-hero-button,
  .hb-rlw-hero-button-alt {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .hb-rlw-footer-main {
    flex-direction: column;
    gap: 2rem;
  }
  
  .hb-rlw-footer-links {
    width: 100%;
    justify-content: space-between;
  }
  
  .hb-rlw-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .hb-rlw-cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .hb-rlw-age-partners {
    gap: 1rem;
  }
  
  .hb-rlw-age-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hb-rlw-age-confirm,
  .hb-rlw-age-decline {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hb-rlw-hero-content h1 {
    font-size: 2rem;
  }
  
  .hb-rlw-hero-content p {
    font-size: 1.1rem;
  }
  
  .hb-rlw-features,
  .hb-rlw-about,
  .hb-rlw-games,
  .hb-rlw-testimonials,
  .hb-rlw-faq,
  .hb-rlw-welcome,
  .hb-rlw-responsible,
  .hb-rlw-contact {
    padding: 4rem 0;
  }
  
  .hb-rlw-feature-card,
  .hb-rlw-game-card,
  .hb-rlw-testimonial-card,
  .hb-rlw-faq-category,
  .hb-rlw-welcome-card {
    padding: 1.5rem;
  }
  
  .hb-rlw-contact-form-section {
    padding: 2rem;
  }
  
  .hb-rlw-modal-content {
    padding: 2rem;
  }
  
  .hb-rlw-footer-container {
    padding: 0 1rem;
  }
  
  .hb-rlw-footer-links {
    flex-direction: column;
    gap: 2rem;
  }
  
  .hb-rlw-footer-column {
    min-width: 100%;
    text-align: center;
  }
  
  .hb-rlw-scroll-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 320px) {
  .hb-rlw-header-container,
  .hb-rlw-hero-content,
  .hb-rlw-features-container,
  .hb-rlw-about-container,
  .hb-rlw-games-container,
  .hb-rlw-testimonials-container,
  .hb-rlw-faq-container,
  .hb-rlw-welcome-container,
  .hb-rlw-responsible-container,
  .hb-rlw-contact-container,
  .hb-rlw-footer-container {
    padding: 0 0.5rem;
  }
  
  .hb-rlw-feature-card,
  .hb-rlw-game-card,
  .hb-rlw-testimonial-card,
  .hb-rlw-faq-category,
  .hb-rlw-welcome-card {
    padding: 1rem;
  }
  
  .hb-rlw-contact-form-section {
    padding: 1.5rem;
  }
  
  .hb-rlw-modal-content {
    padding: 1.5rem;
  }
  
  .hb-rlw-age-content {
    padding: 2rem;
  }
  
  .hb-rlw-cookie-content {
    padding: 1rem;
  }
}

.hbpage-subscribe-main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

.hbpage-subscribe-hero {
  background: linear-gradient(135deg, #ff3366, #cc33ff);
  padding: 4rem 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hbpage-subscribe-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="newsletter" width="100" height="100" patternUnits="userSpaceOnUse"><rect width="100" height="100" fill="rgba(255,255,255,0.05)"/><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23newsletter)"/></svg>');
  animation: hbpage-float 20s linear infinite;
}

.hbpage-subscribe-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hbpage-subscribe-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #ffffff, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hbpage-subscribe-hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.9;
}

.hbpage-subscribe-form-section {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.hbpage-subscribe-content {
  max-width: 600px;
  margin: 0 auto;
}

.hbpage-subscribe-form-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hbpage-subscribe-form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hbpage-subscribe-form-header .material-icons {
  font-size: 4rem;
  color: #ffcc00;
  margin-bottom: 1rem;
  display: block;
}

.hbpage-subscribe-form-header h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.hbpage-subscribe-form-header p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

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

.hbpage-subscribe-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hbpage-subscribe-form-group label {
  color: white;
  font-weight: 500;
}

.hbpage-subscribe-form-group input {
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hbpage-subscribe-form-group input:focus {
  outline: none;
  border-color: #33ccff;
  box-shadow: 0 0 0 2px rgba(51, 204, 255, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.hbpage-subscribe-form-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.hbpage-subscribe-form-hint {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  min-height: 1rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.hbpage-subscribe-form-group.invalid .hbpage-subscribe-form-hint {
  opacity: 1;
  color: #ff6b6b;
}

.hbpage-subscribe-form-group.valid .hbpage-subscribe-form-hint {
  opacity: 1;
  color: #51cf66;
}

.hbpage-subscribe-checkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.8rem;
  margin: 1rem 0;
}

.hbpage-subscribe-checkbox input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.hbpage-subscribe-checkbox label {
  color: white;
  font-weight: normal;
  line-height: 1.4;
}

.hbpage-subscribe-checkbox a {
  color: #33ccff;
  text-decoration: none;
  font-weight: bold;
}

.hbpage-subscribe-checkbox a:hover {
  text-decoration: underline;
}

.hbpage-subscribe-submit {
  background: linear-gradient(135deg, #33ccff, #ff3366);
  color: white;
  padding: 1.2rem 2rem;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.hbpage-subscribe-submit:not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(51, 204, 255, 0.4);
}

.hbpage-subscribe-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.hbpage-subscribe-success {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hbpage-subscribe-success-header {
  margin-bottom: 2rem;
}

.hbpage-subscribe-success-header .material-icons {
  font-size: 4rem;
  color: #51cf66;
  margin-bottom: 1rem;
  display: block;
}

.hbpage-subscribe-success-header h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.hbpage-subscribe-success p {
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hbpage-subscribe-success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hbpage-subscribe-home-btn,
.hbpage-subscribe-unsubscribe-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.hbpage-subscribe-home-btn {
  background: linear-gradient(135deg, #33ccff, #ff3366);
  color: white;
}

.hbpage-subscribe-home-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(51, 204, 255, 0.4);
}

.hbpage-subscribe-unsubscribe-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hbpage-subscribe-unsubscribe-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.hbpage-subscribe-benefits {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.hbpage-subscribe-benefits h2 {
  text-align: center;
  color: white;
  margin-bottom: 4rem;
  font-size: 2.5rem;
  background: linear-gradient(45deg, #33ccff, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hbpage-subscribe-benefit {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 300px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.hbpage-subscribe-benefit:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hbpage-subscribe-benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #ff3366, #cc33ff);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2.5rem;
}

.hbpage-subscribe-benefit h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.hbpage-subscribe-benefit p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.hbpage-subscribe-community {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(51, 204, 255, 0.1), rgba(255, 51, 102, 0.1));
}

.hbpage-subscribe-community-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hbpage-subscribe-community-text {
  flex: 1;
  color: white;
}

.hbpage-subscribe-community-text h2 {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  background: linear-gradient(45deg, #ffcc00, #33ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hbpage-subscribe-community-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hbpage-subscribe-community-list {
  list-style: none;
}

.hbpage-subscribe-community-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.hbpage-subscribe-community-list .material-icons {
  color: #51cf66;
  flex-shrink: 0;
}

.hbpage-subscribe-community-visual {
  flex: 1;
  position: relative;
  text-align: center;
}

.hbpage-subscribe-community-orb {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #ff3366, #cc33ff);
  border-radius: 50%;
  margin: 0 auto;
  filter: blur(40px);
  opacity: 0.6;
  animation: hbpage-pulse 3s ease-in-out infinite;
}

.hbpage-subscribe-community-visual .material-icons {
  font-size: 8rem;
  color: #ffcc00;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: hbpage-bounce 2s ease-in-out infinite;
}

.hbpage-subscribe-unsubscribe-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.hbpage-subscribe-unsubscribe-modal.active {
  opacity: 1;
  visibility: visible;
}

.hbpage-subscribe-unsubscribe-content {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  padding: 2.5rem;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  color: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hbpage-subscribe-unsubscribe-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hbpage-subscribe-unsubscribe-header .material-icons:first-child {
  font-size: 3rem;
  color: #ff6b6b;
}

.hbpage-subscribe-unsubscribe-header h3 {
  margin: 0;
  flex: 1;
  text-align: center;
}

.hbpage-subscribe-unsubscribe-close {
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hbpage-subscribe-unsubscribe-close:hover {
  color: white;
  transform: rotate(90deg);
}

.hbpage-subscribe-unsubscribe-body {
  margin-bottom: 2rem;
}

.hbpage-subscribe-unsubscribe-body p {
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hbpage-subscribe-unsubscribe-confirm {
  background: linear-gradient(135deg, #33ccff, #ff3366);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.hbpage-subscribe-unsubscribe-confirm:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(51, 204, 255, 0.4);
}

@keyframes hbpage-float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-20px) rotate(360deg);
  }
}

@keyframes hbpage-bounce {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -60%) scale(1.1);
  }
}

@keyframes hbpage-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@media (max-width: 896px) {
  .hbpage-subscribe-main {
    margin-top: 85px;
    min-height: calc(100vh - 85px);
  }
}

@media (max-width: 768px) {
  .hbpage-subscribe-hero {
    padding: 3rem 0;
  }
  
  .hbpage-subscribe-hero h1 {
    font-size: 2.5rem;
  }
  
  .hbpage-subscribe-hero p {
    font-size: 1.1rem;
  }
  
  .hbpage-subscribe-form-section,
  .hbpage-subscribe-benefits,
  .hbpage-subscribe-community {
    padding: 4rem 0;
  }
  
  .hbpage-subscribe-container {
    padding: 0 1rem;
  }
  
  .hbpage-subscribe-form-container,
  .hbpage-subscribe-success {
    padding: 2rem;
  }
  
  .hbpage-subscribe-community-content {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }
  
  .hbpage-subscribe-success-actions {
    flex-direction: column;
  }
  
  .hbpage-subscribe-home-btn,
  .hbpage-subscribe-unsubscribe-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hbpage-subscribe-hero h1 {
    font-size: 2rem;
  }
  
  .hbpage-subscribe-benefits-grid {
    flex-direction: column;
  }
  
  .hbpage-subscribe-benefit {
    flex: 1 1 100%;
  }
  
  .hbpage-subscribe-community-visual {
    display: none;
  }
}

.hbpage-404-main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

.hbpage-404-hero {
  width: 100%;
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  position: relative;
  overflow: hidden;
}

.hbpage-404-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 51, 102, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(51, 204, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255, 204, 0, 0.1) 0%, transparent 50%);
  animation: hbpage-pulse 4s ease-in-out infinite;
}

.hbpage-404-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hbpage-404-content {
  text-align: center;
  color: white;
  margin-bottom: 4rem;
}

.hbpage-404-animation {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
}

.hbpage-404-animation .material-icons {
  font-size: 8rem;
  color: #ff3366;
  position: relative;
  z-index: 3;
  animation: hbpage-bounce 2s ease-in-out infinite;
}

.hbpage-404-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.7;
  animation: hbpage-orb-float 3s ease-in-out infinite;
}

.hbpage-404-orb-1 {
  width: 100px;
  height: 100px;
  background: #33ccff;
  top: 20px;
  left: 20px;
  animation-delay: 0s;
}

.hbpage-404-orb-2 {
  width: 80px;
  height: 80px;
  background: #ffcc00;
  top: 60px;
  right: 30px;
  animation-delay: 1s;
}

.hbpage-404-orb-3 {
  width: 60px;
  height: 60px;
  background: #ff3366;
  bottom: 40px;
  left: 70px;
  animation-delay: 2s;
}

.hbpage-404-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #ff3366, #33ccff, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hbpage-text-glow 2s ease-in-out infinite;
}

.hbpage-404-content p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  opacity: 0.9;
}

.hbpage-404-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hbpage-404-home-btn,
.hbpage-404-contact-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.5rem;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.hbpage-404-home-btn {
  background: linear-gradient(135deg, #ff3366, #9933ff);
  color: white;
}

.hbpage-404-home-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 51, 102, 0.4);
}

.hbpage-404-contact-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.hbpage-404-contact-btn:hover {
  background: white;
  color: #1a1a2e;
  transform: translateY(-5px);
}

.hbpage-404-features {
  text-align: center;
  color: white;
}

.hbpage-404-features h2 {
  margin-bottom: 3rem;
  font-size: 2.5rem;
  background: linear-gradient(45deg, #33ccff, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hbpage-404-feature {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  flex: 1 1 250px;
  max-width: 300px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.hbpage-404-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hbpage-404-feature .material-icons {
  font-size: 3rem;
  color: #ffcc00;
  margin-bottom: 1.5rem;
  display: block;
}

.hbpage-404-feature h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  min-height: auto;
}

.hbpage-404-feature p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

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

@keyframes hbpage-orb-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(10px, -15px) scale(1.1);
  }
  66% {
    transform: translate(-5px, 10px) scale(0.9);
  }
}

@keyframes hbpage-text-glow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(255, 51, 102, 0.5);
  }
  50% {
    text-shadow: 0 0 30px rgba(51, 204, 255, 0.7), 0 0 40px rgba(255, 204, 0, 0.5);
  }
}

@keyframes hbpage-pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

@media (max-width: 768px) {
  .hbpage-404-hero {
    padding: 3rem 0;
  }
  
  .hbpage-404-container {
    padding: 0 1rem;
  }
  
  .hbpage-404-content h1 {
    font-size: 3rem;
  }
  
  .hbpage-404-content p {
    font-size: 1.1rem;
  }
  
  .hbpage-404-animation {
    width: 150px;
    height: 150px;
  }
  
  .hbpage-404-animation .material-icons {
    font-size: 6rem;
  }
  
  .hbpage-404-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hbpage-404-home-btn,
  .hbpage-404-contact-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .hbpage-404-features h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hbpage-404-content h1 {
    font-size: 2.5rem;
  }
  
  .hbpage-404-animation {
    width: 120px;
    height: 120px;
  }
  
  .hbpage-404-animation .material-icons {
    font-size: 5rem;
  }
  
  .hbpage-404-feature {
    flex: 1 1 100%;
  }
}

.hbpage-responsible-main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

.hbpage-responsible-hero {
  background: linear-gradient(135deg, #00cc99, #3366ff);
  padding: 4rem 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hbpage-responsible-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaf" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M50,20 C60,10 80,15 80,30 C80,45 60,50 50,60 C40,50 20,45 20,30 C20,15 40,10 50,20 Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23leaf)"/></svg>');
  animation: hbpage-float 30s linear infinite;
}

.hbpage-responsible-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hbpage-responsible-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hbpage-responsible-hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.9;
}

.hbpage-responsible-content {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.hbpage-responsible-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.hbpage-responsible-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 350px;
  max-width: 450px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hbpage-responsible-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.hbpage-responsible-card:hover::before {
  transform: translateX(100%);
}

.hbpage-responsible-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hbpage-responsible-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #00cc99, #3366ff);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.hbpage-responsible-card:hover .hbpage-responsible-icon {
  transform: scale(1.1) rotate(10deg);
  background: linear-gradient(135deg, #ff3366, #ffcc00);
}

.hbpage-responsible-card h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  min-height: 3.5rem;
}

.hbpage-responsible-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.hbpage-responsible-resources {
  text-align: center;
  margin-bottom: 4rem;
}

.hbpage-responsible-resources h2 {
  color: white;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.hbpage-responsible-partners {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hbpage-responsible-partner {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.2rem 2rem;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hbpage-responsible-partner:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hbpage-responsible-partner .material-icons {
  color: #00cc99;
}

.hbpage-responsible-contact {
  display: flex;
  justify-content: center;
}

.hbpage-responsible-contact-card {
  background: linear-gradient(135deg, #ff3366, #9933ff);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  color: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hbpage-responsible-contact-card .material-icons {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
  color: #ffcc00;
}

.hbpage-responsible-contact-card h3 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.hbpage-responsible-contact-card p {
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.9;
}

.hbpage-responsible-contact-btn {
  display: inline-block;
  background: white;
  color: #ff3366;
  padding: 1rem 2.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.hbpage-responsible-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

@keyframes hbpage-float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@media (max-width: 768px) {
  .hbpage-responsible-hero {
    padding: 3rem 0;
  }
  
  .hbpage-responsible-hero h1 {
    font-size: 2.5rem;
  }
  
  .hbpage-responsible-hero p {
    font-size: 1.1rem;
  }
  
  .hbpage-responsible-content {
    padding: 4rem 0;
  }
  
  .hbpage-responsible-container {
    padding: 0 1rem;
  }
  
  .hbpage-responsible-card {
    padding: 2rem 1.5rem;
  }
  
  .hbpage-responsible-partners {
    gap: 1rem;
  }
  
  .hbpage-responsible-partner {
    padding: 1rem 1.5rem;
  }
  
  .hbpage-responsible-contact-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .hbpage-responsible-hero h1 {
    font-size: 2rem;
  }
  
  .hbpage-responsible-card {
    flex: 1 1 100%;
  }
  
  .hbpage-responsible-partners {
    flex-direction: column;
    align-items: center;
  }
  
  .hbpage-responsible-partner {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

.hbpage-cookie-main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

.hbpage-cookie-hero {
  background: linear-gradient(135deg, #ff9933, #cc33ff);
  padding: 4rem 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hbpage-cookie-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hbpage-cookie-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hbpage-cookie-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #ffffff, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hbpage-cookie-hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.9;
}

.hbpage-cookie-content {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.hbpage-cookie-steps {
  max-width: 800px;
  margin: 0 auto 4rem;
  position: relative;
}

.hbpage-cookie-steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 40px;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #33ccff, #ff3366);
  border-radius: 2px;
}

.hbpage-cookie-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  opacity: 0;
  transform: translateX(-50px);
  animation: hbpage-slideIn 0.6s ease forwards;
}

.hbpage-cookie-step:nth-child(1) { animation-delay: 0.1s; }
.hbpage-cookie-step:nth-child(2) { animation-delay: 0.2s; }
.hbpage-cookie-step:nth-child(3) { animation-delay: 0.3s; }
.hbpage-cookie-step:nth-child(4) { animation-delay: 0.4s; }
.hbpage-cookie-step:nth-child(5) { animation-delay: 0.5s; }
.hbpage-cookie-step:nth-child(6) { animation-delay: 0.6s; }
.hbpage-cookie-step:nth-child(7) { animation-delay: 0.7s; }
.hbpage-cookie-step:nth-child(8) { animation-delay: 0.8s; }
.hbpage-cookie-step:nth-child(9) { animation-delay: 0.9s; }

.hbpage-cookie-step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #33ccff, #ff3366);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(51, 204, 255, 0.3);
}

.hbpage-cookie-step-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.hbpage-cookie-step-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hbpage-cookie-step-content h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  min-height: auto;
}

.hbpage-cookie-step-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.hbpage-cookie-actions {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hbpage-cookie-action-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 400px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.hbpage-cookie-action-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hbpage-cookie-action-card .material-icons {
  font-size: 3rem;
  color: #ffcc00;
  margin-bottom: 1.5rem;
  display: block;
}

.hbpage-cookie-action-card h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.hbpage-cookie-action-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
  min-height: 110px;
}

.hbpage-cookie-action-card a {
  color: #33ccff;
  text-decoration: none;
  font-weight: bold;
}

.hbpage-cookie-manage-btn,
.hbpage-cookie-contact-btn {
  background: linear-gradient(135deg, #33ccff, #ff3366);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.hbpage-cookie-manage-btn:hover,
.hbpage-cookie-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(51, 204, 255, 0.4);
}

@keyframes hbpage-slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .hbpage-cookie-hero {
    padding: 3rem 0;
  }
  
  .hbpage-cookie-hero h1 {
    font-size: 2.5rem;
  }
  
  .hbpage-cookie-hero p {
    font-size: 1.1rem;
  }
  
  .hbpage-cookie-content {
    padding: 4rem 0;
  }
  
  .hbpage-cookie-container {
    padding: 0 1rem;
  }
  
  .hbpage-cookie-steps::before {
    left: 30px;
  }
  
  .hbpage-cookie-step {
    gap: 1rem;
  }
  
  .hbpage-cookie-step-number {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
  
  .hbpage-cookie-step-content {
    padding: 1.5rem;
  }
  
  .hbpage-cookie-action-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hbpage-cookie-hero h1 {
    font-size: 2rem;
  }
  
  .hbpage-cookie-step {
    flex-direction: column;
    text-align: center;
  }
  
  .hbpage-cookie-step-number {
    align-self: center;
  }
  
  .hbpage-cookie-steps::before {
    display: none;
  }
  
  .hbpage-cookie-actions {
    flex-direction: column;
  }
  
  .hbpage-cookie-action-card {
    flex: 1 1 100%;
  }
}

.hbpage-terms-main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

.hbpage-terms-hero {
  background: linear-gradient(135deg, #33ccff, #ff9933);
  padding: 4rem 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hbpage-terms-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
}

.hbpage-terms-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hbpage-terms-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hbpage-terms-hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.9;
}

.hbpage-terms-content {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

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

.hbpage-terms-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.hbpage-terms-header {
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  color: white;
  transition: all 0.3s ease;
  position: relative;
}

.hbpage-terms-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(135deg, #ff3366, #ffcc00);
  transition: all 0.3s ease;
}

.hbpage-terms-header:hover::before {
  width: 10px;
}

.hbpage-terms-header .material-icons:first-child {
  font-size: 2rem;
  color: #ffcc00;
  flex-shrink: 0;
}

.hbpage-terms-header h2 {
  margin: 0;
  flex: 1;
  font-size: 1.4rem;
  min-height: auto;
}

.hbpage-terms-header .material-icons:last-child {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: #33ccff;
}

.hbpage-terms-item.active .hbpage-terms-header .material-icons:last-child {
  transform: rotate(180deg);
}

.hbpage-terms-body {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.1);
}

.hbpage-terms-item.active .hbpage-terms-body {
  padding: 2rem;
  max-height: 500px;
}

.hbpage-terms-body p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.hbpage-terms-body a {
  color: #33ccff;
  text-decoration: none;
  font-weight: bold;
}

.hbpage-terms-body a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hbpage-terms-hero {
    padding: 3rem 0;
  }
  
  .hbpage-terms-hero h1 {
    font-size: 2.5rem;
  }
  
  .hbpage-terms-hero p {
    font-size: 1.1rem;
  }
  
  .hbpage-terms-content {
    padding: 4rem 0;
  }
  
  .hbpage-terms-container {
    padding: 0 1rem;
  }
  
  .hbpage-terms-header {
    padding: 1.5rem;
  }
  
  .hbpage-terms-header h2 {
    font-size: 1.2rem;
  }
  
  .hbpage-terms-item.active .hbpage-terms-body {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hbpage-terms-hero h1 {
    font-size: 2rem;
  }
  
  .hbpage-terms-header {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .hbpage-terms-header h2 {
    font-size: 1.1rem;
  }
}

.hbpage-privacy-main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

.hbpage-privacy-hero {
  background: linear-gradient(135deg, #ff3366, #9933ff);
  padding: 4rem 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hbpage-privacy-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: hbpage-float 20s linear infinite;
}

.hbpage-privacy-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hbpage-privacy-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #ffffff, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hbpage-privacy-hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.9;
}

.hbpage-privacy-content {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

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

.hbpage-privacy-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  flex: 1 1 350px;
  max-width: 450px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hbpage-privacy-card::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.5s ease;
}

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

.hbpage-privacy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hbpage-privacy-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #33ccff, #ff3366);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2.5rem;
}

.hbpage-privacy-card h2 {
  color: white;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.5rem;
  min-height: 3.5rem;
}

.hbpage-privacy-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

.hbpage-privacy-card a {
  color: #33ccff;
  text-decoration: none;
  font-weight: bold;
}

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

@keyframes hbpage-float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

@media (max-width: 768px) {
  .hbpage-privacy-hero {
    padding: 3rem 0;
  }
  
  .hbpage-privacy-hero h1 {
    font-size: 2.5rem;
  }
  
  .hbpage-privacy-hero p {
    font-size: 1.1rem;
  }
  
  .hbpage-privacy-content {
    padding: 4rem 0;
  }
  
  .hbpage-privacy-container {
    padding: 0 1rem;
  }
  
  .hbpage-privacy-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hbpage-privacy-hero h1 {
    font-size: 2rem;
  }
  
  .hbpage-privacy-card {
    flex: 1 1 100%;
  }
  
  .hbpage-privacy-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
}