:root {
    --jo-bg-primary: #0b1512;
    --jo-bg-secondary: #14211c;
    --jo-bg-tertiary: #1b2c25;
    --jo-accent-primary: #e97b3a;
    --jo-accent-secondary: #24b8a6;
    --jo-accent-tertiary: #f2c14e;
    --jo-text-primary: #f6f1e7;
    --jo-text-secondary: #cdbfa7;
    --jo-text-muted: #9d8f7a;
    --jo-border-light: rgba(246, 241, 231, 0.1);
    --jo-border-medium: rgba(246, 241, 231, 0.16);
    --jo-border-strong: rgba(246, 241, 231, 0.22);
    --jo-overlay-dark: rgba(11, 21, 18, 0.85);
    --jo-overlay-medium: rgba(11, 21, 18, 0.7);
    --jo-overlay-light: rgba(11, 21, 18, 0.5);
    --jo-success-color: #2fbf7b;
    --jo-warning-color: #f2c14e;
    --jo-error-color: #e25b5b;
    --jo-radius-small: 8px;
    --jo-radius-medium: 12px;
    --jo-radius-large: 20px;
    --jo-radius-full: 50%;
    --jo-shadow-light: 0 4px 12px rgba(0, 0, 0, 0.15);
    --jo-shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.25);
    --jo-shadow-heavy: 0 12px 36px rgba(0, 0, 0, 0.35);
    --jo-transition-fast: 0.2s ease;
    --jo-transition-medium: 0.3s ease;
    --jo-transition-slow: 0.5s ease;
}

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

body {
    font-family: 'Spectral', serif;
    background-color: var(--jo-bg-primary);
    color: var(--jo-text-primary);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

.ht__fullscreen-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/jo-core/jo-imgs/background-pattern.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.1;
}

.ht__content-container {
    background-color: var(--jo-overlay-medium);
    backdrop-filter: blur(10px);
    margin: 0 auto;
    max-width: 1200px;
    border-radius: var(--jo-radius-large);
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.ht__age-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--jo-bg-secondary);
    border: 1px solid var(--jo-border-strong);
    border-radius: var(--jo-radius-medium);
    padding: 1rem;
    z-index: 1000;
    box-shadow: var(--jo-shadow-heavy);
    animation: ht__age-notification-slide 0.5s ease-out;
}

@keyframes ht__age-notification-slide {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.ht__age-notification-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.ht__age-notification-text {
    font-size: 0.9rem;
    color: var(--jo-text-secondary);
}

.ht__age-notification-button {
    background-color: var(--jo-accent-primary);
    color: white;
    border: none;
    border-radius: var(--jo-radius-small);
    padding: 0.5rem 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--jo-transition-fast);
}

.ht__age-notification-button:hover {
    background-color: var(--jo-accent-secondary);
}

.ht__cookie-consent-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--jo-bg-tertiary);
    border-top: 1px solid var(--jo-border-medium);
    padding: 1.5rem;
    z-index: 999;
    transform: translateY(100%);
    transition: transform var(--jo-transition-medium);
}

.ht__cookie-consent-panel.show {
    transform: translateY(0);
}

.ht__cookie-consent-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ht__cookie-consent-message {
    flex: 1;
    min-width: 300px;
}

.ht__cookie-consent-heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.ht__cookie-consent-description {
    color: var(--jo-text-secondary);
    font-size: 0.9rem;
}

.ht__cookie-consent-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.ht__cookie-consent-link {
    color: var(--jo-accent-secondary);
    text-decoration: none;
    padding: 0.5rem 0;
}

.ht__cookie-consent-accept {
    background-color: var(--jo-accent-primary);
    color: white;
    border: none;
    border-radius: var(--jo-radius-small);
    padding: 0.5rem 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    cursor: pointer;
}

.ht__main-header {
    background-color: var(--jo-overlay-dark);
    backdrop-filter: blur(15px);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--jo-border-light);
}

.ht__header-disclaimer {
    background-color: var(--jo-warning-color);
    color: var(--jo-bg-primary);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
}

.ht__disclaimer-text {
    max-width: 1200px;
    margin: 0 auto;
}

.ht__header-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ht__header-branding {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.ht__header-logo {
    width: 100%;
    max-width: 60px;
    height: 100%;
    max-height: 60px;
}

.ht__header-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(90deg, var(--jo-accent-primary), var(--jo-accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ht__navigation-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
}

.ht__navigation-item {
    position: relative;
}

.ht__navigation-link {
    color: var(--jo-text-primary);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--jo-transition-fast);
}

.ht__navigation-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--jo-accent-primary);
    transition: width var(--jo-transition-medium);
}

.ht__navigation-link:hover {
    color: var(--jo-accent-secondary);
}

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

.ht__mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.ht__toggle-line {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--jo-text-primary);
    transition: transform var(--jo-transition-medium);
}

.ht__welcome-section {
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.ht__welcome-heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--jo-accent-primary), var(--jo-accent-secondary), var(--jo-accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ht__text-gradient-flow 8s ease-in-out infinite;
}

@keyframes ht__text-gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.ht__welcome-subheading {
    margin-bottom: 3rem;
}

.ht__subheading-text {
    font-size: 1.2rem;
    color: var(--jo-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.ht__feature-card {
    background-color: var(--jo-overlay-light);
    border-radius: var(--jo-radius-medium);
    padding: 1.5rem;
    min-width: 180px;
    backdrop-filter: blur(5px);
    border: 1px solid var(--jo-border-light);
    transition: transform var(--jo-transition-medium), border-color var(--jo-transition-fast);
}

.ht__feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--jo-accent-primary);
}

.ht__feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--jo-accent-primary), var(--jo-accent-secondary));
    border-radius: var(--jo-radius-full);
    margin: 0 auto 1rem;
}

.ht__feature-label {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    display: block;
}

.ht__about-platform {
    padding: 4rem 0;
}

.ht__about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.ht__about-image-container {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.ht__about-image {
    width: 100%;
    max-width: 400px;
    height: 100%;
    max-height: 400px;
    border-radius: var(--jo-radius-large);
    border: 2px solid var(--jo-border-medium);
    box-shadow: var(--jo-shadow-heavy);
}

.ht__about-content {
    flex: 1;
    min-width: 250px;
}

.ht__about-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--jo-text-primary);
}

.ht__about-description {
    margin-bottom: 2rem;
}

.ht__description-paragraph {
    margin-bottom: 1rem;
    color: var(--jo-text-secondary);
    line-height: 1.8;
}

.ht__about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.ht__stat-item {
    text-align: center;
}

.ht__stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--jo-accent-primary);
    margin-bottom: 0.5rem;
}

.ht__stat-label {
    color: var(--jo-text-muted);
    font-size: 0.9rem;
}

.ht__platform-features {
    padding: 4rem 0;
}

.ht__features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ht__features-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--jo-text-primary);
}

.ht__features-intro {
    color: var(--jo-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.ht__features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.ht__feature-block-main {
    flex: 2;
    min-width: 300px;
    background: linear-gradient(135deg, var(--jo-bg-secondary), var(--jo-bg-tertiary));
    border-radius: var(--jo-radius-large);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.ht__feature-block-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--jo-text-primary);
}

.ht__feature-block-description {
    color: var(--jo-text-secondary);
    line-height: 1.7;
}

.ht__feature-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--jo-accent-primary) 0%, transparent 70%);
    opacity: 0.2;
    border-radius: var(--jo-radius-full);
}

.ht__features-secondary {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1.5rem;
}

.ht__secondary-feature {
    background-color: var(--jo-overlay-light);
    border-radius: var(--jo-radius-medium);
    padding: 1.5rem;
    backdrop-filter: blur(5px);
    border: 1px solid var(--jo-border-light);
    transition: transform var(--jo-transition-fast);
}

.ht__secondary-feature:hover {
    transform: translateX(3px);
}

.ht__secondary-feature-header {
    margin-bottom: 0.5rem;
}

.ht__secondary-feature-label {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--jo-accent-secondary);
}

.ht__secondary-feature-text {
    color: var(--jo-text-secondary);
    font-size: 0.95rem;
}

.ht__games-collection {
    padding: 4rem 0;
}

.ht__games-introduction {
    text-align: center;
    margin-bottom: 3rem;
}

.ht__games-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--jo-text-primary);
}

.ht__games-subtitle {
    color: var(--jo-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.ht__game-card {
    background-color: var(--jo-bg-secondary);
    border-radius: var(--jo-radius-medium);
    overflow: hidden;
    width: calc(33.333% - 1.34rem);
    min-width: 280px;
    border: 1px solid var(--jo-border-medium);
    transition: transform var(--jo-transition-medium), box-shadow var(--jo-transition-medium);
    position: relative;
}

.ht__game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--jo-shadow-heavy);
    border-color: var(--jo-accent-primary);
}

.ht__game-card-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1rem 1rem 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.ht__game-badge {
    background-color: var(--jo-accent-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--jo-radius-small);
    font-size: 0.8rem;
    font-weight: 600;
}

.ht__game-tag {
    background-color: var(--jo-accent-tertiary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--jo-radius-small);
    font-size: 0.8rem;
    font-weight: 600;
}

.ht__game-image {
    width: 100%;
    height: 100%;
    max-height: 200px;
    display: block;
}

.ht__game-card-content {
    padding: 1.5rem;
}

.ht__game-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--jo-text-primary);
}

.ht__game-link {
    display: inline-block;
    color: var(--jo-accent-secondary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

.ht__game-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform var(--jo-transition-fast);
}

.ht__game-link:hover::after {
    transform: translateX(5px);
}

.ht__community-questions {
    padding: 4rem 0;
}

.ht__questions-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.ht__questions-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--jo-text-primary);
}

.ht__questions-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.ht__question-group {
    flex: 1;
    min-width: 300px;
}

.ht__question-item {
    margin-bottom: 1rem;
    border: 1px solid var(--jo-border-medium);
    border-radius: var(--jo-radius-medium);
    overflow: hidden;
}

.ht__question-button {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--jo-bg-secondary);
    border: none;
    color: var(--jo-text-primary);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: background-color var(--jo-transition-fast);
}

.ht__question-button:hover {
    background-color: var(--jo-bg-tertiary);
}

.ht__question-toggle {
    display: block;
    width: 20px;
    height: 20px;
    position: relative;
}

.ht__question-toggle::before,
.ht__question-toggle::after {
    content: '';
    position: absolute;
    background-color: var(--jo-text-primary);
    transition: transform var(--jo-transition-medium);
}

.ht__question-toggle::before {
    width: 2px;
    height: 12px;
    top: 4px;
    left: 9px;
}

.ht__question-toggle::after {
    width: 12px;
    height: 2px;
    top: 9px;
    left: 4px;
}

.ht__question-button.active .ht__question-toggle::before {
    transform: rotate(90deg);
}

.ht__answer-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--jo-transition-medium), padding var(--jo-transition-medium);
    background-color: var(--jo-bg-tertiary);
}

.ht__question-button.active + .ht__answer-content {
    padding: 1.5rem;
    max-height: 200px;
}

.ht__community-feedback {
    padding: 4rem 0;
}

.ht__feedback-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.ht__feedback-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--jo-text-primary);
}

.ht__feedback-subtitle {
    color: var(--jo-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.ht__feedback-card {
    background-color: var(--jo-bg-secondary);
    border-radius: var(--jo-radius-medium);
    padding: 1.5rem;
    width: calc(25% - 1.5rem);
    min-width: 250px;
    border: 1px solid var(--jo-border-medium);
    transition: transform var(--jo-transition-medium);
}

.ht__feedback-card:hover {
    transform: translateY(-5px);
    border-color: var(--jo-accent-secondary);
}

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

.ht__feedback-avatar {
    width: 100%;
    max-width: 80px;
    height: 100%;
    max-height: 80px;
    border-radius: var(--jo-radius-full);
    border: 2px solid var(--jo-accent-primary);
}

.ht__feedback-user {
    flex: 1;
    min-width: 120px;
}

.ht__feedback-name {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.ht__feedback-location {
    display: block;
    color: var(--jo-text-muted);
    font-size: 0.9rem;
}

.ht__feedback-date {
    color: var(--jo-text-muted);
    font-size: 0.9rem;
}

.ht__feedback-text {
    color: var(--jo-text-secondary);
    margin-bottom: 1rem;
    font-style: italic;
    min-height: 80px;
}

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

.ht__rating-star {
    display: block;
    width: 16px;
    height: 16px;
    background-color: var(--jo-accent-primary);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.ht__responsible-entertainment {
    padding: 4rem 0;
    background-color: var(--jo-bg-tertiary);
    border-radius: var(--jo-radius-large);
    margin: 2rem 0;
}

.ht__responsible-content {
    max-width: 1000px;
    margin: 0 auto;
}

.ht__responsible-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--jo-text-primary);
}

.ht__responsible-description {
    text-align: center;
    color: var(--jo-text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.ht__resources-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.ht__resources-info {
    flex: 1;
    min-width: 300px;
}

.ht__resources-text {
    color: var(--jo-text-secondary);
    margin-bottom: 1.5rem;
}

.ht__resources-list {
    list-style: none;
}

.ht__resources-item {
    margin-bottom: 0.75rem;
}

.ht__resources-link {
    color: var(--jo-accent-secondary);
    text-decoration: none;
    padding: 0.25rem 0;
    position: relative;
}

.ht__resources-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--jo-accent-secondary);
    transition: width var(--jo-transition-medium);
}

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

.ht__partner-logos {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.ht__logo-container {
    text-align: center;
}

.ht__partner-logo {
    width: 150px;
    height: 55px;
    object-fit: contain;
    transition: filter var(--jo-transition-medium);
}

.ht__partner-logo:hover {
    filter: grayscale(100%) brightness(100%);
}

.ht__age-restriction {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.ht__contact-information {
    padding: 4rem 0;
}

.ht__contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.ht__contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ht__contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--jo-text-primary);
}

.ht__contact-subtitle {
    color: var(--jo-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.ht__contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.ht__contact-details {
    flex: 1;
    min-width: 300px;
    background-color: var(--jo-bg-secondary);
    border-radius: var(--jo-radius-medium);
    padding: 2rem;
}

.ht__contact-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--jo-border-light);
}

.ht__contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.ht__contact-label {
    display: block;
    color: var(--jo-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.ht__contact-value {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--jo-text-primary);
}

.ht__contact-value[href] {
    color: var(--jo-accent-secondary);
    text-decoration: none;
}

.ht__contact-note {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.ht__note-text {
    color: var(--jo-text-secondary);
    margin-bottom: 2rem;
}

.ht__contact-form-link {
    display: inline-block;
    background-color: var(--jo-accent-primary);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: var(--jo-radius-medium);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    text-align: center;
    transition: background-color var(--jo-transition-fast), transform var(--jo-transition-fast);
}

.ht__contact-form-link:hover {
    background-color: var(--jo-accent-secondary);
    transform: translateY(-2px);
}

.ht__subscription-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--jo-overlay-dark);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--jo-transition-medium), visibility var(--jo-transition-medium);
}

.ht__subscription-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.ht__subscription-modal-container {
    background-color: var(--jo-bg-secondary);
    border-radius: var(--jo-radius-large);
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 1px solid var(--jo-border-medium);
    box-shadow: var(--jo-shadow-heavy);
    transform: scale(0.9);
    transition: transform var(--jo-transition-medium);
}

.ht__subscription-modal-overlay.show .ht__subscription-modal-container {
    transform: scale(1);
}

.ht__subscription-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--jo-text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.ht__subscription-modal-content {
    text-align: center;
}

.ht__subscription-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--jo-text-primary);
}

.ht__subscription-modal-text {
    color: var(--jo-text-secondary);
    margin-bottom: 2rem;
}

.ht__subscription-modal-link {
    display: inline-block;
    color: var(--jo-accent-secondary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--jo-accent-secondary);
    border-radius: var(--jo-radius-medium);
    transition: background-color var(--jo-transition-fast), color var(--jo-transition-fast);
}

.ht__subscription-modal-link:hover {
    background-color: var(--jo-accent-secondary);
    color: var(--jo-bg-primary);
}

.ht__main-footer {
    background-color: var(--jo-overlay-dark);
    backdrop-filter: blur(15px);
    width: 100%;
    border-top: 1px solid var(--jo-border-light);
    margin-top: 4rem;
}

.ht__footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.ht__footer-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.ht__footer-links-group {
    flex: 1;
    min-width: 200px;
}

.ht__footer-group-title {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--jo-text-primary);
}

.ht__footer-link {
    display: block;
    color: var(--jo-text-secondary);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color var(--jo-transition-fast);
}

.ht__footer-link:hover {
    color: var(--jo-accent-secondary);
}

.ht__footer-branding {
    flex: 1;
    min-width: 200px;
}

.ht__footer-brand {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--jo-text-primary);
}

.ht__footer-email {
    display: block;
    color: var(--jo-text-secondary);
}

.ht__footer-email a {
    color: var(--jo-accent-secondary);
    text-decoration: none;
}

.ht__footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--jo-border-light);
}

.ht__copyright-text {
    color: var(--jo-text-muted);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .ht__content-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .ht__welcome-heading {
        font-size: 2.8rem;
    }
    
    .ht__about-grid,
    .ht__features-container,
    .ht__resources-container,
    .ht__contact-content {
        gap: 3rem;
    }
    
    .ht__game-card {
        width: calc(50% - 1rem);
    }
    
    .ht__feedback-card {
        width: calc(33.333% - 1.34rem);
    }
}

@media (max-width: 768px) {
    .ht__mobile-menu-toggle {
        display: flex;
    }
    
    .ht__navigation-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--jo-bg-tertiary);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }
    
    .ht__navigation-list.active {
        display: flex;
    }
    
    .ht__navigation-item {
        width: 100%;
    }
    
    .ht__navigation-link {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--jo-border-light);
    }
    
    .ht__navigation-link:last-child {
        border-bottom: none;
    }
    
    .ht__welcome-heading {
        font-size: 2.2rem;
    }
    
    .ht__about-title,
    .ht__features-title,
    .ht__games-title,
    .ht__questions-title,
    .ht__feedback-title,
    .ht__responsible-title,
    .ht__contact-title {
        font-size: 2rem;
    }
    
    .ht__game-card,
    .ht__feedback-card {
        width: 100%;
        max-width: 400px;
    }
    
    .ht__feature-block-main,
    .ht__features-secondary,
    .ht__question-group,
    .ht__resources-info,
    .ht__partner-logos,
    .ht__contact-details,
    .ht__contact-note {
        min-width: 100%;
    }
    
    .ht__footer-links-group,
    .ht__footer-branding {
        min-width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ht__header-disclaimer {
        display: none;
    }

    .ht__content-container {
        padding: 0.5rem;
        margin: 0 0.5rem;
        border-radius: var(--jo-radius-medium);
    }
    
    .ht__header-navigation {
        padding: 0.5rem;
    }
    
    .ht__welcome-heading {
        font-size: 1.8rem;
    }
    
    .ht__about-title,
    .ht__features-title,
    .ht__games-title,
    .ht__questions-title,
    .ht__feedback-title,
    .ht__responsible-title,
    .ht__contact-title {
        font-size: 1.6rem;
    }
    
    .ht__welcome-section,
    .ht__about-platform,
    .ht__platform-features,
    .ht__games-collection,
    .ht__community-questions,
    .ht__community-feedback,
    .ht__responsible-entertainment,
    .ht__contact-information {
        padding: 2rem 0;
    }
    
    .ht__feature-card,
    .ht__secondary-feature,
    .ht__game-card,
    .ht__feedback-card,
    .ht__contact-details,
    .ht__contact-note {
        padding: 0.5rem;
    }
    
    .ht__question-button,
    .ht__contact-item {
        padding: 0.5rem;
    }
    
    .ht__subscription-modal-container {
        padding: 1rem;
    }
    
    .ht__footer-container {
        padding: 1.5rem 0.5rem;
    }
    
    .ht__cookie-consent-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .ht__cookie-consent-message,
    .ht__cookie-consent-controls {
        min-width: 100%;
    }
    
    .ht__age-notification {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }
}

@media (max-width: 320px) {
    .ht__content-container {
        padding: 0.25rem;
        margin: 0 0.25rem;
    }
    
    .ht__welcome-heading {
        font-size: 1.5rem;
    }
    
    .ht__about-title,
    .ht__features-title,
    .ht__games-title,
    .ht__questions-title,
    .ht__feedback-title,
    .ht__responsible-title,
    .ht__contact-title {
        font-size: 1.3rem;
    }
    
    .ht__header-title {
        font-size: 1.2rem;
    }
    
    .ht__footer-brand {
        font-size: 1.2rem;
    }
    
    .ht__game-card,
    .ht__feedback-card {
        min-width: 100%;
    }
    
    .ht__feature-card,
    .ht__secondary-feature {
        min-width: 100%;
    }
}

.htlspg__privacy-container {
    background-color: #0a1413;
    color: #f0f0f5;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.htlspg__privacy-hero {
    position: relative;
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.htlspg__privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(54, 214, 91, 0.1), rgba(97, 214, 54, 0.05));
    border-radius: 20px;
    z-index: -1;
}

.htlspg__privacy-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.htlspg__privacy-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #36d681, #89d636);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: htlspg__title-glow 8s ease-in-out infinite;
}

@keyframes htlspg__title-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.htlspg__privacy-intro {
    max-width: 800px;
    margin: 0 auto;
}

.htlspg__privacy-intro-text {
    font-size: 1.2rem;
    color: #c0c0d0;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.htlspg__privacy-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem;
    background-color: rgba(30, 45, 35, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.htlspg__privacy-update,
.htlspg__privacy-jurisdiction {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #89d636;
    padding: 0.5rem 1rem;
    background-color: rgba(54, 214, 57, 0.1);
    border-radius: 8px;
}

.htlspg__privacy-sections {
    padding: 2rem 0;
}

.htlspg__privacy-content {
    max-width: 1200px;
    margin: 0 auto;
}

.htlspg__privacy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.htlspg__privacy-card {
    flex: 1;
    min-width: 300px;
    background-color: #14221d;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.htlspg__privacy-card:hover {
    transform: translateY(-5px);
    border-color: #36d681;
}

.htlspg__privacy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #36d681, #89d636);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.htlspg__privacy-card:hover::before {
    opacity: 1;
}

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

.htlspg__privacy-number {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2rem;
    color: #36d681;
    opacity: 0.3;
}

.htlspg__privacy-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #f0f0f5;
    flex: 1;
}

.htlspg__privacy-card-body {
    color: #c0c0d0;
}

.htlspg__privacy-card-text {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.htlspg__privacy-note {
    background-color: rgba(214, 182, 54, 0.1);
    border-left: 3px solid #d6b636;
    padding: 1rem;
    border-radius: 0 8px 8px 0;
}

.htlspg__privacy-note-label {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #d6b636;
    margin-bottom: 0.5rem;
}

.htlspg__privacy-note-text {
    color: #c0c0d0;
    font-size: 0.95rem;
}

.htlspg__privacy-list {
    list-style: none;
    padding-left: 1rem;
}

.htlspg__privacy-list-item {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #c0c0d0;
}

.htlspg__privacy-list-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #89d636;
    font-size: 1.2rem;
}

.htlspg__privacy-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.htlspg__privacy-detail-item {
    flex: 1;
    min-width: 150px;
}

.htlspg__privacy-detail-label {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #89d636;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.htlspg__privacy-detail-value {
    display: block;
    color: #f0f0f5;
    font-size: 1.1rem;
}

.htlspg__privacy-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.htlspg__privacy-timeline-item {
    flex: 1;
    min-width: 150px;
    background-color: rgba(54, 214, 57, 0.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.htlspg__privacy-timeline-period {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #89d636;
    margin-bottom: 0.5rem;
}

.htlspg__privacy-timeline-duration {
    display: block;
    color: #c0c0d0;
    font-size: 0.9rem;
}

.htlspg__privacy-contact {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(54, 214, 91, 0.1);
    border-radius: 8px;
}

.htlspg__privacy-contact-label {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #36d681;
    margin-bottom: 0.5rem;
}

.htlspg__privacy-contact-link {
    display: block;
    color: #89d636;
    text-decoration: none;
    font-size: 1.1rem;
    word-break: break-all;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.htlspg__privacy-contact-link:hover {
    color: #36d681;
}

.htlspg__privacy-response {
    margin-top: 1rem;
    padding: 0.5rem;
    text-align: center;
}

.htlspg__privacy-response-note {
    color: #8a8a9e;
    font-size: 0.9rem;
    font-style: italic;
}

.htlspg__privacy-legal {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(30, 45, 33, 0.8), rgba(20, 34, 20, 0.8));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.htlspg__privacy-legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.htlspg__privacy-legal-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: #f0f0f5;
    margin-bottom: 1.5rem;
    text-align: center;
}

.htlspg__privacy-legal-text {
    color: #c0c0d0;
    line-height: 1.8;
}

.htlspg__privacy-legal-paragraph {
    margin-bottom: 1rem;
}

.htlspg__privacy-legal-paragraph:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .htlspg__privacy-container {
        padding: 1.5rem;
    }
    
    .htlspg__privacy-main-title {
        font-size: 2.5rem;
    }
    
    .htlspg__privacy-grid {
        gap: 1.5rem;
    }
    
    .htlspg__privacy-card {
        min-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .htlspg__privacy-container {
        padding: 1rem;
    }
    
    .htlspg__privacy-main-title {
        font-size: 2rem;
    }
    
    .htlspg__privacy-hero {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }
    
    .htlspg__privacy-intro-text {
        font-size: 1.1rem;
    }
    
    .htlspg__privacy-card {
        min-width: 100%;
    }
    
    .htlspg__privacy-card-title {
        font-size: 1.3rem;
    }
    
    .htlspg__privacy-legal {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .htlspg__privacy-container {
        padding: 0.5rem;
    }
    
    .htlspg__privacy-main-title {
        font-size: 1.8rem;
    }
    
    .htlspg__privacy-intro-text {
        font-size: 1rem;
    }
    
    .htlspg__privacy-meta {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .htlspg__privacy-update,
    .htlspg__privacy-jurisdiction {
        font-size: 0.9rem;
    }
    
    .htlspg__privacy-card {
        padding: 1rem;
    }
    
    .htlspg__privacy-card-title {
        font-size: 1.2rem;
    }
    
    .htlspg__privacy-contact-link {
        font-size: 0.9rem;
    }
    
    .htlspg__privacy-legal {
        padding: 1.5rem 0.5rem;
    }
    
    .htlspg__privacy-legal-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 320px) {
    .htlspg__privacy-container {
        padding: 0.25rem;
    }
    
    .htlspg__privacy-main-title {
        font-size: 1.5rem;
    }
    
    .htlspg__privacy-card {
        padding: 0.75rem;
    }
    
    .htlspg__privacy-contact-link {
        font-size: 0.8rem;
    }
}

.htlspg__terms-container {
    background-color: #0a1413;
    color: #f0f0f5;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.htlspg__terms-header-wrapper {
    position: relative;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(20, 34, 27, 0.9), rgba(10, 10, 20, 0.9));
}

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

.htlspg__terms-header-content {
    text-align: center;
    margin-bottom: 3rem;
}

.htlspg__terms-main-heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #36d681, #89d636, #d68336);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: htlspg__terms-heading-pulse 6s ease-in-out infinite;
}

@keyframes htlspg__terms-heading-pulse {
    0%, 100% { background-size: 100% 100%; }
    50% { background-size: 200% 200%; }
}

.htlspg__terms-subheading {
    max-width: 800px;
    margin: 0 auto;
}

.htlspg__terms-subheading-text {
    font-size: 1.3rem;
    color: #c0c0d0;
    line-height: 1.8;
}

.htlspg__terms-header-decoration {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    background: linear-gradient(135deg, rgba(54, 214, 62, 0.2), rgba(54, 214, 57, 0.1));
    border-radius: 100px 100px 0 0;
    filter: blur(20px);
}

.htlspg__terms-requirements {
    padding: 6rem 2rem;
    position: relative;
}

.htlspg__terms-requirements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #36d681, #89d636, transparent);
}

.htlspg__terms-requirements-content {
    max-width: 1200px;
    margin: 0 auto;
}

.htlspg__terms-requirements-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.htlspg__terms-requirement-card {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(145deg, #14221d, #1e2d2b);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.htlspg__terms-requirement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(54, 214, 62, 0.2);
    border-color: rgba(54, 214, 65, 0.3);
}

.htlspg__terms-requirement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #36d681, #89d636);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    position: relative;
}

.htlspg__terms-requirement-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background-color: #0a1413;
    border-radius: 8px;
    opacity: 0.3;
}

.htlspg__terms-requirement-content {
    position: relative;
    z-index: 1;
}

.htlspg__terms-requirement-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #f0f0f5;
    margin-bottom: 1rem;
}

.htlspg__terms-requirement-text {
    color: #c0c0d0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    min-height: 120px;
}

.htlspg__terms-requirement-note {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: rgba(54, 214, 57, 0.1);
    border-radius: 10px;
    border-left: 3px solid #89d636;
}

.htlspg__terms-requirement-note-label {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #89d636;
    font-size: 0.9rem;
}

.htlspg__terms-requirement-note-text {
    color: #8a8a9e;
    font-size: 0.9rem;
    flex: 1;
}

.htlspg__terms-guidelines {
    padding: 4rem 2rem;
    background-color: rgba(30, 45, 35, 0.5);
    border-radius: 30px;
    margin: 0 2rem;
}

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

.htlspg__terms-guidelines-header {
    text-align: center;
    margin-bottom: 3rem;
}

.htlspg__terms-guidelines-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #f0f0f5;
    margin-bottom: 1rem;
}

.htlspg__terms-guidelines-subtitle {
    color: #c0c0d0;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.htlspg__terms-guidelines-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.htlspg__terms-guidelines-column {
    flex: 1;
    min-width: 250px;
}

.htlspg__terms-guideline-item {
    background-color: rgba(20, 34, 20, 0.8);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.htlspg__terms-guideline-item:hover {
    border-color: #d68336;
    transform: translateX(5px);
}

.htlspg__terms-guideline-item-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #f0f0f5;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.htlspg__terms-guideline-item-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #d68336;
    border-radius: 50%;
}

.htlspg__terms-guideline-item-text {
    color: #c0c0d0;
    line-height: 1.7;
}

.htlspg__terms-modifications {
    padding: 4rem 2rem;
}

.htlspg__terms-modifications-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.htlspg__terms-modifications-content {
    background: linear-gradient(135deg, rgba(54, 214, 91, 0.1), rgba(97, 214, 54, 0.05));
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(54, 214, 62, 0.2);
}

.htlspg__terms-modifications-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 2rem;
    color: #f0f0f5;
    margin-bottom: 1.5rem;
}

.htlspg__terms-modifications-text {
    color: #c0c0d0;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.htlspg__terms-modifications-paragraph {
    margin-bottom: 1rem;
}

.htlspg__terms-modifications-paragraph:last-child {
    margin-bottom: 0;
}

.htlspg__terms-modifications-notice {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background-color: rgba(214, 182, 54, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(214, 182, 54, 0.3);
}

.htlspg__terms-modifications-notice-label {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #d6b636;
}

.htlspg__terms-modifications-notice-text {
    color: #c0c0d0;
    font-size: 0.95rem;
}

.htlspg__terms-contact-section {
    padding: 4rem 2rem;
    background-color: #14221d;
    border-radius: 30px 30px 0 0;
    margin-top: 4rem;
}

.htlspg__terms-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.htlspg__terms-contact-info {
    flex: 1;
    min-width: 250px;
}

.htlspg__terms-contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 2rem;
    color: #f0f0f5;
    margin-bottom: 1rem;
}

.htlspg__terms-contact-text {
    color: #c0c0d0;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.htlspg__terms-contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.htlspg__terms-contact-detail {
    flex: 1;
    min-width: 200px;
    background-color: rgba(30, 45, 33, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.htlspg__terms-contact-detail-label {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #89d636;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.htlspg__terms-contact-detail-value {
    display: block;
    color: #f0f0f5;
    font-size: 1.1rem;
    word-break: break-all;
}

.htlspg__terms-contact-detail-value[href] {
    color: #89d636;
    text-decoration: none;
    transition: color 0.2s ease;
}

.htlspg__terms-contact-detail-value[href]:hover {
    color: #36d681;
}

.htlspg__terms-contact-decoration {
    flex: 1;
    min-width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, rgba(54, 214, 62, 0.2), transparent 70%);
    border-radius: 50%;
    position: relative;
}

.htlspg__terms-contact-decoration::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, rgba(54, 214, 57, 0.1), transparent 70%);
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .htlspg__terms-main-heading {
        font-size: 2.5rem;
    }
    
    .htlspg__terms-requirements-grid {
        gap: 2rem;
    }
    
    .htlspg__terms-requirement-card {
        min-width: calc(50% - 1rem);
    }
    
    .htlspg__terms-guidelines-content {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .htlspg__terms-container {
        padding: 0 1rem;
    }
    
    .htlspg__terms-header-wrapper {
        padding: 3rem 1rem;
    }
    
    .htlspg__terms-main-heading {
        font-size: 2rem;
    }
    
    .htlspg__terms-subheading-text {
        font-size: 1.1rem;
    }
    
    .htlspg__terms-requirements {
        padding: 4rem 1rem;
    }
    
    .htlspg__terms-requirement-card {
        min-width: 100%;
        padding: 2rem;
    }
    
    .htlspg__terms-requirement-text {
        min-height: auto;
    }
    
    .htlspg__terms-guidelines {
        margin: 0 1rem;
        padding: 3rem 1rem;
    }
    
    .htlspg__terms-guidelines-title {
        font-size: 2rem;
    }
    
    .htlspg__terms-modifications {
        padding: 3rem 1rem;
    }
    
    .htlspg__terms-modifications-content {
        padding: 2rem;
    }
    
    .htlspg__terms-contact-section {
        padding: 3rem 1rem;
        margin-top: 2rem;
    }
    
    .htlspg__terms-contact-container {
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .htlspg__terms-container {
        padding: 0 0.5rem;
    }
    
    .htlspg__terms-header-wrapper {
        padding: 2rem 0.5rem;
    }
    
    .htlspg__terms-main-heading {
        font-size: 1.8rem;
    }
    
    .htlspg__terms-subheading-text {
        font-size: 1rem;
    }
    
    .htlspg__terms-requirements {
        padding: 3rem 0.5rem;
    }
    
    .htlspg__terms-requirement-card {
        padding: 1.5rem;
    }
    
    .htlspg__terms-requirement-title {
        font-size: 1.3rem;
    }
    
    .htlspg__terms-guidelines {
        margin: 0 0.5rem;
        padding: 2rem 0.5rem;
        border-radius: 20px;
    }
    
    .htlspg__terms-guidelines-title {
        font-size: 1.8rem;
    }
    
    .htlspg__terms-guideline-item {
        padding: 1.5rem 0.3rem; 
        margin-bottom: 1.5rem;
    }
    
    .htlspg__terms-modifications {
        padding: 2rem 0.5rem;
    }
    
    .htlspg__terms-modifications-content {
        padding: 1.5rem;
    }
    
    .htlspg__terms-modifications-title {
        font-size: 1.6rem;
    }
    
    .htlspg__terms-contact-section {
        padding: 2rem 0.5rem;
        border-radius: 20px 20px 0 0;
    }
    
    .htlspg__terms-contact-detail-value {
        font-size: 0.9rem;
    }
    
    .htlspg__terms-contact-detail-value[href] {
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .htlspg__terms-container {
        padding: 0 0.25rem;
    }
    
    .htlspg__terms-header-wrapper {
        padding: 1.5rem 0.25rem;
    }
    
    .htlspg__terms-main-heading {
        font-size: 1.5rem;
    }
    
    .htlspg__terms-requirements {
        padding: 2rem 0.25rem;
    }
    
    .htlspg__terms-requirement-card {
        padding: 1rem;
    }
    
    .htlspg__terms-guidelines {
        margin: 0 0.25rem;
        padding: 1.5rem 0.25rem;
    }
    
    .htlspg__terms-contact-detail-value[href] {
        font-size: 0.8rem;
    }
}

.htlspg__cookies-container {
    background-color: #0a1413;
    color: #f0f0f5;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.htlspg__cookies-hero-section {
    padding: 5rem 2rem;
    position: relative;
    background: linear-gradient(135deg, rgba(20, 34, 27, 0.9), rgba(30, 45, 37, 0.7));
    border-bottom: 1px solid rgba(54, 214, 65, 0.3);
}

.htlspg__cookies-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(54, 214, 91, 0.1), transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(54, 214, 57, 0.1), transparent 50%);
    z-index: -1;
}

.htlspg__cookies-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.htlspg__cookies-hero-text {
    flex: 1;
    min-width: 300px;
}

.htlspg__cookies-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #36d681, #89d636);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: htlspg__cookies-title-shimmer 8s ease-in-out infinite;
}

@keyframes htlspg__cookies-title-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.htlspg__cookies-hero-description {
    max-width: 600px;
}

.htlspg__cookies-hero-paragraph {
    font-size: 1.3rem;
    color: #c0c0d0;
    line-height: 1.8;
}

.htlspg__cookies-hero-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.htlspg__cookies-visual-element {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #36d681, #89d636);
    border-radius: 20px;
    position: relative;
    animation: htlspg__cookies-visual-float 6s ease-in-out infinite;
}

.htlspg__cookies-visual-element:nth-child(2) {
    background: linear-gradient(135deg, #89d636, #d68336);
    animation-delay: 1s;
    margin-top: 2rem;
}

.htlspg__cookies-visual-element:nth-child(3) {
    background: linear-gradient(135deg, #d68336, #36d681);
    animation-delay: 2s;
    margin-top: 4rem;
}

@keyframes htlspg__cookies-visual-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

.htlspg__cookies-explanation {
    padding: 4rem 2rem;
}

.htlspg__cookies-explanation-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.htlspg__cookies-explanation-header {
    text-align: center;
    margin-bottom: 4rem;
}

.htlspg__cookies-explanation-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #f0f0f5;
    margin-bottom: 1rem;
}

.htlspg__cookies-explanation-subtitle {
    color: #c0c0d0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.htlspg__cookies-explanation-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.htlspg__cookies-explanation-card {
    flex: 1;
    min-width: 300px;
    perspective: 1000px;
}

.htlspg__cookies-explanation-card-inner {
    background-color: #14221d;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    height: 100%;
}

.htlspg__cookies-explanation-card:hover .htlspg__cookies-explanation-card-inner {
    transform: rotateY(10deg) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(54, 214, 62, 0.2);
}

.htlspg__cookies-explanation-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(54, 214, 62, 0.2);
    color: #36d681;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.htlspg__cookies-explanation-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #f0f0f5;
    margin-bottom: 1rem;
}

.htlspg__cookies-explanation-card-text {
    color: #c0c0d0;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.htlspg__cookies-explanation-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.htlspg__cookies-explanation-detail {
    flex: 1;
    min-width: 120px;
}

.htlspg__cookies-explanation-detail-name {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #89d636;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.htlspg__cookies-explanation-detail-value {
    display: block;
    color: #f0f0f5;
    font-size: 1rem;
}

.htlspg__cookies-management {
    padding: 4rem 2rem;
    background-color: rgba(30, 45, 35, 0.5);
    border-radius: 30px;
    margin: 2rem;
}

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

.htlspg__cookies-management-header {
    text-align: center;
    margin-bottom: 4rem;
}

.htlspg__cookies-management-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #f0f0f5;
    margin-bottom: 1rem;
}

.htlspg__cookies-management-subtitle {
    color: #c0c0d0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.htlspg__cookies-management-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.htlspg__cookies-management-method {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(145deg, #14221d, #1e2d2b);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.htlspg__cookies-management-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #36d681, #89d636);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.htlspg__cookies-management-method:hover::before {
    transform: scaleX(1);
}

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

.htlspg__cookies-method-number {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2rem;
    color: rgba(54, 214, 65, 0.3);
}

.htlspg__cookies-method-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: #f0f0f5;
    flex: 1;
}

.htlspg__cookies-method-body {
    color: #c0c0d0;
}

.htlspg__cookies-method-text {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.htlspg__cookies-method-tip {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
    background-color: rgba(214, 182, 54, 0.1);
    border-radius: 8px;
    border-left: 3px solid #d6b636;
}

.htlspg__cookies-method-tip-label {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #d6b636;
    font-size: 0.9rem;
}

.htlspg__cookies-method-tip-text {
    color: #c0c0d0;
    font-size: 0.95rem;
    flex: 1;
}

.htlspg__cookies-data-section {
    padding: 4rem 2rem;
}

.htlspg__cookies-data-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.htlspg__cookies-data-content {
    text-align: center;
}

.htlspg__cookies-data-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #f0f0f5;
    margin-bottom: 1.5rem;
}

.htlspg__cookies-data-description {
    color: #c0c0d0;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.htlspg__cookies-data-paragraph {
    margin-bottom: 1.5rem;
}

.htlspg__cookies-data-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.htlspg__cookies-data-type {
    flex: 1;
    min-width: 200px;
    background-color: rgba(54, 214, 91, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(54, 214, 65, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.htlspg__cookies-data-type:hover {
    transform: translateY(-5px);
    background-color: rgba(54, 214, 62, 0.2);
}

.htlspg__cookies-data-type-name {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #f0f0f5;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.htlspg__cookies-data-type-desc {
    display: block;
    color: #c0c0d0;
    font-size: 0.9rem;
}

.htlspg__cookies-contact {
    padding: 4rem 2rem;
    background-color: #14221d;
    border-radius: 30px 30px 0 0;
    margin-top: 4rem;
}

.htlspg__cookies-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.htlspg__cookies-contact-info {
    flex: 1;
    min-width: 260px;
}

.htlspg__cookies-contact-heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 2rem;
    color: #f0f0f5;
    margin-bottom: 1rem;
}

.htlspg__cookies-contact-text {
    color: #c0c0d0;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.htlspg__cookies-contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.htlspg__cookies-contact-detail {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background-color: rgba(30, 45, 33, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.htlspg__cookies-contact-detail-label {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #89d636;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.htlspg__cookies-contact-detail-value {
    display: block;
    color: #f0f0f5;
    font-size: 1.1rem;
    word-break: break-all;
}

.htlspg__cookies-contact-detail-value[href] {
    color: #89d636;
    text-decoration: none;
    transition: color 0.2s ease;
}

.htlspg__cookies-contact-detail-value[href]:hover {
    color: #36d681;
}

.htlspg__cookies-contact-note {
    flex: 1;
    min-width: 260px;
    padding: 2rem;
    background-color: rgba(54, 214, 57, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(54, 214, 81, 0.3);
}

.htlspg__cookies-contact-note-text {
    color: #c0c0d0;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .htlspg__cookies-main-title {
        font-size: 2.5rem;
    }
    
    .htlspg__cookies-explanation-grid {
        gap: 2rem;
    }
    
    .htlspg__cookies-explanation-card {
        min-width: calc(50% - 1rem);
    }
    
    .htlspg__cookies-management {
        margin: 2rem 1rem;
    }
}

@media (max-width: 768px) {
    .htlspg__cookies-hero-section {
        padding: 3rem 1rem;
    }
    
    .htlspg__cookies-main-title {
        font-size: 2rem;
    }
    
    .htlspg__cookies-hero-paragraph {
        font-size: 1.1rem;
    }
    
    .htlspg__cookies-hero-content {
        gap: 3rem;
    }
    
    .htlspg__cookies-explanation {
        padding: 3rem 1rem;
    }
    
    .htlspg__cookies-explanation-title,
    .htlspg__cookies-management-title,
    .htlspg__cookies-data-title {
        font-size: 2rem;
    }
    
    .htlspg__cookies-explanation-card {
        min-width: 100%;
    }
    
    .htlspg__cookies-management {
        margin: 1rem;
        padding: 3rem 1rem;
        border-radius: 20px;
    }
    
    .htlspg__cookies-management-content {
        gap: 1.5rem;
    }
    
    .htlspg__cookies-management-method {
        min-width: 100%;
        padding: 1.5rem;
    }
    
    .htlspg__cookies-data-section {
        padding: 3rem 1rem;
    }
    
    .htlspg__cookies-data-types {
        gap: 1.5rem;
    }
    
    .htlspg__cookies-data-type {
        min-width: 100%;
    }
    
    .htlspg__cookies-contact {
        padding: 3rem 1rem;
        border-radius: 20px 20px 0 0;
        margin-top: 2rem;
    }
    
    .htlspg__cookies-contact-container {
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .htlspg__cookies-container {
        padding: 0 0.5rem;
    }
    
    .htlspg__cookies-hero-section {
        padding: 2rem 0.5rem;
    }
    
    .htlspg__cookies-main-title {
        font-size: 1.8rem;
    }
    
    .htlspg__cookies-hero-paragraph {
        font-size: 1rem;
    }
    
    .htlspg__cookies-hero-visual {
        gap: 1rem;
    }
    
    .htlspg__cookies-visual-element {
        width: 60px;
        height: 60px;
    }
    
    .htlspg__cookies-explanation {
        padding: 2rem 0.5rem;
    }
    
    .htlspg__cookies-explanation-title,
    .htlspg__cookies-management-title,
    .htlspg__cookies-data-title {
        font-size: 1.8rem;
    }
    
    .htlspg__cookies-explanation-subtitle,
    .htlspg__cookies-management-subtitle {
        font-size: 1rem;
    }
    
    .htlspg__cookies-explanation-card-inner {
        padding: 1.5rem;
    }
    
    .htlspg__cookies-management {
        margin: 0.5rem;
        padding: 2rem 0.5rem;
        border-radius: 15px;
    }
    
    .htlspg__cookies-management-method {
        padding: 1rem;
    }
    
    .htlspg__cookies-data-section {
        padding: 2rem 0.5rem;
    }
    
    .htlspg__cookies-data-type {
        padding: 1.5rem;
    }
    
    .htlspg__cookies-contact {
        padding: 2rem 0.5rem;
        border-radius: 15px 15px 0 0;
    }
    
    .htlspg__cookies-contact-detail-value {
        font-size: 0.9rem;
    }
    
    .htlspg__cookies-contact-detail-value[href] {
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .htlspg__cookies-container {
        padding: 0 0.25rem;
    }
    
    .htlspg__cookies-hero-section {
        padding: 1.5rem 0.25rem;
    }
    
    .htlspg__cookies-main-title {
        font-size: 1.5rem;
    }
    
    .htlspg__cookies-hero-visual {
        gap: 0.5rem;
    }
    
    .htlspg__cookies-visual-element {
        width: 50px;
        height: 50px;
    }
    
    .htlspg__cookies-explanation-card-inner {
        padding: 1rem;
    }
    
    .htlspg__cookies-contact-detail-value[href] {
        font-size: 0.8rem;
    }
}

.htlspg__responsible-container {
    background-color: #0a1413;
    color: #f0f0f5;
    min-height: 100vh;
    position: relative;
}

.htlspg__responsible-hero-wrapper {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(20, 34, 27, 0.9), rgba(30, 45, 37, 0.7));
    border-bottom: 1px solid rgba(54, 214, 65, 0.3);
    position: relative;
    overflow: hidden;
}

.htlspg__responsible-hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(54, 214, 158, 0.15), transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(54, 214, 57, 0.1), transparent 50%);
    z-index: 0;
}

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

.htlspg__responsible-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #36d681, #89d636, #d68336);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: htlspg__responsible-title-rotate 10s linear infinite;
}

@keyframes htlspg__responsible-title-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.htlspg__responsible-hero-text {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.htlspg__responsible-hero-description {
    font-size: 1.4rem;
    color: #c0c0d0;
    line-height: 1.8;
}

.htlspg__responsible-hero-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, rgba(54, 214, 62, 0.2), rgba(54, 214, 57, 0.1));
    border: 1px solid rgba(54, 214, 110, 0.4);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.htlspg__responsible-badge-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #89d636;
    font-size: 0.95rem;
}

.htlspg__responsible-principles {
    padding: 4rem 2rem;
}

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

.htlspg__responsible-principles-header {
    text-align: center;
    margin-bottom: 4rem;
}

.htlspg__responsible-principles-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #f0f0f5;
    margin-bottom: 1rem;
}

.htlspg__responsible-principles-subtitle {
    color: #c0c0d0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.htlspg__responsible-principles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.htlspg__responsible-principle-card {
    flex: 1;
    min-width: 250px;
    background-color: #14221d;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.htlspg__responsible-principle-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(54, 214, 62, 0.2);
    border-color: rgba(54, 214, 65, 0.3);
}

.htlspg__responsible-principle-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(54, 214, 150, 0.05), transparent 30%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.htlspg__responsible-principle-card:hover::after {
    opacity: 1;
}

.htlspg__responsible-principle-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #36d681, #89d636);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.htlspg__responsible-principle-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.htlspg__responsible-principle-content {
    position: relative;
    z-index: 1;
}

.htlspg__responsible-principle-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: #f0f0f5;
    margin-bottom: 1rem;
}

.htlspg__responsible-principle-description {
    color: #c0c0d0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    min-height: 100px;
}

.htlspg__responsible-principle-tip {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
    background-color: rgba(214, 182, 54, 0.1);
    border-radius: 8px;
    border-left: 3px solid #d6b636;
}

.htlspg__responsible-principle-tip-label {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #d6b636;
    font-size: 0.9rem;
}

.htlspg__responsible-principle-tip-text {
    color: #c0c0d0;
    font-size: 0.95rem;
    flex: 1;
}

.htlspg__responsible-resources {
    padding: 4rem 2rem;
    background-color: rgba(30, 45, 35, 0.5);
    border-radius: 30px;
    margin: 2rem;
}

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

.htlspg__responsible-resources-header {
    text-align: center;
    margin-bottom: 4rem;
}

.htlspg__responsible-resources-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #f0f0f5;
    margin-bottom: 1rem;
}

.htlspg__responsible-resources-subtitle {
    color: #c0c0d0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.htlspg__responsible-resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.htlspg__responsible-resource-card {
    flex: 1;
    min-width: 250px;
    background-color: #14221d;
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.htlspg__responsible-resource-card:hover {
    transform: translateY(-5px);
    border-color: #36d681;
}

.htlspg__responsible-resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #36d681, #89d636);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.htlspg__responsible-resource-card:hover::before {
    opacity: 1;
}

.htlspg__responsible-resource-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #f0f0f5;
    margin-bottom: 1rem;
}

.htlspg__responsible-resource-description {
    color: #c0c0d0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.htlspg__responsible-resource-link {
    display: inline-block;
    color: #89d636;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    background-color: rgba(54, 214, 57, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(54, 214, 81, 0.3);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.htlspg__responsible-resource-link:hover {
    background-color: rgba(54, 214, 81, 0.2);
    color: #36d681;
}

.htlspg__responsible-support {
    padding: 4rem 2rem;
}

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

.htlspg__responsible-support-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #f0f0f5;
    margin-bottom: 1.5rem;
}

.htlspg__responsible-support-description {
    color: #c0c0d0;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.htlspg__responsible-support-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.htlspg__responsible-support-option {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(135deg, rgba(54, 214, 91, 0.1), rgba(97, 214, 54, 0.05));
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(54, 214, 62, 0.2);
}

.htlspg__responsible-support-option-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #f0f0f5;
    margin-bottom: 1rem;
}

.htlspg__responsible-support-option-text {
    color: #c0c0d0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.htlspg__responsible-support-option-contact {
    display: block;
    color: #89d636;
    text-decoration: none;
    font-weight: 600;
    word-break: break-all;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.htlspg__responsible-support-option-contact:hover {
    color: #36d681;
}

.htlspg__responsible-reminder {
    padding: 3rem 2rem;
    background-color: #14221d;
    border-radius: 30px 30px 0 0;
    margin-top: 4rem;
}

.htlspg__responsible-reminder-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.htlspg__responsible-reminder-content {
    flex: 1;
    min-width: 230px;
}

.htlspg__responsible-reminder-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: #f0f0f5;
    margin-bottom: 1rem;
}

.htlspg__responsible-reminder-text {
    color: #c0c0d0;
    line-height: 1.7;
}

.htlspg__responsible-reminder-badge {
    flex: none;
    padding: 1.5rem 2.5rem;
    background: linear-gradient(135deg, #36d681, #89d636);
    border-radius: 15px;
    color: #f0f0f5;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
}

@media (max-width: 1024px) {
    .htlspg__responsible-main-title {
        font-size: 2.5rem;
    }
    
    .htlspg__responsible-principles-grid {
        gap: 2rem;
    }
    
    .htlspg__responsible-principle-card {
        min-width: calc(50% - 1rem);
    }
    
    .htlspg__responsible-resources-grid {
        gap: 1.5rem;
    }
    
    .htlspg__responsible-resource-card {
        min-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .htlspg__responsible-container {
        padding: 0 1rem;
    }
    
    .htlspg__responsible-hero-wrapper {
        padding: 3rem 1rem;
    }
    
    .htlspg__responsible-main-title {
        font-size: 2rem;
    }
    
    .htlspg__responsible-hero-description {
        font-size: 1.1rem;
    }
    
    .htlspg__responsible-principles {
        padding: 3rem 1rem;
    }
    
    .htlspg__responsible-principles-title,
    .htlspg__responsible-resources-title,
    .htlspg__responsible-support-title {
        font-size: 2rem;
    }
    
    .htlspg__responsible-principle-card {
        min-width: 100%;
        padding: 1.5rem;
    }
    
    .htlspg__responsible-resources {
        margin: 1rem;
        padding: 3rem 1rem;
        border-radius: 20px;
    }
    
    .htlspg__responsible-resource-card {
        min-width: 100%;
        padding: 1.5rem;
    }
    
    .htlspg__responsible-support {
        padding: 3rem 1rem;
    }
    
    .htlspg__responsible-support-options {
        gap: 1.5rem;
    }
    
    .htlspg__responsible-support-option {
        min-width: 100%;
        padding: 2rem;
    }
    
    .htlspg__responsible-reminder {
        padding: 2rem 1rem;
        border-radius: 20px 20px 0 0;
        margin-top: 2rem;
    }
    
    .htlspg__responsible-reminder-container {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .htlspg__responsible-container {
        padding: 0 0.5rem;
    }
    
    .htlspg__responsible-hero-wrapper {
        padding: 2rem 0.5rem;
    }
    
    .htlspg__responsible-main-title {
        font-size: 1.8rem;
    }
    
    .htlspg__responsible-hero-description {
        font-size: 1rem;
    }
    
    .htlspg__responsible-hero-badge {
        padding: 0.5rem 1rem;
    }
    
    .htlspg__responsible-principles {
        padding: 2rem 0.5rem;
    }
    
    .htlspg__responsible-principles-title,
    .htlspg__responsible-resources-title,
    .htlspg__responsible-support-title {
        font-size: 1.8rem;
    }
    
    .htlspg__responsible-principles-subtitle,
    .htlspg__responsible-resources-subtitle {
        font-size: 1rem;
    }
    
    .htlspg__responsible-principle-card {
        padding: 1rem;
    }
    
    .htlspg__responsible-principle-name {
        font-size: 1.2rem;
    }
    
    .htlspg__responsible-resources {
        margin: 0.5rem;
        padding: 2rem 0.5rem;
        border-radius: 15px;
    }
    
    .htlspg__responsible-resource-card {
        padding: 1rem;
    }
    
    .htlspg__responsible-resource-name {
        font-size: 1.2rem;
    }
    
    .htlspg__responsible-resource-description {
        min-height: auto;
    }
    
    .htlspg__responsible-support {
        padding: 2rem 0.5rem;
    }
    
    .htlspg__responsible-support-option {
        padding: 1.5rem;
    }
    
    .htlspg__responsible-support-option-contact {
        font-size: 0.9rem;
    }
    
    .htlspg__responsible-reminder {
        padding: 1.5rem 0.5rem;
        border-radius: 15px 15px 0 0;
    }
    
    .htlspg__responsible-reminder-badge {
        padding: 1rem 1.5rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 320px) {
    .htlspg__responsible-container {
        padding: 0 0.25rem;
    }
    
    .htlspg__responsible-hero-wrapper {
        padding: 1.5rem 0.25rem;
    }
    
    .htlspg__responsible-main-title {
        font-size: 1.5rem;
    }
    
    .htlspg__responsible-principle-card {
        padding: 0.75rem;
    }
    
    .htlspg__responsible-support-option-contact {
        font-size: 0.8rem;
    }
    
    .htlspg__responsible-reminder-badge {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
}

.htlspg__notfound-container {
    background-color: #0a1413;
    color: #f0f0f5;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden !important;
    padding: 2rem;
}

.htlspg__notfound-content {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.htlspg__notfound-visual {
    flex: 1;
    min-width: 250px;
    height: 400px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.htlspg__notfound-shape {
    position: absolute;
    background: linear-gradient(135deg, #36d681, #89d636);
    border-radius: 20px;
    animation: htlspg__notfound-shape-float 20s ease-in-out infinite;
}

.htlspg__notfound-shape-1 {
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    animation-delay: 0s;
    opacity: 0.3;
}

.htlspg__notfound-shape-2 {
    width: 100px;
    height: 100px;
    top: 50px;
    right: 50px;
    animation-delay: 5s;
    opacity: 0.4;
    background: linear-gradient(135deg, #89d636, #d68336);
}

.htlspg__notfound-shape-3 {
    width: 80px;
    height: 80px;
    bottom: 100px;
    left: 100px;
    animation-delay: 10s;
    opacity: 0.5;
    background: linear-gradient(135deg, #d68336, #36d681);
}

.htlspg__notfound-shape-4 {
    width: 120px;
    height: 120px;
    bottom: 0;
    right: 0;
    animation-delay: 15s;
    opacity: 0.3;
}

@keyframes htlspg__notfound-shape-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(12px, -12px) rotate(90deg);
    }
    50% {
        transform: translate(-7px, 7px) rotate(180deg);
    }
    75% {
        transform: translate(3px, -3px) rotate(270deg);
    }
}

.htlspg__notfound-number {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 8rem;
    background: linear-gradient(135deg, #36d681, #89d636, #d68336);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
    animation: htlspg__notfound-number-pulse 3s ease-in-out infinite;
}

@keyframes htlspg__notfound-number-pulse {
    0%, 100% {
        transform: scale(0.3);
        opacity: 1;
    }
    50% {
        transform: scale(0.5);
        opacity: 0.8;
    }
}

.htlspg__notfound-text {
    flex: 1;
    min-width: 250px;
}

.htlspg__notfound-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 3rem;
    color: #f0f0f5;
    margin-bottom: 1.5rem;
    position: relative;
}

.htlspg__notfound-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #36d681, #89d636);
    border-radius: 2px;
}

.htlspg__notfound-description {
    margin-bottom: 3rem;
}

.htlspg__notfound-message {
    color: #c0c0d0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.htlspg__notfound-suggestion {
    color: #8a8a9e;
    line-height: 1.6;
    font-size: 1rem;
}

.htlspg__notfound-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.htlspg__notfound-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #36d681, #89d636);
    color: #f0f0f5;
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.htlspg__notfound-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(54, 214, 110, 0.4);
}

.htlspg__notfound-contact {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: rgba(30, 45, 33, 0.8);
    color: #89d636;
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    border: 1px solid rgba(54, 214, 81, 0.3);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.htlspg__notfound-contact:hover {
    background-color: rgba(54, 214, 57, 0.1);
    color: #36d681;
}

.htlspg__notfound-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    background-color: rgba(20, 34, 20, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.htlspg__notfound-info-item {
    flex: 1;
    min-width: 200px;
}

.htlspg__notfound-info-label {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #89d636;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.htlspg__notfound-info-value {
    display: block;
    color: #f0f0f5;
    font-size: 1.1rem;
}

.htlspg__notfound-info-value[href] {
    color: #89d636;
    text-decoration: none;
    word-break: break-all;
    transition: color 0.2s ease;
}

.htlspg__notfound-info-value[href]:hover {
    color: #36d681;
}

.htlspg__notfound-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.htlspg__notfound-particle {
    position: absolute;
    background: linear-gradient(135deg, rgba(54, 214, 91, 0.1), rgba(97, 214, 54, 0.05));
    border-radius: 50%;
    animation: htlspg__notfound-particle-float 30s linear infinite;
}

.htlspg__notfound-particle:nth-child(1) {
    width: 50px;
    height: 50px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.htlspg__notfound-particle:nth-child(2) {
    width: 30px;
    height: 30px;
    top: 20%;
    right: 15%;
    animation-delay: 5s;
}

.htlspg__notfound-particle:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 50%;
    left: 5%;
    animation-delay: 10s;
}

.htlspg__notfound-particle:nth-child(4) {
    width: 25px;
    height: 25px;
    top: 70%;
    right: 10%;
    animation-delay: 15s;
}

.htlspg__notfound-particle:nth-child(5) {
    width: 35px;
    height: 35px;
    top: 30%;
    left: 80%;
    animation-delay: 20s;
}

.htlspg__notfound-particle:nth-child(6) {
    width: 45px;
    height: 45px;
    top: 80%;
    left: 70%;
    animation-delay: 25s;
}

.htlspg__notfound-particle:nth-child(7) {
    width: 20px;
    height: 20px;
    top: 60%;
    right: 5%;
    animation-delay: 30s;
}

.htlspg__notfound-particle:nth-child(8) {
    width: 40px;
    height: 40px;
    top: 90%;
    left: 20%;
    animation-delay: 35s;
}

@keyframes htlspg__notfound-particle-float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    .htlspg__notfound-content {
        gap: 3rem;
    }
    
    .htlspg__notfound-number {
        font-size: 6rem;
    }
    
    .htlspg__notfound-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .htlspg__notfound-container {
        padding: 1rem;
    }
    
    .htlspg__notfound-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .htlspg__notfound-visual {
        height: 300px;
    }
    
    .htlspg__notfound-number {
        font-size: 5rem;
    }
    
    .htlspg__notfound-title {
        font-size: 2rem;
    }
    
    .htlspg__notfound-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .htlspg__notfound-actions {
        justify-content: center;
    }
    
    .htlspg__notfound-info {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .htlspg__notfound-container {
        padding: 0.5rem;
    }
    
    .htlspg__notfound-number {
        font-size: 4rem;
    }
    
    .htlspg__notfound-title {
        font-size: 1.8rem;
    }
    
    .htlspg__notfound-message {
        font-size: 1rem;
    }
    
    .htlspg__notfound-suggestion {
        font-size: 0.9rem;
    }
    
    .htlspg__notfound-button,
    .htlspg__notfound-contact {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    .htlspg__notfound-info {
        padding: 1rem;
    }
    
    .htlspg__notfound-info-item {
        min-width: 100%;
    }
    
    .htlspg__notfound-info-value {
        font-size: 0.9rem;
    }
    
    .htlspg__notfound-info-value[href] {
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .htlspg__notfound-container {
        padding: 0.25rem;
    }
    
    .htlspg__notfound-number {
        font-size: 3rem;
    }
    
    .htlspg__notfound-title {
        font-size: 1.5rem;
    }
    
    .htlspg__notfound-info-value[href] {
        font-size: 0.8rem;
    }
}

.htlspg__subscribe-container {
    background-color: #0a1413;
    color: #f0f0f5;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.htlspg__subscribe-hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(20, 34, 27, 0.9), rgba(30, 45, 37, 0.7));
    border-bottom: 1px solid rgba(54, 214, 65, 0.3);
    position: relative;
    overflow: hidden;
}

.htlspg__subscribe-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(54, 214, 158, 0.15), transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(54, 214, 57, 0.1), transparent 50%);
    z-index: 0;
}

.htlspg__subscribe-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.htlspg__subscribe-hero-text {
    flex: 1;
    min-width: 230px;
}

.htlspg__subscribe-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #36d681, #89d636);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: htlspg__subscribe-title-glow 6s ease-in-out infinite;
}

@keyframes htlspg__subscribe-title-glow {
    0%, 100% { text-shadow: 0 0 20px rgba(54, 214, 65, 0.3); }
    50% { text-shadow: 0 0 40px rgba(54, 214, 81, 0.4); }
}

.htlspg__subscribe-hero-description {
    max-width: 600px;
}

.htlspg__subscribe-hero-paragraph {
    font-size: 1.3rem;
    color: #c0c0d0;
    line-height: 1.8;
}

.htlspg__subscribe-hero-visual {
    flex: 1;
    min-width: 230px;
    height: 300px;
    position: relative;
}

.htlspg__subscribe-visual-element {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #36d681, #89d636);
    border-radius: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    animation: htlspg__subscribe-visual-rotate 20s linear infinite;
}

@keyframes htlspg__subscribe-visual-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.htlspg__subscribe-visual-wave {
    width: 250px;
    height: 250px;
    border: 2px solid rgba(54, 214, 81, 0.3);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: htlspg__subscribe-wave-pulse 4s ease-in-out infinite;
}

@keyframes htlspg__subscribe-wave-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.2;
    }
}

.htlspg__subscribe-form-section {
    padding: 4rem 2rem;
}

.htlspg__subscribe-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.htlspg__subscribe-form-container {
    background-color: #14221d;
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.htlspg__subscribe-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #36d681, #89d636, #d68336);
    z-index: 1;
}

.htlspg__subscribe-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.htlspg__subscribe-form-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: #f0f0f5;
    margin-bottom: 1rem;
}

.htlspg__subscribe-form-subtitle {
    color: #c0c0d0;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.htlspg__subscribe-form-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.htlspg__subscribe-form {
    flex: 1;
    min-width: 250px;
}

.htlspg__subscribe-form-group {
    margin-bottom: 2rem;
}

.htlspg__subscribe-input-wrapper {
    position: relative;
}

.htlspg__subscribe-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background-color: rgba(30, 45, 33, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #f0f0f5;
    font-family: 'Spectral', serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.htlspg__subscribe-input:focus {
    border-color: #36d681;
    background-color: rgba(30, 45, 33, 0.9);
    box-shadow: 0 0 0 3px rgba(54, 214, 62, 0.2);
}

.htlspg__subscribe-input:focus + .htlspg__subscribe-input-focus {
    opacity: 1;
    transform: scaleX(1);
}

.htlspg__subscribe-input-focus {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #36d681, #89d636);
    border-radius: 1px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.htlspg__subscribe-error {
    min-height: 24px;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #d6364a;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.htlspg__subscribe-error.show {
    opacity: 1;
    transform: translateY(0);
}

.htlspg__subscribe-checkbox-group {
    margin-bottom: 2.5rem;
}

.htlspg__subscribe-checkbox-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    position: relative;
}

.htlspg__subscribe-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.htlspg__subscribe-checkbox-label {
    flex: 1;
    color: #c0c0d0;
    font-size: 0.95rem;
    line-height: 1.5;
    padding-left: 2.5rem;
    position: relative;
    min-height: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.htlspg__subscribe-checkbox-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: rgba(30, 45, 33, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.htlspg__subscribe-checkbox:checked + .htlspg__subscribe-checkbox-label::before {
    background-color: #36d681;
    border-color: #36d681;
}

.htlspg__subscribe-checkbox:checked + .htlspg__subscribe-checkbox-label::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: #f0f0f5;
    font-size: 12px;
    font-weight: bold;
}

.htlspg__subscribe-checkbox:focus + .htlspg__subscribe-checkbox-label::before {
    box-shadow: 0 0 0 3px rgba(54, 214, 65, 0.3);
    border-color: #36d681;
}

.htlspg__subscribe-checkbox-link {
    color: #89d636;
    text-decoration: none;
    margin: 0 0.25rem;
    transition: color 0.2s ease;
}

.htlspg__subscribe-checkbox-link:hover {
    color: #36d681;
    text-decoration: underline;
}

.htlspg__subscribe-form-actions {
    text-align: center;
}

.htlspg__subscribe-button {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #36d681, #89d636);
    color: #f0f0f5;
    border: none;
    border-radius: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

.htlspg__subscribe-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: linear-gradient(135deg, #8a8a9e, #a0a0b0);
}

.htlspg__subscribe-button:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(54, 214, 110, 0.4);
}

.htlspg__subscribe-button:not(:disabled):active {
    transform: translateY(-1px);
}

.htlspg__subscribe-button-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: #f0f0f5;
    border-radius: 50%;
    animation: htlspg__subscribe-loader-spin 1s linear infinite;
}

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

.htlspg__subscribe-button.loading .htlspg__subscribe-button-text {
    opacity: 0.7;
}

.htlspg__subscribe-button.loading .htlspg__subscribe-button-loader {
    display: block;
}

.htlspg__subscribe-form-note {
    margin-top: 1.5rem;
}

.htlspg__subscribe-note-text {
    color: #8a8a9e;
    font-size: 0.9rem;
    font-style: italic;
}

.htlspg__subscribe-current-status {
    flex: 1;
    min-width: 240px;
    background: linear-gradient(135deg, rgba(30, 45, 33, 0.8), rgba(20, 34, 20, 0.8));
    border-radius: 15px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.htlspg__subscribe-status-content {
    text-align: center;
}

.htlspg__subscribe-status-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #f0f0f5;
    margin-bottom: 1rem;
}

.htlspg__subscribe-status-text {
    color: #c0c0d0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.htlspg__subscribe-status-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.htlspg__subscribe-status-button {
    padding: 0.75rem 1.5rem;
    background-color: rgba(54, 214, 57, 0.1);
    color: #89d636;
    border: 1px solid rgba(54, 214, 81, 0.3);
    border-radius: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.htlspg__subscribe-status-button:hover {
    background-color: rgba(54, 214, 81, 0.2);
    color: #36d681;
}

.htlspg__subscribe-benefits {
    padding: 4rem 2rem;
    background-color: rgba(30, 45, 35, 0.5);
    border-radius: 30px;
    margin: 2rem;
}

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

.htlspg__subscribe-benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.htlspg__subscribe-benefits-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #f0f0f5;
    margin-bottom: 1rem;
}

.htlspg__subscribe-benefits-subtitle {
    color: #c0c0d0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.htlspg__subscribe-benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.htlspg__subscribe-benefit-card {
    flex: 1;
    min-width: 250px;
    background-color: #14221d;
    border-radius: 15px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.htlspg__subscribe-benefit-card:hover {
    transform: translateY(-5px);
    border-color: #36d681;
}

.htlspg__subscribe-benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #36d681, #89d636);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    position: relative;
}

.htlspg__subscribe-benefit-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
}

.htlspg__subscribe-benefit-content {
    color: #c0c0d0;
}

.htlspg__subscribe-benefit-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #f0f0f5;
    margin-bottom: 1rem;
}

.htlspg__subscribe-benefit-description {
    line-height: 1.6;
}

.htlspg__subscribe-frequency {
    padding: 4rem 2rem;
}

.htlspg__subscribe-frequency-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.htlspg__subscribe-frequency-content {
    background: linear-gradient(135deg, rgba(54, 214, 91, 0.1), rgba(97, 214, 54, 0.05));
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(54, 214, 62, 0.2);
}

.htlspg__subscribe-frequency-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 2rem;
    color: #f0f0f5;
    margin-bottom: 2rem;
}

.htlspg__subscribe-frequency-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.htlspg__subscribe-frequency-item {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background-color: rgba(30, 45, 33, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.htlspg__subscribe-frequency-type {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #89d636;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.htlspg__subscribe-frequency-schedule {
    display: block;
    color: #c0c0d0;
    font-size: 0.95rem;
}

.htlspg__subscribe-frequency-note {
    padding: 1.5rem;
    background-color: rgba(214, 182, 54, 0.1);
    border-radius: 10px;
    border-left: 3px solid #d6b636;
}

.htlspg__subscribe-frequency-note-text {
    color: #c0c0d0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.htlspg__subscribe-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 20, 0.95);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.htlspg__subscribe-success-overlay.show {
    opacity: 1;
    visibility: visible;
}

.htlspg__subscribe-success-modal {
    background-color: #14221d;
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(54, 214, 65, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.htlspg__subscribe-success-overlay.show .htlspg__subscribe-success-modal {
    transform: scale(1);
}

.htlspg__subscribe-success-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #c0c0d0;
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.htlspg__subscribe-success-close:hover {
    color: #f0f0f5;
}

.htlspg__subscribe-success-content {
    text-align: center;
}

.htlspg__subscribe-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #36d67c, #89d636);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
    animation: htlspg__subscribe-success-pulse 2s ease-in-out infinite;
}

@keyframes htlspg__subscribe-success-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.htlspg__subscribe-success-icon::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #f0f0f5;
    font-size: 2.5rem;
    font-weight: bold;
}

.htlspg__subscribe-success-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #f0f0f5;
    margin-bottom: 1rem;
}

.htlspg__subscribe-success-text {
    color: #c0c0d0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.htlspg__subscribe-success-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #36d681, #89d636);
    color: #f0f0f5;
    border: none;
    border-radius: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.htlspg__subscribe-success-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(54, 214, 65, 0.3);
}

@media (max-width: 1024px) {
    .htlspg__subscribe-main-title {
        font-size: 2.5rem;
    }
    
    .htlspg__subscribe-form-content {
        gap: 3rem;
    }
    
    .htlspg__subscribe-benefits-grid {
        gap: 2rem;
    }
    
    .htlspg__subscribe-benefit-card {
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .htlspg__subscribe-container {
        padding: 0 1rem;
    }
    
    .htlspg__subscribe-hero {
        padding: 3rem 1rem;
    }
    
    .htlspg__subscribe-main-title {
        font-size: 2rem;
    }
    
    .htlspg__subscribe-hero-paragraph {
        font-size: 1.1rem;
    }
    
    .htlspg__subscribe-hero-content {
        gap: 3rem;
    }
    
    .htlspg__subscribe-form-section {
        padding: 3rem 1rem;
    }
    
    .htlspg__subscribe-form-container {
        padding: 2rem;
    }
    
    .htlspg__subscribe-form-title {
        font-size: 1.8rem;
    }
    
    .htlspg__subscribe-form-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .htlspg__subscribe-benefits {
        margin: 1rem;
        padding: 3rem 1rem;
        border-radius: 20px;
    }
    
    .htlspg__subscribe-benefits-title {
        font-size: 2rem;
    }
    
    .htlspg__subscribe-benefit-card {
        min-width: 100%;
        padding: 2rem;
    }
    
    .htlspg__subscribe-frequency {
        padding: 3rem 1rem;
    }
    
    .htlspg__subscribe-frequency-content {
        padding: 2rem;
    }
    
    .htlspg__subscribe-frequency-info {
        gap: 1.5rem;
    }
    
    .htlspg__subscribe-frequency-item {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .htlspg__subscribe-container {
        padding: 0 0.5rem;
    }
    
    .htlspg__subscribe-hero {
        padding: 2rem 0.5rem;
    }
    
    .htlspg__subscribe-main-title {
        font-size: 1.8rem;
    }
    
    .htlspg__subscribe-hero-paragraph {
        font-size: 1rem;
    }
    
    .htlspg__subscribe-hero-visual {
        height: 200px;
    }
    
    .htlspg__subscribe-visual-element {
        width: 150px;
        height: 150px;
    }
    
    .htlspg__subscribe-visual-wave {
        width: 180px;
        height: 180px;
    }
    
    .htlspg__subscribe-form-section {
        padding: 2rem 0.5rem;
    }
    
    .htlspg__subscribe-form-container {
        padding: 1.5rem 0.2rem;
        border-radius: 15px;
    }
    
    .htlspg__subscribe-form-title {
        font-size: 1.6rem;
    }
    
    .htlspg__subscribe-form-subtitle {
        font-size: 1rem;
    }
    
    .htlspg__subscribe-input {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .htlspg__subscribe-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 200px;
    }
    
    .htlspg__subscribe-current-status {
        padding: 1.5rem;
    }
    
    .htlspg__subscribe-status-title {
        font-size: 1.3rem;
    }
    
    .htlspg__subscribe-benefits {
        margin: 0.5rem;
        padding: 2rem 0.5rem;
        border-radius: 15px;
    }
    
    .htlspg__subscribe-benefits-title {
        font-size: 1.8rem;
    }
    
    .htlspg__subscribe-benefits-subtitle {
        font-size: 1rem;
    }
    
    .htlspg__subscribe-benefit-card {
        padding: 1.5rem;
    }
    
    .htlspg__subscribe-benefit-name {
        font-size: 1.2rem;
    }
    
    .htlspg__subscribe-frequency {
        padding: 2rem 0.5rem;
    }
    
    .htlspg__subscribe-frequency-content {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .htlspg__subscribe-frequency-title {
        font-size: 1.6rem;
    }
    
    .htlspg__subscribe-success-modal {
        padding: 2rem 1rem;
    }
    
    .htlspg__subscribe-success-icon {
        width: 60px;
        height: 60px;
    }
    
    .htlspg__subscribe-success-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 320px) {
    .htlspg__subscribe-container {
        padding: 0 0.25rem;
    }
    
    .htlspg__subscribe-hero {
        padding: 1.5rem 0.25rem;
    }
    
    .htlspg__subscribe-main-title {
        font-size: 1.5rem;
    }
    
    .htlspg__subscribe-form-container {
        padding: 1rem 0.1rem;
    }
    
    .htlspg__subscribe-checkbox-label {
        font-size: 0.85rem;
    }
    
    .htlspg__subscribe-button {
        min-width: 100%;
    }
    
    .htlspg__subscribe-benefit-card {
        padding: 1rem;
    }
}

.ht__contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 20, 20, 0.98);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 1rem;
}

.ht__contact-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.ht__contact-modal-container {
    background: linear-gradient(145deg, #14221d, #1e2d2b);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    position: relative;
    border: 1px solid rgba(54, 214, 65, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.ht__contact-modal-overlay.show .ht__contact-modal-container {
    transform: scale(1);
}

.ht__contact-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #c0c0d0;
    font-size: 1.8rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
    z-index: 1;
}

.ht__contact-modal-close:hover {
    color: #f0f0f5;
    transform: rotate(90deg);
}

.ht__contact-modal-content {
    position: relative;
    z-index: 0;
}

.ht__contact-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2rem;
    color: #f0f0f5;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.ht__contact-modal-subtitle {
    color: #c0c0d0;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.5;
}

.ht__contact-modal-form {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1.5rem;
}

.ht__contact-form-group {
    width: 100%;
}

.ht__contact-input-wrapper {
    position: relative;
    width: 100%;
}

.ht__contact-modal-input,
.ht__contact-modal-textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background-color: rgba(30, 45, 33, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #f0f0f5;
    font-family: 'Spectral', serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    resize: vertical;
}

.ht__contact-modal-input:focus,
.ht__contact-modal-textarea:focus {
    border-color: #36d681;
    background-color: rgba(30, 45, 33, 0.9);
    box-shadow: 0 0 0 3px rgba(54, 214, 158, 0.15);
}

.ht__contact-modal-input:focus + .ht__contact-input-focus,
.ht__contact-modal-textarea:focus + .ht__contact-input-focus {
    opacity: 1;
    transform: scaleX(1);
}

.ht__contact-input-focus {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #36d681, #89d636);
    border-radius: 1px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.ht__contact-error {
    min-height: 22px;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #d6364a;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.ht__contact-error.show {
    opacity: 1;
    transform: translateY(0);
}

.ht__contact-char-count {
    text-align: right;
    margin-top: 0.5rem;
    color: #8a8a9e;
    font-size: 0.85rem;
}

.ht__contact-char-count span {
    color: #89d636;
    font-weight: 600;
}

.ht__contact-checkbox-group {
    width: 100%;
}

.ht__contact-checkbox-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.ht__contact-modal-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.ht__contact-checkbox-label {
    flex: 1;
    color: #c0c0d0;
    font-size: 0.9rem;
    line-height: 1.4;
    padding-left: 2rem;
    position: relative;
    min-height: 20px;
}

.ht__contact-checkbox-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background-color: rgba(30, 45, 33, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.ht__contact-modal-checkbox:checked + .ht__contact-checkbox-label::before {
    background-color: #36d681;
    border-color: #36d681;
}

.ht__contact-modal-checkbox:checked + .ht__contact-checkbox-label::after {
    content: '✓';
    position: absolute;
    left: 3px;
    top: 0;
    color: #f0f0f5;
    font-size: 11px;
    font-weight: bold;
}

.ht__contact-modal-checkbox:focus + .ht__contact-checkbox-label::before {
    box-shadow: 0 0 0 3px rgba(54, 214, 62, 0.2);
    border-color: #36d681;
}

.ht__contact-checkbox-link {
    color: #89d636;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ht__contact-checkbox-link:hover {
    color: #36d681;
    text-decoration: underline;
}

.ht__contact-form-actions {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

.ht__contact-modal-submit {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #36d681, #89d636);
    color: #f0f0f5;
    border: none;
    border-radius: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.ht__contact-modal-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: linear-gradient(135deg, #8a8a9e, #a0a0b0);
}

.ht__contact-modal-submit:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(54, 214, 65, 0.3);
}

.ht__contact-modal-submit:not(:disabled):active {
    transform: translateY(0);
}

.ht__contact-submit-loader {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid transparent;
    border-top-color: #f0f0f5;
    border-radius: 50%;
    animation: ht__contact-loader-spin 1s linear infinite;
}

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

.ht__contact-modal-submit.loading .ht__contact-submit-text {
    opacity: 0.7;
}

.ht__contact-modal-submit.loading .ht__contact-submit-loader {
    display: block;
}

.ht__contact-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 20, 20, 0.98);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 1rem;
}

.ht__contact-success-overlay.show {
    opacity: 1;
    visibility: visible;
}

.ht__contact-success-container {
    background: linear-gradient(145deg, #14221d, #1e2d2b);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    border: 1px solid rgba(54, 214, 65, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.4s ease;
}

.ht__contact-success-overlay.show .ht__contact-success-container {
    transform: scale(1);
}

.ht__contact-success-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #c0c0d0;
    font-size: 1.8rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    z-index: 1;
}

.ht__contact-success-close:hover {
    color: #f0f0f5;
}

.ht__contact-success-content {
    text-align: center;
}

.ht__contact-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #36d67c, #89d636);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
    animation: ht__contact-success-pulse 2s ease-in-out infinite;
}

@keyframes ht__contact-success-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.ht__contact-success-icon::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #f0f0f5;
    font-size: 2.5rem;
    font-weight: bold;
}

.ht__contact-success-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #f0f0f5;
    margin-bottom: 1rem;
}

.ht__contact-success-text {
    color: #c0c0d0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.ht__contact-success-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #36d681, #89d636);
    color: #f0f0f5;
    border: none;
    border-radius: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ht__contact-success-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(54, 214, 65, 0.3);
}

.ht__contact-modal-container::-webkit-scrollbar {
    width: 8px;
}

.ht__contact-modal-container::-webkit-scrollbar-track {
    background: rgba(30, 30, 45, 0.3);
    border-radius: 4px;
}

.ht__contact-modal-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #36d681, #89d636);
    border-radius: 4px;
}

.ht__contact-modal-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #89d636, #36d681);
}

@media (max-width: 768px) {
    .ht__contact-modal-container {
        padding: 2rem 1.5rem;
        max-height: 85vh;
    }
    
    .ht__contact-modal-title {
        font-size: 1.8rem;
    }
    
    .ht__contact-modal-submit {
        min-width: 100%;
        padding: 0.9rem 2rem;
    }
    
    .ht__contact-success-container {
        padding: 2rem 1.5rem;
    }
    
    .ht__contact-success-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .ht__contact-modal-overlay,
    .ht__contact-success-overlay {
        padding: 0.5rem;
    }
    
    .ht__contact-modal-container {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .ht__contact-modal-title {
        font-size: 1.6rem;
    }
    
    .ht__contact-modal-subtitle {
        font-size: 0.9rem;
    }
    
    .ht__contact-modal-input,
    .ht__contact-modal-textarea {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .ht__contact-checkbox-label {
        font-size: 0.85rem;
    }
    
    .ht__contact-success-container {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .ht__contact-success-title {
        font-size: 1.4rem;
    }
    
    .ht__contact-success-text {
        font-size: 0.9rem;
    }
}
