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

:root {
  --jhd-gradient-primary: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  --jhd-gradient-secondary: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  --jhd-gradient-tertiary: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
  --jhd-gradient-quaternary: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
  --jhd-color-foreground: #2d3436;
  --jhd-color-background: #ffffff;
  --jhd-color-accent: #6c5ce7;
  --jhd-color-light: #dfe6e9;
  --jhd-color-success: #00b894;
  --jhd-color-warning: #fdcb6e;
  --jhd-color-error: #d63031;
  --jhd-shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.1);
  --jhd-shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
  --jhd-shadow-strong: 0 12px 35px rgba(0, 0, 0, 0.2);
  --jhd-border-radius-sm: 8px;
  --jhd-border-radius-md: 12px;
  --jhd-border-radius-lg: 20px;
  --jhd-transition-normal: all 0.3s ease;
  --jhd-transition-slow: all 0.5s ease;
}

body {
  font-family: 'Quattrocento Sans', sans-serif;
  color: var(--jhd-color-foreground);
  background-color: var(--jhd-color-background);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

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

h2 {
  font-size: 2.5rem;
  min-height: 3rem;
}

h3 {
  font-size: 1.75rem;
  min-height: 2.1rem;
}

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

a {
  color: var(--jhd-color-accent);
  text-decoration: none;
  transition: var(--jhd-transition-normal);
}

a:hover {
  color: #6a11cb;
}

button {
  cursor: pointer;
  border: none;
  font-family: 'Quattrocento Sans', sans-serif;
  transition: var(--jhd-transition-normal);
}

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

.jhd_age-verification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jhd_age-content {
  background: var(--jhd-color-background);
  padding: 2.5rem;
  border-radius: var(--jhd-border-radius-lg);
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--jhd-shadow-strong);
}

.jhd_age-content h2 {
  color: #6a11cb;
  margin-bottom: 1rem;
}

.jhd_age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.jhd_age-buttons button {
  padding: 0.75rem 1.5rem;
  border-radius: var(--jhd-border-radius-md);
  font-weight: 600;
}

.jhd_age-confirm {
  background: var(--jhd-gradient-primary);
  color: white;
}

.jhd_age-decline {
  background: var(--jhd-color-light);
  color: var(--jhd-color-foreground);
}

.jhd_age-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  background: var(--jhd-color-foreground);
  padding: 1rem;
  border-radius: var(--jhd-border-radius-md);
}

.jhd_cookies-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--jhd-color-foreground);
  color: var(--jhd-color-background);
  padding: 1rem;
  z-index: 9998;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.jhd_cookies-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.jhd_cookies-content p {
  margin-bottom: 0;
  flex: 1;
  min-width: 280px;
}

.jhd_cookies-accept {
  background: var(--jhd-gradient-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: var(--jhd-border-radius-md);
}

.jhd_navigation-section {
  background: var(--jhd-gradient-primary);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--jhd-shadow-medium);
}

.jhd_navigation-container {
  max-width: 1470px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.jhd_navigation-logo {
  width: 40px;
  height: 40px;
}

.jhd_navigation-title {
  font-family: 'Cinzel', serif;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.jhd_navigation-menu {
  display: flex;
  gap: 2rem;
}

.jhd_navigation-link {
  color: white;
  font-weight: 500;
  position: relative;
}

.jhd_navigation-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: var(--jhd-transition-normal);
}

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

.jhd_navigation-toggle {
  display: none;
  background: transparent;
  color: white;
  font-size: 1.5rem;
}

.jhd_welcome-section {
  background: var(--jhd-gradient-primary);
  color: white;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.jhd_welcome-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/jhd-engine/jhd-img/jhd-background-img-1.webp') center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

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

.jhd_welcome-content h1 {
  margin-bottom: 1.5rem;
}

.jhd_welcome-content > p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

.jhd_welcome-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--jhd-border-radius-lg);
  padding: 2rem;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--jhd-transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.jhd_welcome-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--jhd-shadow-strong);
}

.jhd_welcome-card h3 {
  margin-bottom: 1rem;
  color: white;
}

.jhd_welcome-card p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.jhd_welcome-card i {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.jhd_welcome-link {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--jhd-border-radius-md);
  font-weight: 600;
  transition: var(--jhd-transition-normal);
}

.jhd_welcome-link:hover {
  background: rgba(255, 255, 255, 0.3);
}

.jhd_about-section {
  padding: 5rem 1.5rem;
  background: var(--jhd-color-background);
}

.jhd_about-container {
  max-width: 1470px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.jhd_about-block {
  border-radius: var(--jhd-border-radius-lg);
  overflow: hidden;
  box-shadow: var(--jhd-shadow-soft);
}

.jhd_about-imageblock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--jhd-transition-slow);
}

.jhd_about-imageblock:hover img {
  transform: scale(1.05);
}

.jhd_about-textblock {
  padding: 2.5rem;
  background: var(--jhd-color-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jhd_about-textblock h2 {
  color: #6a11cb;
  margin-bottom: 1rem;
}

.jhd_about-features {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.jhd_about-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: var(--jhd-border-radius-md);
}

.jhd_about-feature i {
  color: #6a11cb;
  font-size: 1.25rem;
}

.jhd_about-fullblock {
  grid-column: 1 / -1;
  padding: 3rem;
  background: var(--jhd-gradient-primary);
  color: white;
  text-align: center;
}

.jhd_about-fullblock h2 {
  color: white;
}

.jhd_about-fullblock .jhd_about-features {
  justify-content: center;
}

.jhd_about-fullblock .jhd_about-feature {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.jhd_about-fullblock .jhd_about-feature i {
  color: white;
}

.jhd_about-link {
  display: inline-block;
  background: white;
  color: #6a11cb;
  padding: 1rem 2rem;
  border-radius: var(--jhd-border-radius-md);
  font-weight: 600;
  margin-top: 1.5rem;
  transition: var(--jhd-transition-normal);
}

.jhd_about-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--jhd-shadow-medium);
}

.jhd_advantages-section {
  padding: 5rem 1.5rem;
  background: var(--jhd-gradient-secondary);
  color: white;
  position: relative;
  overflow: hidden;
}

.jhd_advantages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/jhd-engine/jhd-img/jhd-background-img-2.webp') center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

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

.jhd_advantages-content h2 {
  margin-bottom: 3rem;
}

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

.jhd_advantages-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--jhd-border-radius-lg);
  padding: 2rem;
  flex: 1;
  min-width: 220px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--jhd-transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.jhd_advantages-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: var(--jhd-shadow-strong);
}

.jhd_advantages-card i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.jhd_advantages-card h3 {
  margin-bottom: 1rem;
  color: white;
}

.jhd_platforms-section {
  padding: 5rem 1.5rem;
  background: var(--jhd-color-background);
}

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

.jhd_platforms-container h2 {
  color: #6a11cb;
  margin-bottom: 1rem;
}

.jhd_platforms-container > p {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.jhd_platforms-highlight {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem auto;
}

.jhd_platforms-highlight a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.jhd_platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.jhd_platform-card {
  width: 100%;
  min-width: 275px;
  max-width: 290px;
  background: var(--jhd-color-warning);
  border-radius: var(--jhd-border-radius-lg);
  padding: 2rem;
  box-shadow: var(--jhd-shadow-soft);
  transition: var(--jhd-transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.jhd_platform-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--jhd-shadow-medium);
}

.jhd_platform-premium {
  border: 2px solid #6a11cb;
}

.jhd_platform-badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  background: var(--jhd-gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--jhd-border-radius-md);
  font-size: 0.875rem;
  font-weight: 600;
}

.jhd_platform-card img {
  height: 60px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
}

.jhd_platform-card h3 {
  color: #6a11cb;
  margin-bottom: 1rem;
}

.jhd_platform-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.jhd_platform-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.jhd_platform-features i {
  color: #00b894;
}

.jhd_platform-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.jhd_platform-score {
  font-weight: 700;
  color: #6a11cb;
}

.jhd_platform-stars {
  color: #fdcb6e;
}

.jhd_platform-link {
  background: var(--jhd-gradient-primary);
  color: white;
  padding: 0.75rem;
  border-radius: var(--jhd-border-radius-md);
  font-weight: 600;
  text-align: center;
  transition: var(--jhd-transition-normal);
}

.jhd_platform-link:hover {
  opacity: 0.9;
  color: white;
  transform: translateY(-2px);
}

.jhd_subscribe-section {
  padding: 5rem 1.5rem;
  background: var(--jhd-gradient-tertiary);
  color: white;
  position: relative;
  overflow: hidden;
}

.jhd_subscribe-container {
  max-width: 1470px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.jhd_subscribe-content h2 {
  margin-bottom: 1.5rem;
}

.jhd_subscribe-content > p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.jhd_subscribe-benefits {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.jhd_subscribe-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.25rem;
  border-radius: var(--jhd-border-radius-md);
}

.jhd_subscribe-benefit i {
  font-size: 1.5rem;
}

.jhd_subscribe-formcontainer {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--jhd-border-radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.jhd_form-group {
  display: flex;
  flex-direction: column;
}

.jhd_form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.jhd_form-group input {
  padding: 0.75rem;
  border-radius: var(--jhd-border-radius-md);
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transition: var(--jhd-transition-normal);
}

.jhd_form-group input:focus {
  outline: none;
  border-color: white;
  background: rgba(255, 255, 255, 0.3);
}

.jhd_form-error {
  color: #ff6b6b;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  min-height: 1.25rem;
}

.jhd_form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.jhd_form-check input {
  margin-top: 0.25rem;
}

.jhd_form-check label {
  font-size: 0.875rem;
  line-height: 1.4;
}

.jhd_subscribe-button {
  background: white;
  color: #00b09b;
  padding: 1rem;
  border-radius: var(--jhd-border-radius-md);
  font-weight: 600;
  font-size: 1.125rem;
  transition: var(--jhd-transition-normal);
}

.jhd_subscribe-button:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: var(--jhd-shadow-medium);
}

.jhd_subscribe-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.jhd_subscribe-success {
  text-align: center;
  display: none;
}

.jhd_subscribe-success i {
  font-size: 4rem;
  color: white;
  margin-bottom: 1.5rem;
}

.jhd_subscribe-success h3 {
  margin-bottom: 1rem;
}

.jhd_success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.jhd_success-actions button {
  padding: 0.75rem 1.5rem;
  border-radius: var(--jhd-border-radius-md);
  font-weight: 600;
}

.jhd_success-unsubscribe {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.jhd_success-change {
  background: white;
  color: #00b09b;
}

.jhd_subscribe-graphic {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.jhd_subscribe-graphic svg {
  width: 150px;
  height: 150px;
}

.jhd_svg-path {
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: jhd_draw 3s infinite alternate;
}

.jhd_svg-circle {
  fill: white;
  opacity: 0.5;
  animation: jhd_pulse 2s infinite alternate;
}

.jhd_subscribe-addons {
  grid-column: 1 / -1;
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}

.jhd_subscribe-addon {
  text-align: center;
  max-width: 250px;
}

.jhd_subscribe-addon i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.jhd_subscribe-addon h4 {
  margin-bottom: 0.5rem;
  color: white;
}

.jhd_premium-section {
  padding: 5rem 1.5rem;
  background: var(--jhd-gradient-quaternary);
  color: var(--jhd-color-foreground);
  position: relative;
  overflow: hidden;
}

.jhd_premium-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/jhd-engine/jhd-img/jhd-background-img-3.webp') center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}

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

.jhd_premium-content h2 {
  color: #6a11cb;
  margin-bottom: 1.5rem;
}

.jhd_premium-content > p {
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

.jhd_premium-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--jhd-border-radius-lg);
  padding: 2rem;
  flex: 1;
  min-width: 220px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--jhd-transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

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

.jhd_premium-card i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #6a11cb;
}

.jhd_premium-card h3 {
  margin-bottom: 1rem;
  color: #6a11cb;
}

.jhd_premium-link {
  display: inline-block;
  background: var(--jhd-gradient-primary);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: var(--jhd-border-radius-md);
  font-weight: 600;
  font-size: 1.125rem;
  transition: var(--jhd-transition-normal);
}

.jhd_premium-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--jhd-shadow-medium);
}

.jhd_faq-section {
  padding: 5rem 1.5rem;
  background: var(--jhd-color-background);
}

.jhd_faq-content {
  max-width: 1470px;
  margin: 0 auto;
}

.jhd_faq-content h2 {
  text-align: center;
  color: #6a11cb;
  margin-bottom: 3rem;
}

.jhd_faq-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.jhd_faq-block {
  background: var(--jhd-color-light);
  border-radius: var(--jhd-border-radius-lg);
  padding: 2rem;
}

.jhd_faq-block h3 {
  color: #6a11cb;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.jhd_faq-block h3 i {
  font-size: 1.5rem;
}

.jhd_faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.jhd_faq-question {
  width: 100%;
  text-align: left;
  background: none;
  padding: 1rem 0;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.jhd_faq-question i {
  transition: var(--jhd-transition-normal);
}

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

.jhd_faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.jhd_faq-answer.active {
  max-height: 500px;
}

.jhd_faq-answer p {
  padding-bottom: 1rem;
}

.jhd_faq-contact {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--jhd-color-light);
}

.jhd_faq-contact p {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.jhd_faq-contact button {
  background: var(--jhd-gradient-primary);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: var(--jhd-border-radius-md);
  font-weight: 600;
}

.jhd_responsible-section {
  padding: 5rem 1.5rem;
  background: var(--jhd-color-background);
}

.jhd_responsible-container {
  max-width: 1470px;
  margin: 0 auto;
}

.jhd_responsible-content {
  background: var(--jhd-color-light);
  border-radius: var(--jhd-border-radius-lg);
  padding: 3rem;
  margin-bottom: 2rem;
}

.jhd_responsible-content h2 {
  color: #6a11cb;
  margin-bottom: 1.5rem;
  text-align: center;
}

.jhd_responsible-content p {
  margin-bottom: 1.5rem;
}

.jhd_responsible-content a {
  color: #6a11cb;
  font-weight: 600;
}

.jhd_responsible-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.jhd_responsible-partner {
  width: 100%;
  max-width: 226px;
  height: 100%;
  min-height: 92px;
  max-height: 93px;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(69, 70, 69);
  padding: 1rem;
  border-radius: var(--jhd-border-radius-md);
  box-shadow: var(--jhd-shadow-soft);
  transition: var(--jhd-transition-normal);
}

.jhd_responsible-partner:hover {
  transform: translateY(-5px);
  box-shadow: var(--jhd-shadow-medium);
}

.jhd_contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--jhd-transition-normal);
}

.jhd_contact-modal.active {
  opacity: 1;
  visibility: visible;
}

.jhd_contact-container {
  position: relative;
  background: white;
  border-radius: var(--jhd-border-radius-lg);
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.jhd_contact-formsection {
  padding: 3rem;
}

.jhd_contact-formsection h2 {
  color: #6a11cb;
  margin-bottom: 1rem;
}

.jhd_contact-formsection > p {
  margin-bottom: 2rem;
  color: var(--jhd-color-foreground);
}

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

.jhd_contact-form .jhd_form-group input,
.jhd_contact-form .jhd_form-group textarea {
  background: var(--jhd-color-light);
  border: 2px solid transparent;
  color: var(--jhd-color-foreground);
}

.jhd_contact-form .jhd_form-group input:focus,
.jhd_contact-form .jhd_form-group textarea:focus {
  border-color: #6a11cb;
  background: white;
}

.jhd_contact-button {
  background: var(--jhd-gradient-primary);
  color: white;
  padding: 1rem;
  border-radius: var(--jhd-border-radius-md);
  font-weight: 600;
  font-size: 1.125rem;
  transition: var(--jhd-transition-normal);
}

.jhd_contact-button:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: var(--jhd-shadow-medium);
}

.jhd_contact-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.jhd_contact-info {
  background: var(--jhd-gradient-primary);
  color: white;
  padding: 3rem;
  border-radius: 0 var(--jhd-border-radius-lg) var(--jhd-border-radius-lg) 0;
}

.jhd_contact-info h3 {
  color: white;
  margin-bottom: 2rem;
}

.jhd_contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.jhd_contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.jhd_contact-detail i {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.jhd_contact-detail h4 {
  color: white;
  margin-bottom: 0.25rem;
}

.jhd_contact-detail a {
  color: white;
}

.jhd_contact-faq h4 {
  color: white;
  margin-bottom: 1rem;
}

.jhd_contact-faq ul {
  list-style: none;
}

.jhd_contact-faq li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.jhd_contact-faq li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: white;
}

.jhd_contact-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  color: var(--jhd-color-warning);
  font-size: 1.5rem;
  z-index: 1;
}

.jhd_contact-info .jhd_contact-close {
  color: white;
}

.jhd_contact-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.jhd_contact-success.active {
  display: block;
}

.jhd_footer-section {
  background: var(--jhd-color-foreground);
  color: white;
  padding: 3rem 1.5rem 1.5rem;
}

.jhd_footer-container {
  max-width: 1470px;
  margin: 0 auto;
}

.jhd_footer-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.jhd_footer-brand {
  flex: 1;
  min-width: 250px;
}

.jhd_footer-title {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}

.jhd_footer-nav {
  display: flex;
  gap: 3rem;
  justify-content: space-around;
  align-items: baseline;
  flex-wrap: wrap;
}

.jhd_footer-navgroup {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.75rem;
  min-width: 150px;
}

.jhd_footer-navgroup h4 {
  color: white;
  margin-bottom: 0.5rem;
  font-family: 'Quattrocento Sans', sans-serif;
  font-weight: 600;
}

.jhd_footer-navgroup a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.jhd_footer-navgroup a:hover {
  color: white;
}

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

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

.jhd_footer-social a {
  cursor: pointer;
  color: white;
  font-size: 1.25rem;
  transition: var(--jhd-transition-normal);
}

.jhd_footer-social a:hover {
  transform: translateY(-3px);
  color: #6a11cb;
}

@keyframes jhd_draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes jhd_pulse {
  from {
    opacity: 0.5;
    transform: scale(0.95);
  }
  to {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .jhd_about-container {
    grid-template-columns: 1fr;
  }
  
  .jhd_platforms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .jhd_subscribe-container {
    grid-template-columns: 1fr;
  }
  
  .jhd_faq-blocks {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .jhd_contact-container {
    grid-template-columns: 1fr;
  }
  
  .jhd_contact-info {
    border-radius: 0 0 var(--jhd-border-radius-lg) var(--jhd-border-radius-lg);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .jhd_navigation-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--jhd-gradient-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--jhd-transition-normal);
    z-index: 999;
  }
  
  .jhd_navigation-menu.active {
    right: 0;
  }
  
  .jhd_navigation-toggle {
    display: block;
    z-index: 1000;
  }
  
  .jhd_platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .jhd_faq-blocks {
    grid-template-columns: 1fr;
  }
  
  .jhd_responsible-partners {
    gap: 1rem;
  }
  
  .jhd_responsible-partner {
    flex: 1;
    min-width: 120px;
    max-width: 140px;
  }
  
  .jhd_footer-main {
    flex-direction: column;
    gap: 2rem;
  }
  
  .jhd_footer-nav {
    gap: 2rem;
  }
  
  .jhd_footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .jhd_age-buttons {
    flex-direction: column;
  }
  
  .jhd_cookies-content {
    flex-direction: column;
    text-align: center;
  }
  
  .jhd_platforms-grid {
    grid-template-columns: 1fr;
  }
  
  .jhd_subscribe-benefits {
    flex-direction: column;
  }
  
  .jhd_success-actions {
    flex-direction: column;
  }
  
  .jhd_premium-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .jhd_premium-card {
    max-width: 100%;
  }
  
  .jhd_responsible-partners {
    flex-direction: column;
    align-items: center;
  }
  
  .jhd_responsible-partner {
    max-width: 100%;
  }
}

@media (max-width: 320px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .jhd_welcome-card,
  .jhd_advantages-card {
    min-width: 100%;
  }
  
  .jhd_footer-nav {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .jhd_footer-navgroup {
    min-width: 100%;
  }

  .jhd_subscribe-section,
  .jhd_platforms-section,
  .jhd_contact-formsection,
  .jhd_contact-info {
    padding: 5rem 0.5rem;
  }

  .jhd_contact-detail a {
    font-size: 0.8rem;
  }
}

.jhdpgs_privacy-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.jhdpgs_privacy-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jhdpgs_privacy-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/jhd-engine/jhd-img/jhd-background-img-1.webp') center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

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

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

.jhdpgs_privacy-hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.jhdpgs_privacy-hero i {
  font-size: 4rem;
  animation: jhdpgs_float 3s ease-in-out infinite;
}

.jhdpgs_privacy-content {
  padding: 4rem 1.5rem;
}

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

.jhdpgs_privacy-article {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.jhdpgs_privacy-article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #667eea, #764ba2);
  transition: width 0.3s ease;
}

.jhdpgs_privacy-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.jhdpgs_privacy-article:hover::before {
  width: 8px;
}

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

.jhdpgs_privacy-icon i {
  font-size: 2.5rem;
  color: #667eea;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jhdpgs_privacy-text h2 {
  min-height: 68px;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #2d3436;
}

.jhdpgs_privacy-text p {
  color: #636e72;
  line-height: 1.7;
}

.jhdpgs_privacy-text a {
  color: #667eea;
  font-weight: 600;
  transition: color 0.3s ease;
}

.jhdpgs_privacy-text a:hover {
  color: #764ba2;
}

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

@media (max-width: 1024px) {
  .jhdpgs_privacy-articles {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 480px) {
  .jhdpgs_privacy-hero {
    padding: 3rem 1rem;
  }
  
  .jhdpgs_privacy-hero h1 {
    font-size: 2rem;
  }
  
  .jhdpgs_privacy-content {
    padding: 2rem 1rem;
  }
  
  .jhdpgs_privacy-article {
    padding: 1.5rem;
  }
  
  .jhdpgs_privacy-text h2 {
    font-size: 1.5rem;
  }
}

.jhdpgs_terms-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
}

.jhdpgs_terms-hero {
  background: linear-gradient(135deg, #434343 0%, #000000 100%);
  color: white;
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jhdpgs_terms-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/jhd-engine/jhd-img/jhd-background-img-2.webp') center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

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

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

.jhdpgs_terms-hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.jhdpgs_terms-hero i {
  font-size: 4rem;
  animation: jhdpgs_spin 8s linear infinite;
}

.jhdpgs_terms-content {
  padding: 4rem 1.5rem;
}

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

.jhdpgs_terms-article {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.jhdpgs_terms-article::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #434343, #000000);
  transition: height 0.3s ease;
}

.jhdpgs_terms-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.jhdpgs_terms-article:hover::after {
  height: 8px;
}

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

.jhdpgs_terms-icon i {
  font-size: 2.5rem;
  color: #434343;
}

.jhdpgs_terms-text h2 {
  min-height: 68px;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #2d3436;
}

.jhdpgs_terms-text p {
  color: #636e72;
  line-height: 1.7;
}

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

@media (max-width: 1024px) {
  .jhdpgs_terms-articles {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 480px) {
  .jhdpgs_terms-hero {
    padding: 3rem 1rem;
  }
  
  .jhdpgs_terms-hero h1 {
    font-size: 2rem;
  }
  
  .jhdpgs_terms-content {
    padding: 2rem 1rem;
  }
  
  .jhdpgs_terms-article {
    padding: 1.5rem;
  }
  
  .jhdpgs_terms-text h2 {
    font-size: 1.5rem;
  }
}

.jhdpgs_cookies-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.jhdpgs_cookies-hero {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  color: white;
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jhdpgs_cookies-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/jhd-engine/jhd-img/jhd-background-img-3.webp') center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

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

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

.jhdpgs_cookies-hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.jhdpgs_cookies-hero i {
  font-size: 4rem;
  animation: jhdpgs_bounce 2s ease infinite;
}

.jhdpgs_cookies-content {
  padding: 4rem 1.5rem;
}

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

.jhdpgs_cookies-article {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.jhdpgs_cookies-article::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff9a9e, #fecfef);
  border-radius: 0 0 0 80px;
  transition: all 0.3s ease;
}

.jhdpgs_cookies-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.jhdpgs_cookies-article:hover::before {
  width: 100px;
  height: 100px;
}

.jhdpgs_cookies-icon {
  flex-shrink: 0;
  z-index: 1;
}

.jhdpgs_cookies-icon i {
  font-size: 2.5rem;
  color: #ff9a9e;
}

.jhdpgs_cookies-text {
  z-index: 1;
}

.jhdpgs_cookies-text h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #2d3436;
}

.jhdpgs_cookies-text p {
  color: #636e72;
  line-height: 1.7;
}

.jhdpgs_cookies-text a {
  color: #ff9a9e;
  font-weight: 600;
  transition: color 0.3s ease;
}

.jhdpgs_cookies-text a:hover {
  color: #fecfef;
}

@keyframes jhdpgs_bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1024px) {
  .jhdpgs_cookies-articles {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 480px) {
  .jhdpgs_cookies-hero {
    padding: 3rem 1rem;
  }
  
  .jhdpgs_cookies-hero h1 {
    font-size: 2rem;
  }
  
  .jhdpgs_cookies-content {
    padding: 2rem 1rem;
  }
  
  .jhdpgs_cookies-article {
    padding: 1.5rem;
  }
  
  .jhdpgs_cookies-text h2 {
    font-size: 1.5rem;
  }
}

.jhdpgs_responsible-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
}

.jhdpgs_responsible-hero {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jhdpgs_responsible-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/jhd-engine/jhd-img/jhd-background-img-1.webp') center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

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

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

.jhdpgs_responsible-hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.jhdpgs_responsible-hero i {
  font-size: 4rem;
  animation: jhdpgs_heartbeat 1.5s ease infinite;
}

.jhdpgs_responsible-content {
  padding: 4rem 1.5rem;
}

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

.jhdpgs_responsible-article {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.jhdpgs_responsible-article::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, #4facfe 0%, transparent 70%);
  transition: all 0.5s ease;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.jhdpgs_responsible-article:hover::after {
  width: 300px;
  height: 300px;
}

.jhdpgs_responsible-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.jhdpgs_responsible-icon {
  flex-shrink: 0;
  z-index: 1;
}

.jhdpgs_responsible-icon i {
  font-size: 2.5rem;
  color: #4facfe;
}

.jhdpgs_responsible-text {
  z-index: 1;
}

.jhdpgs_responsible-text h2 {
  min-height: 68px;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #2d3436;
}

.jhdpgs_responsible-text p {
  color: #636e72;
  line-height: 1.7;
}

@keyframes jhdpgs_heartbeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}

@media (max-width: 1024px) {
  .jhdpgs_responsible-articles {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 480px) {
  .jhdpgs_responsible-hero {
    padding: 3rem 1rem;
  }
  
  .jhdpgs_responsible-hero h1 {
    font-size: 2rem;
  }
  
  .jhdpgs_responsible-content {
    padding: 2rem 1rem;
  }
  
  .jhdpgs_responsible-article {
    padding: 1.5rem;
  }
  
  .jhdpgs_responsible-text h2 {
    font-size: 1.5rem;
  }
}

.jhdpgs_betting-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.jhdpgs_betting-hero {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jhdpgs_betting-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/jhd-engine/jhd-img/jhd-background-img-2.webp') center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

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

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

.jhdpgs_betting-hero p {
  text-align: center;
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.jhdpgs_betting-hero i {
  font-size: 4rem;
  animation: jhdpgs_rotate 3s linear infinite;
}

.jhdpgs_betting-premium {
  padding: 4rem 1.5rem;
  background: white;
}

.jhdpgs_betting-premium h2 {
  text-align: center;
  color: #f5576c;
  margin-bottom: 1rem;
}

.jhdpgs_betting-premium p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #636e72;
}

.jhdpgs_betting-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.jhdpgs_betting-feature {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  transition: transform 0.3s ease;
}

.jhdpgs_betting-feature:hover {
  transform: translateY(-5px);
}

.jhdpgs_betting-feature i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.jhdpgs_betting-feature h3 {
  min-height: 59px;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.jhdpgs_betting-platforms {
  padding: 4rem 1.5rem;
  background: #f8f9fa;
}

.jhdpgs_betting-platforms h2 {
  text-align: center;
  color: #f5576c;
  margin-bottom: 1rem;
}

.jhdpgs_betting-platforms p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #636e72;
}

.jhdpgs_betting-highlight {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.jhdpgs_betting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.jhdpgs_betting-card {
  background: var(--jhd-color-accent);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.jhdpgs_betting-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.jhdpgs_betting-premiumcard {
  border: 3px solid #f5576c;
}

.jhdpgs_betting-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  min-width: 150px;
  transform: translateX(-50%);
  background: #f5576c;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
}

.jhdpgs_betting-card img {
  height: 80px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
}

.jhdpgs_betting-card h3 {
  color: #2d3436;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.jhdpgs_betting-featureslist {
  list-style: none;
  margin-bottom: 1.5rem;
}

.jhdpgs_betting-featureslist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

.jhdpgs_betting-featureslist i {
  color: #00b894;
}

.jhdpgs_betting-rating {
  margin-bottom: 1.5rem;
}

.jhdpgs_betting-score {
  background: #f5576c;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
}

.jhdpgs_betting-link {
  display: block;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: opacity 0.3s ease;
}

.jhdpgs_betting-link:hover {
  opacity: 0.9;
  color: white;
}

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

@media (max-width: 1024px) {
  .jhdpgs_betting-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .jhdpgs_betting-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .jhdpgs_betting-hero h1 {
    font-size: 2.5rem;
  }
  
  .jhdpgs_betting-features {
    grid-template-columns: 1fr;
  }
  
  .jhdpgs_betting-highlight {
    grid-template-columns: 1fr;
  }
  
  .jhdpgs_betting-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .jhdpgs_betting-hero {
    padding: 3rem 1rem;
  }
  
  .jhdpgs_betting-hero h1 {
    font-size: 2rem;
  }
  
  .jhdpgs_betting-premium,
  .jhdpgs_betting-platforms {
    padding: 2rem 1rem;
  }
  
  .jhdpgs_betting-card {
    padding: 1.5rem;
  }
}

.jhdpgs_casino-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.jhdpgs_casino-hero {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  color: #2d3436;
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jhdpgs_casino-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/jhd-engine/jhd-img/jhd-background-img-3.webp') center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

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

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

.jhdpgs_casino-hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.jhdpgs_casino-hero i {
  font-size: 4rem;
  animation: jhdpgs_dice 2s ease infinite;
}

.jhdpgs_casino-premium {
  padding: 4rem 1.5rem;
  background: white;
}

.jhdpgs_casino-premium h2 {
  text-align: center;
  color: #a8edea;
  margin-bottom: 1rem;
}

.jhdpgs_casino-premium p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #636e72;
}

.jhdpgs_casino-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.jhdpgs_casino-feature {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  color: #2d3436;
  transition: transform 0.3s ease;
}

.jhdpgs_casino-feature:hover {
  transform: translateY(-5px) rotate(2deg);
}

.jhdpgs_casino-feature i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.jhdpgs_casino-feature h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  min-height: 58px;
}

.jhdpgs_casino-platforms {
  padding: 4rem 1.5rem;
  background: #f8f9fa;
}

.jhdpgs_casino-platforms h2 {
  text-align: center;
  color: #a8edea;
  margin-bottom: 1rem;
}

.jhdpgs_casino-platforms p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #636e72;
}

.jhdpgs_casino-highlight {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.jhdpgs_casino-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.jhdpgs_casino-card {
  background: rgb(51, 51, 51);
  border-radius: 15px;
  padding: 2rem;
  min-height: 410px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.jhdpgs_casino-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.jhdpgs_casino-premiumcard {
  border: 3px solid #a8edea;
}

.jhdpgs_casino-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  min-width: 150px;
  transform: translateX(-50%);
  background: #a8edea;
  color: #2d3436;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
}

.jhdpgs_casino-card img {
  width: 100%;
  height: 100%;
  max-height: 80px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
}

.jhdpgs_casino-card h3 {
  color: #a8edea;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.jhdpgs_casino-featureslist {
  list-style: none;
  margin-bottom: 1.5rem;
}

.jhdpgs_casino-featureslist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #a8edea;
}

.jhdpgs_casino-featureslist i {
  color: #00b894;
}

.jhdpgs_casino-rating {
  margin-bottom: 1.5rem;
}

.jhdpgs_casino-score {
  background: #a8edea;
  color: #2d3436;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
}

.jhdpgs_casino-link {
  display: block;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  color: #2d3436;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: opacity 0.3s ease;
}

.jhdpgs_casino-link:hover {
  opacity: 0.9;
  color: #2d3436;
}

@keyframes jhdpgs_dice {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
}

@media (max-width: 1024px) {
  .jhdpgs_casino-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .jhdpgs_casino-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .jhdpgs_casino-hero h1 {
    font-size: 2.5rem;
  }
  
  .jhdpgs_casino-features {
    grid-template-columns: 1fr;
  }
  
  .jhdpgs_casino-highlight {
    grid-template-columns: 1fr;
  }
  
  .jhdpgs_casino-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .jhdpgs_casino-hero {
    padding: 3rem 1rem;
  }
  
  .jhdpgs_casino-hero h1 {
    font-size: 2rem;
  }
  
  .jhdpgs_casino-premium,
  .jhdpgs_casino-platforms {
    padding: 2rem 1rem;
  }
  
  .jhdpgs_casino-card {
    padding: 1.5rem;
  }
}

.jhdpgs_404-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
}

.jhdpgs_404-hero {
  padding: 4rem 1.5rem;
  color: white;
}

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

.jhdpgs_404-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.jhdpgs_404-content > p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.jhdpgs_404-animation {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  justify-content: center;
}

.jhdpgs_404-animation i {
  font-size: 3rem;
  animation: jhdpgs_search 3s ease-in-out infinite;
}

.jhdpgs_404-animation i:nth-child(2) {
  animation-delay: 0.5s;
}

.jhdpgs_404-animation i:nth-child(3) {
  animation-delay: 1s;
}

.jhdpgs_404-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.jhdpgs_404-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: white;
}

.jhdpgs_404-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.jhdpgs_404-suggestions {
  padding: 4rem 1.5rem;
  background: white;
}

.jhdpgs_404-suggestions h2 {
  text-align: center;
  color: #0984e3;
  margin-bottom: 1rem;
}

.jhdpgs_404-suggestions > p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: #636e72;
}

.jhdpgs_404-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.jhdpgs_404-suggestion {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
  color: #2d3436;
}

.jhdpgs_404-suggestion:hover {
  background: #74b9ff;
  color: white;
  transform: translateY(-3px);
}

.jhdpgs_404-suggestion i {
  font-size: 1.5rem;
}

.jhdpgs_404-suggestion span {
  font-weight: 600;
}

@keyframes jhdpgs_search {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(0) rotate(180deg);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-20px) rotate(270deg);
    opacity: 0.7;
  }
}

@media (max-width: 1024px) {
  .jhdpgs_404-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .jhdpgs_404-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .jhdpgs_404-hero {
    padding: 3rem 1rem;
  }
  
  .jhdpgs_404-content h1 {
    font-size: 3rem;
  }
  
  .jhdpgs_404-animation {
    gap: 1rem;
  }
  
  .jhdpgs_404-animation i {
    font-size: 2.5rem;
  }
  
  .jhdpgs_404-suggestions {
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  .jhdpgs_404-content h1 {
    font-size: 2.5rem;
  }
  
  .jhdpgs_404-content > p {
    font-size: 1.1rem;
  }
  
  .jhdpgs_404-animation {
    flex-direction: column;
    gap: 1rem;
  }
  
  .jhdpgs_404-link {
    padding: 0.75rem 1.5rem;
  }
  
  .jhdpgs_404-image img {
    height: 300px;
  }
}