:root {
  --accent-gradient: linear-gradient(135deg, #ff4d4d, #ff9933, #ffcc00);
  --text-color-main: #ffffff;
  --text-color-light: rgba(255, 255, 255, 0.85);
  --bg-header: #1e1e1e;
  --font-title: 'Abhaya Libre', serif;
  --font-body: 'Gentium Book Basic', serif;
  --max-content-width: 1326px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  font-size: 16px;
}

body {
  background: var(--bg-header);
  color: var(--text-color-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

.qhm_header__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 2rem 1rem;
  animation: fadeInDown 1s ease-out forwards;
}

.qhm_header__top {
  text-align: center;
  animation: slideInLeft 0.8s ease-out forwards;
}

.qhm_header__logo {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--text-color-main);
  text-decoration: none;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.qhm_header__bottom {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeInUp 1s ease-out forwards;
}

.qhm_header__text {
  font-size: 1rem;
  color: var(--text-color-light);
  margin-bottom: 1.2rem;
  min-height: 3rem;
}

.qhm_header__navigation {
  width: 100%;
}

.qhm_header__menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.qhm_header__item {
  transition: transform 0.3s ease;
}

.qhm_header__item:hover {
  transform: scale(1.05);
}

.qhm_header__link {
  text-decoration: none;
  color: var(--text-color-main);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.qhm_header__link:hover {
  color: #ffd700;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1024px) {
  .qhm_header__logo {
    font-size: 1.8rem;
  }

  .qhm_header__text {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .qhm_header__menu {
    gap: 1rem;
  }

  .qhm_header__logo {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .qhm_header__logo {
    font-size: 1.4rem;
  }

  .qhm_header__text {
    font-size: 0.9rem;
  }

  .qhm_header__menu {
    gap: 0.8rem;
  }
}

@media (max-width: 320px) {
  .qhm_header__logo {
    font-size: 1.2rem;
  }

  .qhm_header__text {
    font-size: 0.85rem;
  }
}

.qhm_premium__section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.qhm_premium__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 6rem 1rem 4rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeInUp 1.5s ease-in-out forwards;
}

.qhm_premium__title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--text-color-main);
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #ffcc00, #ff9933, #ff4d4d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.qhm_premium__description {
  font-size: 1.1rem;
  color: var(--text-color-light);
  margin-bottom: 3rem;
  min-height: 4rem;
  max-width: 800px;
}

.qhm_premium__cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.qhm_premium__card {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  padding: 2rem;
  flex: 1 1 220px;
  min-width: 220px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: bounceIn 1s ease-in-out forwards;
}

.qhm_premium__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(255, 204, 0, 0.3);
}

.qhm_premium__icon {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.qhm_premium__card-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--text-color-main);
  margin-bottom: 0.8rem;
}

.qhm_premium__card-text {
  font-size: 1rem;
  color: var(--text-color-light);
}

.qhm_premium__section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../qhm-images/qhm-bg-image-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.3) contrast(1.1);
  z-index: 1;
  animation: zoomEffect 20s ease-in-out infinite alternate;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  60% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

@media (max-width: 1024px) {
  .qhm_premium__title {
    font-size: 2.2rem;
  }

  .qhm_premium__description {
    font-size: 1rem;
  }

  .qhm_premium__card {
    padding: 1.8rem;
  }
}

@media (max-width: 768px) {
  .qhm_premium__cards {
    gap: 1.5rem;
  }

  .qhm_premium__card {
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .qhm_premium__title {
    font-size: 1.8rem;
  }

  .qhm_premium__description {
    font-size: 0.95rem;
  }

  .qhm_premium__card {
    padding: 1.5rem;
  }

  .qhm_premium__icon {
    font-size: 2rem;
  }
}

@media (max-width: 320px) {
  .qhm_premium__title {
    font-size: 1.5rem;
  }

  .qhm_premium__description {
    font-size: 0.9rem;
  }

  .qhm_premium__card {
    padding: 1.2rem;
  }

  .qhm_premium__icon {
    font-size: 1.8rem;
  }
}

.qhm_platforms__section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #1a2a3a, #2d3e50);
    position: relative;
    overflow: hidden;
    
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('../qhm-images/qhm-bg-image-2.jpg') no-repeat center/cover;
        opacity: 0.05;
        z-index: 0;
    }
}

.qhm_platforms__wrapper {
    max-width: var(--max-content-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.qhm_platforms__container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.qhm_platforms__sports,
.qhm_platforms__casino {
    flex: 1 1 100%;
    max-width: 100%;
}

.qhm_platforms__heading {
    font-family: var(--font-title);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #ffcc00, #ff9933, #ff4d4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    
    i {
        color: #ffcc00;
    }
}

.qhm_platforms__banner {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.qhm_platforms__banner--exclusive {
    background: rgba(74, 45, 105, 0.3);
    max-width: 50%;
    margin: 0 auto;
}

.qhm_platforms__cards-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.qhm_platforms__cards-row {
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

.qhm_platforms__cards-row--hidden {
    display: none;
}

.qhm_platforms__card {
    flex: 1;
    background: linear-gradient(145deg, #2d3e50, #1a2a3a);
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    
    &:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    }
}

.qhm_platforms__exclusive {
    background: linear-gradient(145deg, #4a2d69, #2d1a3a);
    position: relative;
    border: 2px solid #ffcc00;
    
    &::after {
        content: 'Exclusive';
        position: absolute;
        top: 10px;
        right: 10px;
        background: #ffcc00;
        color: #1a2a3a;
        padding: 0.3rem 0.6rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: bold;
    }
}

.qhm_platforms__logo {
    height: 60px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    
    img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }
}

.qhm_platforms__title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffcc00;
}

.qhm_platforms__bonuses {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    min-height: 250px;
    
    li {
        margin-bottom: 0.8rem;
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        line-height: 1.4;
        
        i {
            color: #ff9933;
            margin-top: 0.2rem;
            flex-shrink: 0;
        }
    }
}

.qhm_platforms__rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.qhm_platforms__stars {
    color: #ffcc00;
    
    i:last-child {
        color: rgba(255, 204, 0, 0.5);
    }
}

.qhm_platforms__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(to right, #ff4d4d, #ff9933);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    
    &:hover {
        background: linear-gradient(to right, #ff9933, #ffcc00);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 153, 51, 0.4);
    }
}

.qhm_platforms__toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: white;
    font-family: var(--font-body);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    
    &:hover {
        background: rgba(255, 255, 255, 0.2);
    }
    
    i {
        transition: transform 0.3s ease;
    }
}

.qhm_platforms__toggle-btn.active i {
    transform: rotate(180deg);
}

@media (max-width: 1024px) {
    .qhm_platforms__container {
        flex-direction: column;
    }
    
    .qhm_platforms__sports,
    .qhm_platforms__casino {
        flex: 1 1 100%;
    }
    
    .qhm_platforms__card {
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .qhm_platforms__heading {
        font-size: 2rem;
    }
    
    .qhm_platforms__cards-row {
        flex-direction: column;
    }
    
    .qhm_platforms__card {
        min-height: auto;
    }

    .qhm_platforms__banner--exclusive {
      max-width: 100%;
    }
    
    .qhm_platforms__bonuses {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .qhm_platforms__section {
        padding: 2rem 0.5rem;
    }
    
    .qhm_platforms__heading {
        font-size: 1.8rem;
    }
    
    .qhm_platforms__banner {
        padding: 1rem;
    }
    
    .qhm_platforms__title {
        font-size: 1.3rem;
    }
    
    .qhm_platforms__bonuses li {
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .qhm_platforms__heading {
        font-size: 1.6rem;
    }
    
    .qhm_platforms__button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

.qhm_faq__section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #ff4d4d, #ff9933, #ffcc00);
  color: #fff;
}

.qhm_faq__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.qhm_faq__split {
  flex: 1 1 48%;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.qhm_faq__title {
  font-family: var(--font-title);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}

.qhm_faq__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-gradient);
}

.qhm_faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.qhm_faq__item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.qhm_faq__item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.qhm_faq__question {
  color: #ff4d4d;
  width: 100%;
  padding: 1rem 1.2rem;
  text-align: left;
  font-size: 1rem;
  font-weight: bold;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease;
}

.qhm_faq__question i.las {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.qhm_faq__icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.qhm_faq__question:focus {
  outline: none;
}

.qhm_faq__answer {
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
  line-height: 1.5;
  min-height: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.qhm_faq__item.active .qhm_faq__answer {
  max-height: 200px;
  opacity: 1;
  padding: 1rem 1.2rem;
}

.qhm_faq__item.active .qhm_faq__icon {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .qhm_faq__container {
    flex-direction: column;
  }

  .qhm_faq__split {
    flex: 1 1 100%;
  }
}

.qhm_responsible__section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #1e1e1e, #2d3e50);
  color: var(--text-color-main);
}

.qhm_responsible__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.qhm_responsible__content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1s ease-in-out forwards;
}

.qhm_responsible__title {
  font-family: var(--font-title);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.qhm_responsible__title::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-gradient);
  z-index: -1;
}

.qhm_responsible__text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  min-height: 250px;
  opacity: 0.95;
  animation: floatIn 1.5s ease-in-out;
}

.qhm_responsible__link {
  color: var(--accent-gradient);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.qhm_responsible__link:hover {
  color: #ffcc00;
}

.qhm_responsible__icon-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  animation: pulseIcons 2s infinite ease-in-out;
}

.qhm_responsible__shield,
.qhm_responsible__user,
.qhm_responsible__balance {
  font-size: 2.5rem;
  color: var(--accent-gradient);
  transition: transform 0.3s ease;
}

.qhm_responsible__icon-box i:hover {
  transform: scale(1.2) rotate(5deg);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseIcons {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  .qhm_responsible__content {
    padding: 2rem 1.5rem;
  }

  .qhm_responsible__title {
    font-size: 1.75rem;
    gap: 0.8rem;
  }

  .qhm_responsible__text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .qhm_responsible__icon-box {
    gap: 1.5rem;
  }

  .qhm_responsible__shield,
  .qhm_responsible__user,
  .qhm_responsible__balance {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .qhm_responsible__content {
    padding: 1.8rem 1rem;
  }

  .qhm_responsible__title {
    font-size: 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .qhm_responsible__title::before {
    display: none;
  }

  .qhm_responsible__text {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .qhm_responsible__icon-box {
    flex-direction: column;
    gap: 1.2rem;
  }

  .qhm_responsible__shield,
  .qhm_responsible__user,
  .qhm_responsible__balance {
    font-size: 2rem;
  }
}

.qhm_footer__section {
  background: linear-gradient(135deg, #1e1e1e, #2d3e50);
  color: var(--text-color-light);
  padding: 3rem 1.5rem;
}

.qhm_footer__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.qhm_footer__partners {
  text-align: center;
  animation: fadeInUp 1s ease-in-out;
}

.qhm_footer__subtitle {
  font-family: var(--font-title);
  font-size: 1.75rem;
  color: var(--accent-gradient);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.qhm_footer__subtitle::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-gradient);
  z-index: -1;
}

.qhm_footer__text {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.qhm_footer__logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.qhm_footer__logos img {
  transition: filter 0.3s ease;
}

.qhm_footer__logos img:hover {
  filter: brightness(1.2);
}

.qhm_footer__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
  animation: slideIn 1.2s ease-in-out;
}

.qhm_footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.qhm_footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.qhm_footer__links a {
  color: var(--text-color-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease;
}

.qhm_footer__links a:hover {
  color: var(--accent-gradient);
}

.qhm_footer__copyright {
  font-size: 0.9rem;
  opacity: 0.8;
  text-align: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .qhm_footer__subtitle {
    font-size: 1.5rem;
  }

  .qhm_footer__text {
    font-size: 0.95rem;
  }

  .qhm_footer__logos {
    justify-content: center;
  }

  .qhm_footer__logos img {
    width: 100px;
    height: auto;
  }

  .qhm_footer__links {
    justify-content: center;
    gap: 1rem;
  }

  .qhm_footer__links a {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .qhm_footer__subtitle {
    font-size: 1.3rem;
  }

  .qhm_footer__text {
    font-size: 0.9rem;
  }

  .qhm_footer__logos {
    flex-direction: column;
    align-items: center;
  }

  .qhm_footer__logos img {
    width: 120px;
    height: auto;
  }

  .qhm_footer__links {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .qhm_footer__copyright {
    font-size: 0.85rem;
  }
}

@media (max-width: 320px) {
  .qhm_footer__subtitle {
    font-size: 1.2rem;
  }

  .qhm_footer__logos img {
    width: 100px;
    height: auto;
  }
}

.qhm_age__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.99);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.qhm_age__content {
  background: linear-gradient(135deg, #1e1e1e, #2d3e50);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInZoom 1s ease-in-out;
}

.qhm_age__title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--accent-gradient);
  margin-bottom: 1rem;
  position: relative;
}

.qhm_age__title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--accent-gradient);
}

.qhm_age__text {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: var(--text-color-light);
  min-height: 40px;
}

.qhm_age__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.qhm_age__btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.qhm_age__btn--yes {
  background: var(--accent-gradient);
  color: #1e1e1e;
}

.qhm_age__btn--no {
  background: transparent;
  color: var(--accent-gradient);
  border: 2px solid var(--accent-gradient);
}

.qhm_age__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 153, 0, 0.4);
}

@keyframes fadeInZoom {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.qhm_cookie__banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(8px);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 9998;
  animation: slideUp 0.6s ease-in-out;
}

.qhm_cookie__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}

.qhm_cookie__text {
  font-size: 1rem;
  color: var(--text-color-light);
  flex: 1 1 70%;
  min-height: 40px;
}

.qhm_cookie__link {
  color: var(--accent-gradient);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.qhm_cookie__link:hover {
  color: #ffcc00;
}

.qhm_cookie__accept {
  flex: 1 1 25%;
  padding: 0.75rem 1.5rem;
  background: var(--accent-gradient);
  color: #1e1e1e;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.qhm_cookie__accept:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 153, 0, 0.4);
}

@media (max-width: 768px) {
  .qhm_cookie__container {
    flex-direction: column;
    align-items: flex-start;
  }

  .qhm_cookie__text {
    flex: 1 1 100%;
  }

  .qhm_cookie__accept {
    flex: 1 1 100%;
    margin-top: 0.75rem;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.qhm_scroll__top {
  position: fixed;
  bottom: 170px;
  left: 2rem;
  width: 50px;
  height: 50px;
  background: var(--accent-gradient);
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e1e1e;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 9997;
  box-shadow: 0 8px 20px rgba(255, 153, 0, 0.6);
  transition: all 0.3s ease;
  animation: pulseGlow 2s infinite ease-in-out;
}

.qhm_scroll__top:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(255, 153, 0, 0.8);
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.6);
  }
  50% {
    box-shadow: 0 10px 25px rgba(255, 153, 0, 0.9);
  }
}

.qhmpg_responsible__hero {
  background: linear-gradient(135deg, #ff4d4d, #ff9933, #ffcc00);
  color: #1e1e1e;
  padding: 6rem 2rem 4rem;
  text-align: center;
}

.qhmpg_responsible__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.qhmpg_responsible__heading {
  font-family: var(--font-title);
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  line-height: 1.2;
  animation: fadeInDown 1s ease-in-out;
}

.qhmpg_responsible__subtext {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  animation: fadeInUp 1.2s ease-in-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.qhmpg_responsible__content {
  padding: 4rem 2rem;
  background: #1e1e1e;
  color: var(--text-color-light);
}

.qhmpg_responsible__block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(5px);
}

.qhmpg_responsible__block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.qhmpg_responsible__icon {
  font-size: 2.5rem;
  display: block;
  margin: 0 auto 1.2rem;
  color: var(--accent-gradient);
  animation: floatIcon 2s infinite ease-in-out;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.qhmpg_responsible__title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.qhmpg_responsible__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-gradient);
}

.qhmpg_responsible__description {
  font-size: 1.05rem;
  line-height: 1.7;
  min-height: 80px;
  opacity: 0.9;
}

.qhmpg_responsible__link {
  color: var(--accent-gradient);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.qhmpg_responsible__link:hover {
  color: #ffcc00;
}

@media (max-width: 768px) {
  .qhmpg_responsible__heading {
    font-size: 2.2rem;
  }

  .qhmpg_responsible__subtext {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .qhmpg_responsible__block {
    padding: 1.8rem;
    margin-bottom: 2rem;
  }

  .qhmpg_responsible__title {
    font-size: 1.6rem;
  }

  .qhmpg_responsible__description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .qhmpg_responsible__hero {
    padding: 5rem 1.5rem 3rem;
  }

  .qhmpg_responsible__heading {
    font-size: 2rem;
  }

  .qhmpg_responsible__subtext {
    font-size: 1rem;
  }

  .qhmpg_responsible__block {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .qhmpg_responsible__title {
    font-size: 1.4rem;
  }

  .qhmpg_responsible__description {
    font-size: 0.95rem;
  }
}

@media (max-width: 320px) {
  .qhmpg_responsible__heading {
    font-size: 1.8rem;
  }

  .qhmpg_responsible__subtext {
    font-size: 0.95rem;
  }

  .qhmpg_responsible__description {
    font-size: 0.9rem;
  }
}

.qhmpg_privacy__hero {
  background: linear-gradient(135deg, #ff4d4d, #ff9933, #ffcc00);
  color: #1e1e1e;
  padding: 6rem 2rem 4rem;
  text-align: center;
}

.qhmpg_privacy__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.qhmpg_privacy__heading {
  font-family: var(--font-title);
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  line-height: 1.2;
  animation: fadeInDown 1s ease-in-out;
}

.qhmpg_privacy__subtext {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  animation: fadeInUp 1.2s ease-in-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.qhmpg_privacy__content {
  padding: 4rem 2rem;
  background: #1e1e1e;
  color: var(--text-color-light);
}

.qhmpg_privacy__block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(5px);
}

.qhmpg_privacy__block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.qhmpg_privacy__icon {
  font-size: 2.5rem;
  display: block;
  margin: 0 auto 1.2rem;
  color: var(--accent-gradient);
  animation: floatIcon 2s infinite ease-in-out;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.qhmpg_privacy__title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.qhmpg_privacy__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-gradient);
}

.qhmpg_privacy__description {
  font-size: 1.05rem;
  line-height: 1.7;
  min-height: 80px;
  opacity: 0.9;
}

.qhmpg_privacy__link {
  color: var(--accent-gradient);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.qhmpg_privacy__link:hover {
  color: #ffcc00;
}

@media (max-width: 768px) {
  .qhmpg_privacy__heading {
    font-size: 2.2rem;
  }

  .qhmpg_privacy__subtext {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .qhmpg_privacy__block {
    padding: 1.8rem;
    margin-bottom: 2rem;
  }

  .qhmpg_privacy__title {
    font-size: 1.6rem;
  }

  .qhmpg_privacy__description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .qhmpg_privacy__hero {
    padding: 5rem 1.5rem 3rem;
  }

  .qhmpg_privacy__heading {
    font-size: 2rem;
  }

  .qhmpg_privacy__subtext {
    font-size: 1rem;
  }

  .qhmpg_privacy__block {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .qhmpg_privacy__title {
    font-size: 1.4rem;
  }

  .qhmpg_privacy__description {
    font-size: 0.95rem;
  }
}

@media (max-width: 320px) {
  .qhmpg_privacy__heading {
    font-size: 1.8rem;
  }

  .qhmpg_privacy__subtext {
    font-size: 0.95rem;
  }

  .qhmpg_privacy__description {
    font-size: 0.9rem;
  }

  .qhmpg_privacy__link {
    font-size: 0.8rem;
  }
}

.qhmpg_cookiepolicy__hero {
  background: linear-gradient(135deg, #ff4d4d, #ff9933, #ffcc00);
  color: #1e1e1e;
  padding: 6rem 2rem 4rem;
  text-align: center;
}

.qhmpg_cookiepolicy__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.qhmpg_cookiepolicy__heading {
  font-family: var(--font-title);
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  line-height: 1.2;
  animation: fadeInDown 1s ease-in-out;
}

.qhmpg_cookiepolicy__subtext {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  animation: fadeInUp 1.2s ease-in-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.qhmpg_cookiepolicy__content {
  padding: 4rem 2rem;
  background: #1e1e1e;
  color: var(--text-color-light);
}

.qhmpg_cookiepolicy__block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(5px);
}

.qhmpg_cookiepolicy__block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.qhmpg_cookiepolicy__icon {
  font-size: 2.5rem;
  display: block;
  margin: 0 auto 1.2rem;
  color: var(--accent-gradient);
  animation: floatIcon 2s infinite ease-in-out;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.qhmpg_cookiepolicy__title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.qhmpg_cookiepolicy__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-gradient);
}

.qhmpg_cookiepolicy__description {
  font-size: 1.05rem;
  line-height: 1.7;
  min-height: 80px;
  opacity: 0.9;
}

.qhmpg_cookiepolicy__link {
  color: var(--accent-gradient);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.qhmpg_cookiepolicy__link:hover {
  color: #ffcc00;
}

@media (max-width: 768px) {
  .qhmpg_cookiepolicy__heading {
    font-size: 2.2rem;
  }

  .qhmpg_cookiepolicy__subtext {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .qhmpg_cookiepolicy__block {
    padding: 1.8rem;
    margin-bottom: 2rem;
  }

  .qhmpg_cookiepolicy__title {
    font-size: 1.6rem;
  }

  .qhmpg_cookiepolicy__description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .qhmpg_cookiepolicy__hero {
    padding: 5rem 1.5rem 3rem;
  }

  .qhmpg_cookiepolicy__heading {
    font-size: 2rem;
  }

  .qhmpg_cookiepolicy__subtext {
    font-size: 1rem;
  }

  .qhmpg_cookiepolicy__block {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .qhmpg_cookiepolicy__title {
    font-size: 1.4rem;
  }

  .qhmpg_cookiepolicy__description {
    font-size: 0.95rem;
  }
}

@media (max-width: 320px) {
  .qhmpg_cookiepolicy__heading {
    font-size: 1.8rem;
  }

  .qhmpg_cookiepolicy__subtext {
    font-size: 0.95rem;
  }

  .qhmpg_cookiepolicy__description {
    font-size: 0.9rem;
  }

  .qhmpg_cookiepolicy__link {
    font-size: 0.8rem;
  }
}

.qhmpg_about__hero {
  background: linear-gradient(135deg, #ff4d4d, #ff9933, #ffcc00);
  color: #1e1e1e;
  padding: 6rem 2rem 4rem;
  text-align: center;
}

.qhmpg_about__container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.qhmpg_about__heading {
  font-family: var(--font-title);
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  line-height: 1.2;
  animation: fadeInDown 1s ease-in-out;
}

.qhmpg_about__subtext {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  animation: fadeInUp 1.2s ease-in-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.qhmpg_about__content {
  padding: 4rem 2rem;
  background: #1e1e1e;
  color: var(--text-color-light);
}

.qhmpg_about__block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(5px);
  margin-bottom: 2.5rem;
}

.qhmpg_about__block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.qhmpg_about__block--text {
  order: 1;
}

.qhmpg_about__block--image {
  order: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qhmpg_about__icon {
  font-size: 2.5rem;
  display: block;
  margin: 0 auto 1.2rem;
  color: var(--accent-gradient);
  animation: floatIcon 2s infinite ease-in-out;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.qhmpg_about__title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.qhmpg_about__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-gradient);
}

.qhmpg_about__description {
  font-size: 1.05rem;
  line-height: 1.7;
  min-height: 220px;
  opacity: 0.9;
}

.qhmpg_about__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease;
}

.qhmpg_about__image:hover {
  transform: scale(1.02);
}

@media (min-width: 768px) {
  .qhmpg_about__container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .qhmpg_about__block--text {
    flex: 1 1 65%;
  }

  .qhmpg_about__block--image {
    flex: 1 1 30%;
  }
}

@media (max-width: 768px) {
  .qhmpg_about__heading {
    font-size: 2.2rem;
  }

  .qhmpg_about__subtext {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .qhmpg_about__block {
    padding: 1.8rem;
    margin-bottom: 2rem;
  }

  .qhmpg_about__title {
    font-size: 1.6rem;
  }

  .qhmpg_about__description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .qhmpg_about__hero {
    padding: 5rem 1.5rem 3rem;
  }

  .qhmpg_about__heading {
    font-size: 2rem;
  }

  .qhmpg_about__subtext {
    font-size: 1rem;
  }

  .qhmpg_about__block {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .qhmpg_about__title {
    font-size: 1.4rem;
  }

  .qhmpg_about__description {
    font-size: 0.95rem;
  }

  .qhmpg_about__image {
    max-width: 90%;
  }
}

@media (max-width: 320px) {
  .qhmpg_about__heading {
    font-size: 1.8rem;
  }

  .qhmpg_about__subtext {
    font-size: 0.95rem;
  }

  .qhmpg_about__description {
    font-size: 0.9rem;
  }

  .qhmpg_about__image {
    max-width: 100%;
  }
}