*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Cabin', sans-serif;
  line-height: 1.9;
  color: #2c3e50;
  background-color: #f9f7f5;
}

.ht-lotto-header {  
  width: 100%; 
  background-color: #e8f4f8;
  border-bottom: 3px solid #3498db;
  box-shadow: 0 2px 10px rgba(52, 152, 219, 0.1);
}

.ht-header-topbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;  
  padding: 15px 30px;
  background-color: #ffffff;
}

.ht-header-topbar-sub {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 15px 30px;
  background-color: #ffffff;
}

.ht-header-logo {
  transition: transform 0.3s ease;
}

.ht-header-logo:hover {
  transform: scale(1.05) rotate(-5deg);
}

.ht-header-logo img {
  display: block;
  height: 80px;
  width: auto;
}

.ht-header-btn {
  font-family: 'Marcellus', serif;
  padding: 12px 25px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ht-header-register {
  background-color: #e74c3c;
  color: white;
}

.ht-header-register:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

.ht-header-login {
  background-color: #f1c40f;
  color: #2c3e50;
}

.ht-header-login:hover {
  background-color: #f39c12;
  transform: translateY(-2px);
}

.ht-header-responsibility {
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 15px;
  background-color: #2c3e50;
  color: #ecf0f1;
}

.ht-header-warning {
  font-size: 14px;
  max-width: 600px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ht-header-warning i {
  font-size: 20px;
  color: #f1c40f;
}

.ht-header-partners {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ht-header-partners img {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.ht-header-partners img:hover {
  opacity: 1;
}

@media (max-width: 1024px) {
  .ht-header-topbar {
    padding: 15px 20px;
  }
  
  .ht-header-responsibility {
    padding: 15px 20px;
  }
}

@media (max-width: 768px) {
  .ht-header-topbar-sub {
    flex-direction: column;
    gap: 15px;
  }
  
  .ht-header-btn {
    width: 100%;
    justify-content: center;
  }
  
  .ht-header-responsibility {
    flex-direction: column;
    text-align: center;
  }
  
  .ht-header-warning {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ht-header-logo img {
    height: 60px;
  }
  
  .ht-header-btn {
    padding: 10px 15px;
    font-size: 14px;
  }
  
  .ht-header-warning {
    font-size: 13px;
  }
}

@media (max-width: 320px) {
  .ht-header-partners {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .ht-header-warning {
    font-size: 12px;
  }
}

.ht-register-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: htFadeIn 0.4s ease-out;
}

.ht-register-container {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  opacity: 0;
  animation: htSlideUp 0.4s 0.2s ease-out forwards;
}

.ht-register-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #7f8c8d;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.ht-register-close:hover {
  transform: rotate(90deg);
  color: #e74c3c;
}

.ht-register-title {
  font-family: 'Marcellus', serif;
  color: #2c3e50;
  font-size: 28px;
  margin-bottom: 5px;
  text-align: center;
}

.ht-register-subtitle {
  color: #7f8c8d;
  text-align: center;
  margin-bottom: 30px;
  font-size: 16px;
}

.ht-register-messages {
  margin-bottom: 20px;
  min-height: 50px;
}

.ht-register-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ht-register-field {
  position: relative;
}

.ht-register-field label {
  display: block;
  margin-bottom: 8px;
  color: #2c3e50;
  font-weight: 500;
}

.ht-register-field input {
  width: 100%;
  padding: 12px 15px 12px 40px;
  border: 2px solid #dfe6e9;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.ht-register-field input:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.ht-register-field i {
  position: absolute;
  left: 15px;
  bottom: 14px;
  color: #7f8c8d;
  font-size: 18px;
}

.ht-register-checkbox {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.ht-register-checkbox input {
  margin-right: 10px;
  width: auto;
}

.ht-register-checkbox label {
  font-size: 14px;
  color: #7f8c8d;
  margin: 0;
}

.ht-register-checkbox a {
  color: #3498db;
  text-decoration: none;
}

.ht-register-checkbox a:hover {
  text-decoration: underline;
}

.ht-register-submit {
  background-color: #e74c3c;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 18px;
  font-family: 'Marcellus', serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ht-register-submit:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

.ht-register-submit:disabled {
  background-color: #bdc3c7;
  cursor: not-allowed;
  transform: none;
}

.ht-register-login {
  text-align: center;
  margin-top: 20px;
  color: #7f8c8d;
}

.ht-register-login a {
  color: #3498db;
  text-decoration: none;
}

.ht-register-login a:hover {
  text-decoration: underline;
}

.ht-register-success {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.ht-success-container {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  text-align: center;
  animation: htFadeIn 0.4s ease-out;
}

.ht-success-container i {
  font-size: 60px;
  color: #2ecc71;
  margin-bottom: 20px;
}

.ht-success-title {
  font-family: 'Marcellus', serif;
  color: #2c3e50;
  font-size: 24px;
  margin-bottom: 15px;
}

.ht-success-text {
  color: #2c3e50;
  margin-bottom: 5px;
}

.ht-success-email {
  font-weight: 500;
  color: #e74c3c;
}

.ht-success-note {
  color: #7f8c8d;
  font-size: 14px;
  margin-bottom: 25px;
}

.ht-success-close {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ht-success-close:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
}

.error-message {
  color: #e74c3c;
  background-color: #fadbd8;
  padding: 10px 15px;
  border-radius: 6px;
  margin-bottom: 15px;
  display: none;
}

@keyframes htFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes htSlideUp {
  from { 
      transform: translateY(20px);
      opacity: 0;
  }
  to { 
      transform: translateY(0);
      opacity: 1;
  }
}

@media (max-width: 768px) {
  .ht-register-container {
      padding: 30px 20px;
      margin: 0 15px;
  }
  
  .ht-register-title {
      font-size: 24px;
  }
  
  .ht-register-field input {
      padding: 10px 15px 10px 40px;
  }
}

@media (max-width: 480px) {
  .ht-register-container {
      padding: 25px 15px;
  }
  
  .ht-register-title {
      font-size: 22px;
  }
  
  .ht-register-submit {
      padding: 12px;
      font-size: 16px;
  }
}

.ht-login-modal,
.ht-forgot-modal,
.ht-login-success {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: htFadeIn 0.4s ease-out;
}

.ht-login-container,
.ht-forgot-container,
.ht-loginsuccess-container {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 40px;
    width: 100%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    opacity: 0;
    animation: htSlideUp 0.4s 0.2s ease-out forwards;
}

.ht-login-close,
.ht-forgot-close,
.ht-loginsuccess-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #7f8c8d;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.ht-login-close:hover,
.ht-forgot-close:hover,
.ht-loginsuccess-close:hover {
    transform: rotate(90deg);
    color: #e74c3c;
}

.ht-login-title,
.ht-forgot-title,
.ht-loginsuccess-title {
    font-family: 'Marcellus', serif;
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 5px;
    text-align: center;
}

.ht-login-subtitle,
.ht-forgot-subtitle,
.ht-loginsuccess-note {
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 25px;
    font-size: 16px;
}

.ht-login-messages,
.ht-forgot-messages {
    margin-bottom: 20px;
    min-height: 50px;
}

.ht-login-form,
.ht-forgot-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ht-login-field,
.ht-forgot-field {
    position: relative;
}

.ht-login-field label,
.ht-forgot-field label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

.ht-login-field input,
.ht-forgot-field input {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 2px solid #dfe6e9;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.ht-login-field input:focus,
.ht-forgot-field input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.ht-login-field i,
.ht-forgot-field i {
    position: absolute;
    left: 15px;
    bottom: 16px;
    color: #7f8c8d;
    font-size: 20px;
}

.ht-login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.ht-login-checkbox {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.ht-login-checkbox input {
    margin-right: 10px;
    width: auto;
}

.ht-login-checkbox label {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}

.ht-login-checkbox a,
.ht-forgot-link,
.ht-register-link,
.ht-login-back {
    color: #3498db;
    text-decoration: none;
}

.ht-login-checkbox a:hover,
.ht-forgot-link:hover,
.ht-register-link:hover,
.ht-login-back:hover {
    text-decoration: underline;
}

.ht-login-submit,
.ht-forgot-submit,
.ht-loginsuccess-close {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 18px;
    font-family: 'Marcellus', serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ht-login-submit:hover,
.ht-forgot-submit:hover,
.ht-loginsuccess-close:hover {
    background-color: #219653;
    transform: translateY(-2px);
}

.ht-login-submit:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

.ht-login-register,
.ht-forgot-login {
    text-align: center;
    margin-top: 20px;
    color: #7f8c8d;
}

.ht-loginsuccess-container i {
    font-size: 70px;
    color: #27ae60;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.ht-loginsuccess-text {
    color: #2c3e50;
    margin-bottom: 5px;
    text-align: center;
}

.ht-loginsuccess-email {
    font-weight: 500;
    color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    background-color: #fadbd8;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: none;
}

@keyframes htFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes htSlideUp {
    from { 
        transform: translateY(20px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .ht-login-container,
    .ht-forgot-container,
    .ht-loginsuccess-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .ht-login-title,
    .ht-forgot-title,
    .ht-loginsuccess-title {
        font-size: 24px;
    }
    
    .ht-login-field input,
    .ht-forgot-field input {
        padding: 12px 15px 12px 45px;
    }
}

@media (max-width: 480px) {
    .ht-login-container,
    .ht-forgot-container,
    .ht-loginsuccess-container {
        padding: 25px 15px;
    }
    
    .ht-login-title,
    .ht-forgot-title,
    .ht-loginsuccess-title {
        font-size: 22px;
    }
    
    .ht-login-submit,
    .ht-forgot-submit,
    .ht-loginsuccess-close {
        padding: 14px;
        font-size: 16px;
    }
    
    .ht-login-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.ht-forgot-success {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: htFadeIn 0.4s ease-out;
}

.ht-forgotsuccess-container {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 40px;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  animation: htSlideUp 0.4s ease-out;
}

.ht-forgotsuccess-container i {
  font-size: 70px;
  color: #3498db;
  margin-bottom: 20px;
  display: block;
  text-align: center;
}

.ht-forgotsuccess-title {
  font-family: 'Marcellus', serif;
  color: #2c3e50;
  font-size: 28px;
  margin-bottom: 10px;
  text-align: center;
}

.ht-forgotsuccess-text {
  color: #2c3e50;
  margin-bottom: 5px;
  text-align: center;
}

.ht-forgotsuccess-email {
  font-weight: 500;
  color: #e74c3c;
}

.ht-forgotsuccess-note {
  color: #7f8c8d;
  text-align: center;
  margin-bottom: 25px;
  font-size: 16px;
}

.ht-forgotsuccess-close {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 18px;
  font-family: 'Marcellus', serif;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.ht-forgotsuccess-close:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .ht-forgotsuccess-container {
      padding: 30px 20px;
      margin: 0 15px;
  }
  
  .ht-forgotsuccess-title {
      font-size: 24px;
  }
}

@media (max-width: 480px) {
  .ht-forgotsuccess-container {
      padding: 25px 15px;
  }
  
  .ht-forgotsuccess-title {
      font-size: 22px;
  }
  
  .ht-forgotsuccess-close {
      padding: 14px;
      font-size: 16px;
  }
}

.ht-about-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px;
  background-color: #f0f7f4;
  position: relative;
  overflow: hidden;
}

.ht-about-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: #e1f0ea;
  border-radius: 50%;
  z-index: 0;
}

.ht-about-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.ht-about-visual {
  flex: 1;
  position: relative;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 15px 15px 0 rgba(33, 150, 105, 0.1);
  transform: rotate(-1deg);
  transition: transform 0.4s ease;
}

.ht-about-visual:hover {
  transform: rotate(0) scale(1.02);
}

.ht-about-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.ht-about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: #219669;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 15px;
  animation: htPulse 2s infinite;
}

.ht-about-content {
  flex: 1;
  min-width: 0;
}

.ht-about-title {
  font-family: 'Marcellus', serif;
  color: #2c3e50;
  font-size: 36px;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.ht-about-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 70px;
  height: 4px;
  background-color: #219669;
}

.ht-about-text {
  margin-bottom: 35px;
  color: #34495e;
  line-height: 1.8;
}

.ht-about-text p {
  margin-bottom: 20px;
}

.ht-about-button {
  background-color: #e74c3c;
  color: white;
  border: none;
  padding: 16px 35px;
  border-radius: 30px;
  font-size: 18px;
  font-family: 'Marcellus', serif;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.ht-about-button:hover {
  background-color: #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

.ht-about-button i {
  font-size: 20px;
}

@keyframes htPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@media (max-width: 1024px) {
  .ht-about-wrapper {
      gap: 30px;
  }
  
  .ht-about-title {
      font-size: 32px;
  }
}

@media (max-width: 768px) {
  .ht-about-wrapper {
      flex-direction: column;
  }
  
  .ht-about-visual {
      width: 100%;
  }
  
  .ht-about-title {
      font-size: 28px;
  }
  
  .ht-about-button {
      padding: 14px 30px;
      font-size: 16px;
  }
}

@media (max-width: 480px) {
  .ht-about-section {
      padding: 50px 15px;
  }
  
  .ht-about-title {
      font-size: 26px;
  }
  
  .ht-about-badge {
      padding: 10px 15px;
      font-size: 14px;
  }
}

@media (max-width: 320px) {
  .ht-about-title {
      font-size: 24px;
  }
  
  .ht-about-button {
      width: 100%;
      justify-content: center;
  }
}

.ht-jackpot-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 20px;
  background-color: #f8f5ff;
  position: relative;
  overflow: hidden;
}

.ht-jackpot-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background: linear-gradient(90deg, #8e44ad, #3498db, #2ecc71);
}

.ht-jackpot-wrapper {
  position: relative;
  z-index: 1;
}

.ht-jackpot-mainheader {
  font-family: 'Marcellus', serif;
  color: #2c3e50;
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.ht-jackpot-mainheader::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #8e44ad, #3498db);
  border-radius: 2px;
}

.ht-jackpot-featurecard {
  background-color: #8e44ad;
  border-radius: 15px;
  padding: 50px;
  margin-bottom: 30px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(142, 68, 173, 0.2);
}

.ht-jackpot-featurecard::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.ht-jackpot-featurecontent {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ht-jackpot-rating {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.ht-jackpot-rating i {
  color: #f1c40f;
  font-size: 22px;
}

.ht-jackpot-featuretitle {
  font-family: 'Marcellus', serif;
  font-size: 32px;
  margin-bottom: 20px;
  color: white;
}

.ht-jackpot-featuretext {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.ht-jackpot-featurebutton {
  background-color: #f1c40f;
  color: #2c3e50;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-family: 'Marcellus', serif;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(241, 196, 15, 0.3);
}

.ht-jackpot-featurebutton:hover {
  background-color: #f39c12;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(241, 196, 15, 0.4);
}

.ht-jackpot-cardgrid {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.ht-jackpot-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  flex: 1;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-top: 4px solid #3498db;
}

.ht-jackpot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ht-jackpot-card i {
  font-size: 40px;
  color: #8e44ad;
  margin-bottom: 15px;
  display: block;
}

.ht-jackpot-card h4 {
  font-family: 'Marcellus', serif;
  font-size: 22px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.ht-jackpot-card p {
  color: #7f8c8d;
  line-height: 1.7;
}

.ht-jackpot-bottomcard {
  background-color: #3498db;
  border-radius: 15px;
  padding: 50px;
  color: white;
  position: relative;
  overflow: hidden;
}

.ht-jackpot-bottomcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>');
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: bottom;
}

.ht-jackpot-bottomcontent {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ht-jackpot-bottomtitle {
  font-family: 'Marcellus', serif;
  font-size: 32px;
  margin-bottom: 20px;
  color: white;
}

.ht-jackpot-bottomtext {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.ht-jackpot-prizeinfo {
  margin-bottom: 30px;
  font-size: 20px;
}

.ht-jackpot-prizeinfo strong {
  font-family: 'Marcellus', serif;
  font-size: 28px;
  color: #f1c40f;
  display: block;
  margin-top: 5px;
}

@media (max-width: 1024px) {
  .ht-jackpot-mainheader {
      font-size: 38px;
  }
  
  .ht-jackpot-featurecard,
  .ht-jackpot-bottomcard {
      padding: 40px;
  }
}

@media (max-width: 768px) {
  .ht-jackpot-mainheader {
      font-size: 32px;
  }
  
  .ht-jackpot-cardgrid {
      flex-direction: column;
  }
  
  .ht-jackpot-card {
      flex: auto;
  }
  
  .ht-jackpot-featuretitle,
  .ht-jackpot-bottomtitle {
      font-size: 28px;
  }
}

@media (max-width: 480px) {
  .ht-jackpot-section {
      padding: 50px 15px;
  }
  
  .ht-jackpot-mainheader {
      font-size: 28px;
  }
  
  .ht-jackpot-featurecard,
  .ht-jackpot-bottomcard {
      padding: 30px 20px;
  }
  
  .ht-jackpot-featuretext,
  .ht-jackpot-bottomtext {
      font-size: 16px;
  }
}

@media (max-width: 320px) {
  .ht-jackpot-mainheader {
      font-size: 26px;
  }
  
  .ht-jackpot-featurebutton {
      width: 100%;
      justify-content: center;
  }
}

.ht-lottery-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px;
  background-color: #fff9f2;
  position: relative;
}

.ht-lottery-wrapper {
  position: relative;
  z-index: 1;
}

.ht-lottery-upcoming {
  background-color: #2c3e50;
  border-radius: 20px;
  padding: 60px;
  margin-bottom: 50px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(44, 62, 80, 0.2);
}

.ht-lottery-upcoming::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(241, 196, 15, 0.2) 0%, transparent 70%);
}

.ht-lottery-timerbox {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ht-lottery-timer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.ht-lottery-timeunit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ht-lottery-timeunit span:first-child {
  font-family: 'Marcellus', serif;
  font-size: 50px;
  color: #f1c40f;
  line-height: 1;
  margin-bottom: 5px;
  text-shadow: 0 0 10px rgba(241, 196, 15, 0.5);
}

.ht-lottery-timeunit span:last-child {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.ht-lottery-timerlabel {
  font-family: 'Marcellus', serif;
  font-size: 24px;
  color: #f1c40f;
}

.ht-lottery-title {
  font-family: 'Marcellus', serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: white;
  text-align: center;
}

.ht-lottery-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.ht-lottery-button {
  background-color: #f1c40f;
  color: #2c3e50;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-family: 'Marcellus', serif;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(241, 196, 15, 0.3);
}

.ht-lottery-button:hover {
  background-color: #f39c12;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(241, 196, 15, 0.4);
}

.ht-lottery-button i {
  margin-right: 10px;
}

.ht-lottery-winners {
  background-color: white;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ht-lottery-winnerstitle {
  font-family: 'Marcellus', serif;
  font-size: 32px;
  margin-bottom: 40px;
  color: #2c3e50;
  text-align: center;
  position: relative;
}

.ht-lottery-winnerstitle::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #e74c3c;
}

.ht-lottery-winnercards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ht-lottery-winnercard {
  display: flex;
  gap: 30px;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid #ecf0f1;
}

.ht-lottery-winnercard:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ht-lottery-winnercard h4 {
  font-family: 'Marcellus', serif;
  font-size: 24px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.ht-lottery-winnerimage {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.ht-lottery-winnerimage:hover {
  transform: scale(1.03);
}

.ht-lottery-winnercard p {
  color: #7f8c8d;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .ht-lottery-upcoming,
  .ht-lottery-winners {
      padding: 50px;
  }
  
  .ht-lottery-title {
      font-size: 32px;
  }
  
  .ht-lottery-timeunit span:first-child {
      font-size: 40px;
  }
}

@media (max-width: 768px) {
  .ht-lottery-upcoming,
  .ht-lottery-winners {
      padding: 40px 30px;
  }
  
  .ht-lottery-timer {
      gap: 15px;
  }
  
  .ht-lottery-winnercard {
      flex-direction: column;
  }
  
  .ht-lottery-winnerimage {
      width: 100%;
      height: auto;
      max-height: 300px;
  }
  
  .ht-lottery-title,
  .ht-lottery-winnerstitle {
      font-size: 28px;
  }
}

@media (max-width: 480px) {
  .ht-lottery-section {
      padding: 60px 15px;
  }
  
  .ht-lottery-upcoming,
  .ht-lottery-winners {
      padding: 30px 20px;
  }
  
  .ht-lottery-timer {
      flex-wrap: wrap;
  }
  
  .ht-lottery-timeunit {
      width: calc(50% - 10px);
      margin-bottom: 15px;
  }
  
  .ht-lottery-description {
      font-size: 16px;
  }
  
  .ht-lottery-button {
      width: 100%;
      padding: 14px;
  }
}

@media (max-width: 320px) {
  .ht-lottery-timeunit span:first-child {
      font-size: 32px;
  }
  
  .ht-lottery-timerlabel {
      font-size: 20px;
  }
  
  .ht-lottery-title,
  .ht-lottery-winnerstitle {
      font-size: 26px;
  }
}

.ht-testimonials-section {
  width: 100%;
  padding: 100px 0;
  position: relative;
  background-image: url('../ht-image/ht-background-img-1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.ht-testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
}

.ht-testimonials-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 62, 80, 0.85);
}

.ht-testimonials-title {
  font-family: 'Marcellus', serif;
  font-size: 42px;
  margin-bottom: 20px;
  color: #f1c40f;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.ht-testimonials-description {
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #ecf0f1;
}

.ht-testimonials-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  padding: 0 50px;
}

.ht-testimonials-track {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  gap: 30px;
  padding: 20px 0;
}

.ht-testimonials-card {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  min-width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: #2c3e50;
  transition: transform 0.5s ease;
}

.ht-testimonials-rating {
  margin-bottom: 20px;
  color: #f1c40f;
  font-size: 24px;
}

.ht-testimonials-text {
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}

.ht-testimonials-author {
  display: block;
  text-align: right;
  font-weight: 500;
  color: #7f8c8d;
  font-style: italic;
}

.ht-testimonials-arrow {
  background-color: rgba(241, 196, 15, 0.8);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #2c3e50;
  font-size: 24px;
  flex-shrink: 0;
  margin-bottom: 11px;
}

.ht-testimonials-arrow:hover {
  background-color: #f1c40f;
  transform: scale(1.1);
}

@keyframes htCardAppear {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .ht-testimonials-title {
      font-size: 36px;
  }
  
  .ht-testimonials-description {
      font-size: 17px;
  }
}

@media (max-width: 768px) {
  .ht-testimonials-section {
      padding: 80px 20px;
      background-attachment: scroll;
  }
  
  .ht-testimonials-title {
      font-size: 32px;
  }
  
  .ht-testimonials-carousel {
      flex-direction: column;
      padding: 0;
      gap: 15px;
  }
  
  .ht-testimonials-track {
      order: 1;
      width: 100%;
  }
  
  .ht-testimonials-arrow {
      order: 2;
      width: 40px;
      height: 40px;
      font-size: 20px;
      position: static;
      margin-top: 15px;
  }
  
  .ht-testimonials-prev {
      margin-right: 10px;
  }
  
  .ht-testimonials-next {
      margin-left: 10px;
  }
  
  .ht-testimonials-arrows-container {
      display: flex;
      justify-content: center;
      gap: 55px;
      width: 100%;
      order: 2;
      margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .ht-testimonials-title {
      font-size: 28px;
  }
  
  .ht-testimonials-description {
      font-size: 16px;
      margin-bottom: 30px;
  }
  
  .ht-testimonials-card {
      padding: 20px;
  }
}

@media (max-width: 320px) {
  .ht-testimonials-title {
      font-size: 26px;
  }
  
  .ht-testimonials-text {
      font-size: 15px;
  }
}

.ht-faq-section {
  width: 100%;
  padding: 80px 0;
  background-color: #f0f7f4;
}

.ht-faq-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.ht-faq-content {
  flex: 1;
  min-width: 0;
}

.ht-faq-title {
  font-family: 'Marcellus', serif;
  font-size: 42px;
  color: #2c3e50;
  margin-bottom: 15px;
  text-align: center;
}

.ht-faq-subtitle {
  font-size: 18px;
  color: #7f8c8d;
  text-align: center;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ht-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ht-faq-item {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ht-faq-question {
  width: 100%;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.ht-faq-question:hover {
  background-color: #f8f9fa;
}

.ht-faq-question span {
  font-family: 'Marcellus', serif;
  font-size: 20px;
  color: #2c3e50;
  font-weight: normal;
}

.ht-faq-question i {
  font-size: 24px;
  color: #3498db;
  transition: transform 0.3s ease;
}

.ht-faq-question.active i {
  transform: rotate(180deg);
}

.ht-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.ht-faq-answer p {
  padding: 0 25px 20px;
  color: #7f8c8d;
  line-height: 1.8;
}

.ht-faq-imagebox {
  flex: 1;
  min-width: 0;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 15px 15px 0 rgba(33, 150, 105, 0.1);
  align-self: stretch;
}

.ht-faq-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ht-faq-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: #219669;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.ht-faq-badge i {
  font-size: 20px;
}

@keyframes htFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .ht-faq-container {
      gap: 30px;
  }
  
  .ht-faq-title {
      font-size: 36px;
  }
  
  .ht-faq-question span {
      font-size: 18px;
  }
}

@media (max-width: 768px) {
  .ht-faq-container {
      flex-direction: column;
  }
  
  .ht-faq-imagebox {
      width: 100%;
      height: 300px;
  }
  
  .ht-faq-title {
      font-size: 32px;
  }
}

@media (max-width: 480px) {
  .ht-faq-section {
      padding: 60px 0;
  }
  
  .ht-faq-title {
      font-size: 28px;
  }
  
  .ht-faq-subtitle {
      font-size: 16px;
  }
  
  .ht-faq-question {
      padding: 15px 20px;
  }
}

@media (max-width: 320px) {
  .ht-faq-title {
      font-size: 26px;
  }
  
  .ht-faq-question span {
      font-size: 16px;
  }
}

.ht-advantages-section {
  width: 100%;
  padding: 100px 0;
  position: relative;
  background-image: url('../ht-image/ht-background-img-2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.ht-advantages-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(142, 68, 173, 0.85);
}

.ht-advantages-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
}

.ht-advantages-title {
  font-family: 'Marcellus', serif;
  font-size: 42px;
  margin-bottom: 20px;
  color: #f1c40f;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.ht-advantages-description {
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #ecf0f1;
}

.ht-advantages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.ht-advantages-card {
  background-color: white;
  border-radius: 15px;
  padding: 40px 30px;
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  color: #2c3e50;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ht-advantages-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.ht-advantages-card i {
  font-size: 50px;
  color: #8e44ad;
  margin-bottom: 20px;
  display: block;
}

.ht-advantages-card h3 {
  font-family: 'Marcellus', serif;
  font-size: 24px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.ht-advantages-card p {
  line-height: 1.8;
  color: #7f8c8d;
}

@keyframes htCardFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

@media (max-width: 1024px) {
  .ht-advantages-title {
      font-size: 36px;
  }
  
  .ht-advantages-card {
      padding: 30px 25px;
  }
}

@media (max-width: 768px) {
  .ht-advantages-section {
      padding: 80px 0;
      background-attachment: scroll;
  }
  
  .ht-advantages-title {
      font-size: 32px;
  }
  
  .ht-advantages-description {
      font-size: 17px;
  }
  
  .ht-advantages-grid {
      gap: 20px;
  }
}

@media (max-width: 480px) {
  .ht-advantages-section {
      padding: 60px 0;
  }
  
  .ht-advantages-title {
      font-size: 28px;
  }
  
  .ht-advantages-description {
      font-size: 16px;
      margin-bottom: 30px;
  }
  
  .ht-advantages-card {
      min-width: 100%;
  }
}

@media (max-width: 320px) {
  .ht-advantages-title {
      font-size: 26px;
  }
  
  .ht-advantages-card i {
      font-size: 40px;
  }
  
  .ht-advantages-card h3 {
      font-size: 22px;
  }
}

.ht-footer-section {
  width: 100%;
  background-color: #2c3e50;
  color: white;
  padding: 60px 0 30px;
  border-top: 5px solid #f1c40f;
}

.ht-footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.ht-footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ht-footer-brand {
  flex: 1;
  min-width: 200px;
}

.ht-footer-logo {
  max-width: 180px;
  height: auto;
  transition: transform 0.3s ease;
}

.ht-footer-logo:hover {
  transform: scale(1.05);
}

.ht-footer-disclaimer {
  flex: 3;
  width: 300px;
}

.ht-footer-heading {
  font-family: 'Marcellus', serif;
  font-size: 24px;
  margin-bottom: 20px;
  color: #f1c40f;
}

.ht-footer-disclaimer p {
  line-height: 1.8;
  color: #bdc3c7;
  font-size: 15px;
}

.ht-footer-links {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ht-footer-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ht-footer-link:hover {
  color: #f1c40f;
}

.ht-footer-link i {
  font-size: 18px;
}

.ht-footer-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ht-footer-partners img {
  opacity: 0.8;
  transition: opacity 0.3s ease;
  background-color: #fff;
  padding: 4px;
  border-radius: 2px;
}

.ht-footer-partners img:hover {
  opacity: 1;
}

.ht-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.ht-footer-copyright {
  color: #bdc3c7;
  font-size: 14px;
}

.ht-footer-contact {
  color: #bdc3c7;
  font-size: 14px;
}

.ht-footer-contact a {
  color: #f1c40f;
  text-decoration: none;
}

.ht-footer-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .ht-footer-top {
      gap: 30px;
  }
  
  .ht-footer-disclaimer {
      flex: 2;
  }
}

@media (max-width: 768px) {
  .ht-footer-top {
      flex-direction: column;
  }
  
  .ht-footer-brand {
      text-align: center;
  }
  
  .ht-footer-logo {
      margin: 0 auto;
  }
  
  .ht-footer-partners {
      gap: 20px;
  }
}

@media (max-width: 480px) {
  .ht-footer-section {
      padding: 40px 0 20px;
  }
  
  .ht-footer-partners img {
      width: 150px;
      height: 56px;
  }
  
  .ht-footer-partners img[width="75"] {
      width: 56px;
      height: 56px;
  }
  
  .ht-footer-bottom {
      flex-direction: column;
      text-align: center;
  }
}

@media (max-width: 320px) {
  .ht-footer-partners {
      gap: 15px;
  }
  
  .ht-footer-partners img {
      width: 120px;
      height: 45px;
  }
  
  .ht-footer-partners img[width="75"] {
      width: 45px;
      height: 45px;
  }

  .ht-footer-disclaimer {
    width: 250px;
  }
}

.ht-ageverify-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.99);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.ht-ageverify-wrapper {
  max-width: 500px;
  width: 90%;
  background-color: #1a1a2e;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid #f1c40f;
}

.ht-ageverify-icon {
  font-size: 60px;
  color: #f1c40f;
  margin-bottom: 20px;
}

.ht-ageverify-heading {
  font-family: 'Marcellus', serif;
  font-size: 28px;
  color: white;
  margin-bottom: 20px;
}

.ht-ageverify-description {
  font-family: 'Cabin', sans-serif;
  color: #bdc3c7;
  line-height: 1.7;
  margin-bottom: 30px;
}

.ht-ageverify-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.ht-ageverify-confirm {
  background-color: #27ae60;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-family: 'Marcellus', serif;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ht-ageverify-confirm:hover {
  background-color: #219653;
  transform: translateY(-2px);
}

.ht-ageverify-decline {
  background-color: #e74c3c;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-family: 'Marcellus', serif;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ht-ageverify-decline:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

.ht-cookieconsent-notice {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  width: 90%;
  background-color: #2c3e50;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  z-index: 9998;
  display: none;
}

.ht-cookieconsent-panel {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ht-cookieconsent-icon {
  font-size: 40px;
  color: #f1c40f;
  flex-shrink: 0;
}

.ht-cookieconsent-message {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.ht-cookieconsent-title {
  font-family: 'Marcellus', serif;
  font-size: 20px;
  color: white;
  margin-bottom: 10px;
}

.ht-cookieconsent-text {
  text-align: center;
  font-family: 'Cabin', sans-serif;
  color: #ecf0f1;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 14px;
}

.ht-cookieconsent-link {
  color: #f1c40f;
  text-decoration: none;
}

.ht-cookieconsent-link:hover {
  text-decoration: underline;
}

.ht-cookieconsent-accept {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-family: 'Marcellus', serif;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ht-cookieconsent-accept:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .ht-ageverify-wrapper {
      padding: 30px 20px;
  }
  
  .ht-ageverify-heading {
      font-size: 24px;
  }
  
  .ht-ageverify-description {
      font-size: 15px;
  }
  
  .ht-cookieconsent-panel {
      flex-direction: column;
      text-align: center;
  }
  
  .ht-cookieconsent-icon {
      margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .ht-ageverify-buttons {
      flex-direction: column;
  }
  
  .ht-ageverify-confirm,
  .ht-ageverify-decline {
      width: 100%;
  }
  
  .ht-cookieconsent-notice {
      bottom: 10px;
  }
}

.ht-page-heading {
  background-color: #e8f4f8;
  padding: 4rem 2rem;
  text-align: center;
}

.ht-page-heading-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.ht-page-heading h1 {
  font-family: 'Marcellus', serif;
  font-size: 2.5rem;
  color: #1a5276;
  margin-bottom: 1.5rem;
}

.ht-page-heading p {
  font-size: 1.1rem;
  color: #34495e;
}

.ht-page-heading-decoration {
  font-size: 3rem;
  color: #2980b9;
  margin-bottom: 1.5rem;
  animation: htFloat 3s ease-in-out infinite;
}

.ht-page-contact {
  padding: 5rem 2rem;
  background-color: #ffffff;
}

.ht-page-contact-container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ht-page-contact-illustration {
  font-size: 4rem;
  color: #16a085;
  margin-bottom: 2rem;
  animation: htPulse 2s ease infinite;
}

.ht-page-contact-form {
  width: 100%;
}

.ht-page-form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.ht-page-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #2c3e50;
}

.ht-page-form-group input,
.ht-page-form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #bdc3c7;
  border-radius: 6px;
  font-family: 'Cabin', sans-serif;
  transition: all 0.3s ease;
}

.ht-page-form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.ht-page-form-group input:focus,
.ht-page-form-group textarea:focus {
  border-color: #3498db;
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.ht-page-error-message {
  display: none;
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

.ht-page-submit-btn {
  background-color: #27ae60;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  font-family: 'Marcellus', serif;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.ht-page-submit-btn:disabled {
  background-color: #95a5a6;
  cursor: not-allowed;
}

.ht-page-submit-btn:not(:disabled):hover {
  background-color: #2ecc71;
  transform: translateY(-2px);
}

.ht-page-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.ht-page-modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  animation: htSlideDown 0.4s ease-out;
}

.ht-page-modal-content i {
  font-size: 4rem;
  color: #27ae60;
  margin-bottom: 1rem;
}

.ht-page-modal-content h3 {
  font-family: 'Marcellus', serif;
  color: #1a5276;
  margin-bottom: 1rem;
}

.ht-page-modal-content p {
  margin-bottom: 1.5rem;
  color: #34495e;
}

.ht-page-modal-close {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Cabin', sans-serif;
  transition: background-color 0.3s ease;
}

.ht-page-modal-close:hover {
  background-color: #2980b9;
}

@keyframes htFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes htPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes htSlideDown {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 1024px) {
  .ht-page-heading h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .ht-page-heading {
    padding: 3rem 1.5rem;
  }
  
  .ht-page-heading h1 {
    font-size: 2rem;
  }
  
  .ht-page-contact {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .ht-page-heading {
    padding: 2rem 1rem;
  }
  
  .ht-page-heading h1 {
    font-size: 1.8rem;
  }
  
  .ht-page-heading p {
    font-size: 1rem;
  }
  
  .ht-page-heading-decoration {
    font-size: 2.5rem;
  }
  
  .ht-page-contact-illustration {
    font-size: 3.5rem;
  margin-bottom: 1.5rem;
  }
}

@media (max-width: 320px) {
  .ht-page-heading h1 {
    font-size: 1.6rem;
  }
  
  .ht-page-heading-decoration {
    font-size: 2rem;
  }
  
  .ht-page-contact-illustration {
    font-size: 3rem;
  margin-bottom: 1rem;
  }
  
  .ht-page-form-group {
    margin-bottom: 1rem;
  }
}

.ht-page-banner {
  background-color: #e8f5e9;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ht-page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #2e7d32, #81c784, #2e7d32);
  animation: htColorFlow 8s linear infinite;
}

.ht-page-banner-frame {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.ht-page-banner h1 {
  font-family: 'Marcellus', serif;
  font-size: 2.8rem;
  color: #1b5e20;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.ht-page-banner-ornament {
  font-size: 4rem;
  color: #2e7d32;
  margin-top: 1rem;
  animation: htSpin 8s linear infinite;
}

.ht-page-guidelines {
  padding: 4rem 2rem;
  background-color: #ffffff;
}

.ht-page-guidelines-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.ht-page-guideline-card {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: #f1f8e9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ht-page-guideline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.ht-page-guideline-card i {
  font-size: 2.5rem;
  color: #43a047;
  margin-bottom: 1rem;
  display: inline-block;
}

.ht-page-guideline-card h3 {
  font-family: 'Marcellus', serif;
  color: #2e7d32;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.ht-page-guideline-card p {
  color: #455a64;
  font-size: 0.95rem;
  line-height: 1.7;
}

@keyframes htSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes htColorFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (max-width: 1024px) {
  .ht-page-banner h1 {
    font-size: 2.5rem;
  }
  
  .ht-page-guideline-card {
    flex: 1 1 280px;
  }
}

@media (max-width: 768px) {
  .ht-page-banner {
    padding: 4rem 1.5rem;
  }
  
  .ht-page-banner h1 {
    font-size: 2.2rem;
  }
  
  .ht-page-banner-ornament {
    font-size: 3.5rem;
  }
  
  .ht-page-guidelines {
    padding: 3rem 1.5rem;
  }
  
  .ht-page-guidelines-wrapper {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .ht-page-banner {
    padding: 3rem 1rem;
  }
  
  .ht-page-banner h1 {
    font-size: 1.8rem;
  }
  
  .ht-page-banner-ornament {
    font-size: 3rem;
  }
  
  .ht-page-guideline-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 320px) {
  .ht-page-banner h1 {
    font-size: 1.6rem;
  }
  
  .ht-page-banner-ornament {
    font-size: 2.5rem;
  }
  
  .ht-page-guideline-card {
    padding: 1.5rem;
  }
  
  .ht-page-guideline-card h3 {
    font-size: 1.2rem;
  }
}

.ht-page-privacyheader {
  background-color: #e3f2fd;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
}

.ht-page-privacyheader::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: #1976d2;
  border-radius: 2px;
}

.ht-page-privacyheader-shell {
  max-width: 800px;
  margin: 0 auto;
}

.ht-page-privacyheader h1 {
  font-family: 'Marcellus', serif;
  font-size: 2.8rem;
  color: #0d47a1;
  margin-bottom: 1.5rem;
}

.ht-page-privacyheader-badge {
  font-size: 4rem;
  color: #1976d2;
  margin-top: 1rem;
  display: inline-block;
  animation: htBounce 2s ease infinite;
}

.ht-page-privacycontent {
  padding: 4rem 2rem;
  background-color: #ffffff;
}

.ht-page-privacycontent-box {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.ht-page-privacyitem {
  flex: 1 1 350px;
  max-width: 450px;
  background-color: #f5f9ff;
  padding: 2rem;
  border-radius: 10px;
  border-left: 5px solid #1976d2;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.1);
  transition: all 0.3s ease;
}

.ht-page-privacyitem:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(25, 118, 210, 0.2);
}

.ht-page-privacyitem i {
  font-size: 2.2rem;
  color: #1976d2;
  margin-bottom: 1.2rem;
  display: inline-block;
}

.ht-page-privacyitem h3 {
  font-family: 'Marcellus', serif;
  color: #1565c0;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.ht-page-privacyitem p {
  color: #37474f;
  font-size: 0.95rem;
  line-height: 1.7;
}

@keyframes htBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1024px) {
  .ht-page-privacyheader h1 {
    font-size: 2.5rem;
  }
  
  .ht-page-privacyitem {
    flex: 1 1 320px;
  }
}

@media (max-width: 768px) {
  .ht-page-privacyheader {
    padding: 4rem 1.5rem;
  }
  
  .ht-page-privacyheader h1 {
    font-size: 2.2rem;
  }
  
  .ht-page-privacyheader-badge {
    font-size: 3.5rem;
  }
  
  .ht-page-privacycontent {
    padding: 3rem 1.5rem;
  }
  
  .ht-page-privacycontent-box {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .ht-page-privacyheader {
    padding: 3rem 1rem;
  }
  
  .ht-page-privacyheader h1 {
    font-size: 1.8rem;
  }
  
  .ht-page-privacyheader-badge {
    font-size: 3rem;
  }
  
  .ht-page-privacyitem {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 320px) {
  .ht-page-privacyheader h1 {
    font-size: 1.6rem;
  }
  
  .ht-page-privacyheader-badge {
    font-size: 2.5rem;
  }
  
  .ht-page-privacyitem {
    padding: 1.5rem;
  }
  
  .ht-page-privacyitem h3 {
    font-size: 1.2rem;
  }
}

.ht-page-cookiebanner {
  background-color: #fff8e1;
  padding: 5rem 2rem;
  text-align: center;
  border-bottom: 8px dotted #ffca28;
}

.ht-page-cookiebanner-holder {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.ht-page-cookiebanner h1 {
  font-family: 'Marcellus', serif;
  font-size: 2.8rem;
  color: #ff8f00;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.ht-page-cookiebanner-icon {
  font-size: 4rem;
  color: #ffa000;
  margin-top: 1rem;
  animation: htWiggle 3s ease infinite;
}

.ht-page-cookiepolicy {
  padding: 4rem 2rem;
  background-color: #fffdf7;
}

.ht-page-cookiepolicy-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.ht-page-cookiepoint {
  flex: 1 1 350px;
  max-width: 400px;
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(255, 167, 38, 0.1);
  border-top: 3px solid #ffca28;
  transition: all 0.3s ease;
}

.ht-page-cookiepoint:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(255, 167, 38, 0.2);
}

.ht-page-cookiepoint i {
  font-size: 2.3rem;
  color: #ff9800;
  margin-bottom: 1.2rem;
  display: inline-block;
}

.ht-page-cookiepoint h3 {
  font-family: 'Marcellus', serif;
  color: #ef6c00;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.ht-page-cookiepoint p {
  color: #5d4037;
  font-size: 0.95rem;
  line-height: 1.7;
}

@keyframes htWiggle {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

@media (max-width: 1024px) {
  .ht-page-cookiebanner h1 {
    font-size: 2.5rem;
  }
  
  .ht-page-cookiepoint {
    flex: 1 1 320px;
  }
}

@media (max-width: 768px) {
  .ht-page-cookiebanner {
    padding: 4rem 1.5rem;
  }
  
  .ht-page-cookiebanner h1 {
    font-size: 2.2rem;
  }
  
  .ht-page-cookiebanner-icon {
    font-size: 3.5rem;
  }
  
  .ht-page-cookiepolicy {
    padding: 3rem 1.5rem;
  }
  
  .ht-page-cookiepolicy-wrapper {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .ht-page-cookiebanner {
    padding: 3rem 1rem;
    border-bottom-width: 5px;
  }
  
  .ht-page-cookiebanner h1 {
    font-size: 1.8rem;
  }
  
  .ht-page-cookiebanner-icon {
    font-size: 3rem;
  }
  
  .ht-page-cookiepoint {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 320px) {
  .ht-page-cookiebanner h1 {
    font-size: 1.6rem;
  }
  
  .ht-page-cookiebanner-icon {
    font-size: 2.5rem;
  }
  
  .ht-page-cookiepoint {
    padding: 1.5rem;
  }
  
  .ht-page-cookiepoint h3 {
    font-size: 1.2rem;
  }
}