:root {
    --thg-deep-space: #0a0e17;
    --thg-neon-cyan: #00f3ff;
    --thg-electric-purple: #9d4edd;
    --thg-midnight-blue: #1a1f3c;
    --thg-void-black: #05070f;
    --thg-crystal-white: #f0f6ff;
    --thg-warning-amber: #ffb74d;
    --thg-success-emerald: #2ecc71;
    --thg-border-glow: rgba(0, 243, 255, 0.3);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--thg-void-black);
    color: var(--thg-crystal-white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--thg-neon-cyan), var(--thg-electric-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--thg-neon-cyan);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--thg-crystal-white);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    color: var(--thg-neon-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--thg-electric-purple);
}

button {
    cursor: pointer;
    border: none;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
}

.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--thg-void-black);
    z-index: 9999;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.age-confirmation-dialog {
    background: var(--thg-midnight-blue);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    border: 2px solid var(--thg-border-glow);
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.2);
    animation: agePulse 2s infinite;
}

.age-confirmation-dialog i {
    font-size: 4rem;
    color: var(--thg-warning-amber);
    margin-bottom: 1.5rem;
}

.age-confirmation-dialog h3 {
    color: var(--thg-warning-amber);
    margin-bottom: 1rem;
}

.age-confirmation-dialog p {
    margin-bottom: 1.5rem;
}

.age-confirmation-dialog__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.age-confirmation-dialog__confirm,
.age-confirmation-dialog__exit {
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1.1rem;
    min-width: 180px;
}

.age-confirmation-dialog__confirm {
    background: linear-gradient(135deg, var(--thg-success-emerald), #27ae60);
    color: white;
}

.age-confirmation-dialog__exit {
    background: transparent;
    border: 2px solid var(--thg-border-glow);
    color: var(--thg-neon-cyan);
}

.age-confirmation-dialog__notice {
    font-size: 0.9rem;
    color: var(--thg-warning-amber);
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--thg-border-glow);
}

@keyframes agePulse {
    0%, 100% { box-shadow: 0 0 40px rgba(0, 243, 255, 0.2); }
    50% { box-shadow: 0 0 60px rgba(0, 243, 255, 0.4); }
}

.cookie-notification-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--thg-midnight-blue);
    border-top: 2px solid var(--thg-border-glow);
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-notification-bar.active {
    transform: translateY(0);
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.cookie-consent-container__content {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-start;
    flex: 1;
    min-width: 300px;
}

.cookie-consent-container__content i {
    font-size: 2rem;
    color: var(--thg-electric-purple);
    margin-top: 0.5rem;
}

.cookie-consent-container__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-consent-container__accept,
.cookie-consent-container__reject {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    min-width: 140px;
}

.cookie-consent-container__accept {
    background: var(--thg-electric-purple);
    color: white;
}

.cookie-consent-container__reject {
    background: transparent;
    border: 1px solid var(--thg-border-glow);
    color: var(--thg-neon-cyan);
}

.thg_header-navigation {
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--thg-border-glow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.thg_header-navigation__top {
    padding: 1rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.thg_header-navigation__brand {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    color: var(--thg-neon-cyan);
}

.thg_header-navigation__brand img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    border: 2px solid var(--thg-border-glow);
}

.thg_header-navigation__menu-toggle {
    width: 40px;
    height: 40px;
    background: transparent;
    position: relative;
    display: none;
}

.thg_header-navigation__menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--thg-neon-cyan);
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
}

.thg_header-navigation__menu-toggle span:nth-child(1) { top: 8px; }
.thg_header-navigation__menu-toggle span:nth-child(2) { top: 18px; }
.thg_header-navigation__menu-toggle span:nth-child(3) { top: 28px; }

.thg_header-navigation__panel {
    padding: 0 2rem 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.thg_header-navigation__links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    flex: 1;
}

.thg_header-navigation__link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(26, 31, 60, 0.5);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.thg_header-navigation__link:hover {
    border-color: var(--thg-border-glow);
    transform: translateY(-2px);
}

.thg_header-navigation__ticket-btn {
    background: linear-gradient(135deg, var(--thg-electric-purple), #7b2cbf);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 10px;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
}

.thg_header-navigation__ticket-btn:hover {
    border-color: var(--thg-neon-cyan);
    transform: scale(1.05);
}

.thg_hero-welcome {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.thg_hero-welcome__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.thg_hero-welcome__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.07;
}

.thg_hero-welcome__content {
    max-width: 800px;
    text-align: center;
    padding: 4rem 2rem;
    animation: contentFadeIn 1s ease;
}

.thg_hero-welcome__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.thg_hero-welcome__btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
}

.thg_hero-welcome__btn:first-child {
    background: transparent;
    border: 2px solid var(--thg-border-glow);
    color: var(--thg-neon-cyan);
}

.thg_hero-welcome__btn:last-child {
    background: linear-gradient(135deg, var(--thg-neon-cyan), #00b8cc);
    color: var(--thg-void-black);
}

@keyframes contentFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.thg_lottery-selection {
    padding: 5rem 2rem;
    background: var(--thg-deep-space);
}

.thg_lottery-selection > p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--thg-crystal-white);
    opacity: 0.9;
}

.thg_lottery-selection__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.thg_lottery-selection__card {
    background: var(--thg-midnight-blue);
    border-radius: 20px;
    padding: 2rem;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    border: 1px solid var(--thg-border-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.thg_lottery-selection__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 243, 255, 0.15);
}

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

.thg_lottery-selection__card-header i {
    font-size: 2.5rem;
    color: var(--thg-electric-purple);
}

.thg_lottery-selection__card img {
    width: 100%;
    height: 100%;
    max-width: 120px;
    max-height: 85px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
}

.thg_lottery-selection__details {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.thg_lottery-selection__details li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--thg-crystal-white);
    opacity: 0.9;
}

.thg_lottery-selection__details i {
    color: var(--thg-neon-cyan);
}

.thg_lottery-selection__btn {
    background: linear-gradient(135deg, var(--thg-electric-purple), #7b2cbf);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-top: auto;
}

.thg_process-explanation {
    padding: 5rem 2rem;
    background: var(--thg-void-black);
}

.thg_process-explanation__steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    justify-content: center;
}

.thg_process-explanation__step {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
    padding: 2rem;
    background: rgba(26, 31, 60, 0.5);
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.thg_process-explanation__step:hover {
    border-color: var(--thg-border-glow);
    transform: scale(1.05);
}

.thg_process-explanation__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--thg-neon-cyan), var(--thg-electric-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.thg_process-explanation__icon i {
    font-size: 2.5rem;
    color: var(--thg-void-black);
}

.thg_platform-benefits {
    padding: 5rem 2rem;
    background: var(--thg-deep-space);
}

.thg_platform-benefits__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    justify-content: center;
}

.thg_platform-benefits__item {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 2rem;
    background: var(--thg-midnight-blue);
    border-radius: 16px;
    border-left: 4px solid var(--thg-neon-cyan);
}

.thg_platform-benefits__item i {
    font-size: 2.5rem;
    color: var(--thg-neon-cyan);
    margin-bottom: 1rem;
}

.thg_previous-draws {
    padding: 5rem 2rem;
    background: var(--thg-void-black);
}

.thg_previous-draws > p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--thg-crystal-white);
    opacity: 0.9;
}

.thg_previous-draws__results {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.thg_previous-draws__result {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    padding: 2rem;
    background: var(--thg-midnight-blue);
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--thg-border-glow);
}

.thg_previous-draws__date {
    color: var(--thg-neon-cyan);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.thg_previous-draws__numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.thg_previous-draws__numbers span {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--thg-electric-purple), #7b2cbf);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.thg_responsible-gaming {
    padding: 5rem 2rem;
    background: var(--thg-deep-space);
    border-top: 2px solid var(--thg-border-glow);
}

.thg_responsible-gaming__content {
    max-width: 1000px;
    margin: 3rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

.thg_responsible-gaming__text {
    flex: 1;
    min-width: 265px;
}

.thg_responsible-gaming__notice {
    background: rgba(255, 183, 77, 0.1);
    border-left: 4px solid var(--thg-warning-amber);
    padding: 1rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.5rem;
}

.thg_responsible-gaming__notice i {
    color: var(--thg-warning-amber);
    font-size: 1.5rem;
}

.thg_responsible-gaming__age {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 183, 77, 0.05);
    border-radius: 16px;
    border: 2px solid var(--thg-warning-amber);
    min-width: 250px;
}

.thg_responsible-gaming__age-icon {
    width: 100px;
    height: 100px;
    background: var(--thg-warning-amber);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.thg_responsible-gaming__age-icon i {
    font-size: 2.5rem;
    color: var(--thg-void-black);
}

.thg_responsible-gaming__age-icon span {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--thg-void-black);
    margin-top: 0.2rem;
}

.thg_site-footer {
    background: var(--thg-midnight-blue);
    padding: 4rem 2rem 2rem;
    border-top: 2px solid var(--thg-border-glow);
}

.thg_site-footer__sections {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.thg_site-footer__section {
    flex: 1;
    min-width: 250px;
}

.thg_site-footer__section h3 {
    color: var(--thg-neon-cyan);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.thg_site-footer__age-warning {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 183, 77, 0.05);
    border-radius: 12px;
    border: 1px solid var(--thg-warning-amber);
}

.thg_site-footer__age-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--thg-warning-amber);
    color: var(--thg-void-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 0.8rem;
    font-weight: bold;
}

.thg_site-footer__age-icon i {
    font-size: 1.2rem;
}

.thg_site-footer__partners {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.thg_site-footer__partners a {
    display: block;
    background: rgba(223, 219, 219, 0.726);
    padding: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.thg_site-footer__partners a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.thg_site-footer__partners img {
    width: 120px;
    height: 60px;
    object-fit: contain;
}

.thg_site-footer__links {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.8rem;
}

.thg_site-footer__links a {
    color: var(--thg-crystal-white);
    opacity: 0.8;
    padding: 0.3rem 0;
    border-bottom: 1px solid transparent;
}

.thg_site-footer__links a:hover {
    opacity: 1;
    border-bottom-color: var(--thg-neon-cyan);
}

.thg_site-footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--thg-border-glow);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.thg_site-footer__copyright {
    color: var(--thg-crystal-white);
    opacity: 0.7;
    font-size: 0.9rem;
}

.thg_site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.thg_site-footer__social a {
    width: 44px;
    height: 44px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--thg-neon-cyan);
    transition: all 0.3s ease;
}

.thg_site-footer__social a:hover {
    background: var(--thg-neon-cyan);
    color: var(--thg-void-black);
    transform: rotate(15deg);
}

.contact-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 7, 15, 0.95);
    z-index: 9997;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.feedback-modal-window {
    background: var(--thg-midnight-blue);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    border: 2px solid var(--thg-border-glow);
    box-shadow: 0 0 60px rgba(0, 243, 255, 0.3);
    position: relative;
    animation: modalSlideIn 0.5s ease;
}

.feedback-modal-window__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    color: var(--thg-neon-cyan);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-modal-window__close:hover {
    background: rgba(0, 243, 255, 0.1);
}

.feedback-modal-window h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--thg-neon-cyan);
}

.feedback-modal-window__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feedback-modal-window__field {
    position: relative;
}

.feedback-modal-window__field input,
.feedback-modal-window__field select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--thg-border-glow);
    border-radius: 8px;
    color: var(--thg-crystal-white);
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    min-height: 44px;
}

.feedback-modal-window__field input:focus,
.feedback-modal-window__field select:focus {
    outline: none;
    border-color: var(--thg-neon-cyan);
    box-shadow: 0 0 0 2px rgba(0, 243, 255, 0.2);
}

.feedback-modal-window__field label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--thg-crystal-white);
    opacity: 0.7;
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--thg-midnight-blue);
    padding: 0 0.3rem;
    font-size: 16px;
}

.feedback-modal-window__field input:focus + label,
.feedback-modal-window__field input:not(:placeholder-shown) + label,
.feedback-modal-window__field select:focus + label,
.feedback-modal-window__field select:not([value=""]) + label {
    top: 0;
    font-size: 0.9rem;
    color: var(--thg-neon-cyan);
    opacity: 1;
}

.feedback-modal-window__hint {
    font-size: 0.8rem;
    color: var(--thg-neon-cyan);
    opacity: 0.7;
    margin-top: 0.3rem;
    padding-left: 0.5rem;
}

.feedback-modal-window__checkbox {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.8rem;
    position: relative;
    min-height: 44px;
}

.feedback-modal-window__checkbox input {
    position: absolute;
    opacity: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.feedback-modal-window__checkbox label {
    padding-left: 2rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--thg-crystal-white);
    opacity: 0.9;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    min-height: 44px;
    align-items: center;
}

.feedback-modal-window__checkbox label span {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--thg-border-glow);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.feedback-modal-window__checkbox input:checked + label span {
    background: var(--thg-neon-cyan);
    border-color: var(--thg-neon-cyan);
}

.feedback-modal-window__checkbox input:checked + label span::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--thg-void-black);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.feedback-modal-window__submit {
    background: linear-gradient(135deg, var(--thg-neon-cyan), #00b8cc);
    color: var(--thg-void-black);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
    min-height: 44px;
}

.feedback-modal-window__submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.feedback-modal-window__success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.feedback-modal-window__success i {
    font-size: 4rem;
    color: var(--thg-success-emerald);
    margin-bottom: 1.5rem;
}

.feedback-modal-window__success h4 {
    color: var(--thg-success-emerald);
    margin-bottom: 1rem;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .thg_hero-welcome__content {
        padding: 3rem 1.5rem;
    }
    
    .thg_lottery-selection__grid,
    .thg_previous-draws__results {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .thg_header-navigation__menu-toggle {
        display: block;
    }
    
    .thg_header-navigation__menu-toggle.active span:nth-child(1) {
        top: 18px;
        transform: rotate(45deg);
    }
    
    .thg_header-navigation__menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .thg_header-navigation__menu-toggle.active span:nth-child(3) {
        top: 18px;
        transform: rotate(-45deg);
    }
    
    .thg_header-navigation__panel {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--thg-deep-space);
        flex-direction: column;
        padding: 2rem;
        display: none;
        border-top: 1px solid var(--thg-border-glow);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .thg_header-navigation__panel.active {
        display: flex;
    }
    
    .thg_header-navigation__links {
        flex-direction: column;
        width: 100%;
    }
    
    .thg_header-navigation__link {
        justify-content: center;
        padding: 1rem;
    }
    
    .thg_header-navigation__ticket-btn {
        width: 100%;
        justify-content: center;
    }
    
    .thg_hero-welcome__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thg_hero-welcome__btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cookie-consent-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-container__content {
        flex-direction: column;
        align-items: center;
    }
    
    .age-confirmation-dialog {
        padding: 2rem;
    }
    
    .feedback-modal-window {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    h3 { font-size: 1.3rem; }
    
    .thg_header-navigation__top,
    .thg_hero-welcome,
    .thg_lottery-selection,
    .thg_process-explanation,
    .thg_platform-benefits,
    .thg_previous-draws,
    .thg_responsible-gaming {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .thg_header-navigation__top {
        padding: 0.8rem 1rem;
    }
    
    .thg_header-navigation__brand span {
        font-size: 1.2rem;
    }
    
    .thg_header-navigation__brand img {
        width: 60px;
        height: 60px;
    }
    
    .thg_hero-welcome__content {
        padding: 2rem 1rem;
    }
    
    .thg_hero-welcome__btn {
        min-width: auto;
        padding: 0.8rem 1.5rem;
    }
    
    .thg_lottery-selection__card,
    .thg_previous-draws__result {
        min-width: 100%;
    }
    
    .thg_process-explanation__step,
    .thg_platform-benefits__item {
        min-width: 100%;
    }
    
    .thg_responsible-gaming__content {
        gap: 2rem;
    }
    
    .thg_site-footer {
        padding: 3rem 1rem 1.5rem;
    }
    
    .thg_site-footer__section {
        min-width: 100%;
    }
    
    .thg_site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .age-confirmation-dialog {
        padding: 1.5rem;
    }
    
    .age-confirmation-dialog__buttons {
        flex-direction: column;
    }
    
    .age-confirmation-dialog__confirm,
    .age-confirmation-dialog__exit {
        width: 100%;
    }
    
    .cookie-consent-container {
        padding: 1.5rem;
    }
    
    .cookie-consent-container__actions {
        width: 100%;
    }
    
    .cookie-consent-container__accept,
    .cookie-consent-container__reject {
        flex: 1;
        min-width: auto;
    }
    
    .feedback-modal-window {
        padding: 1.5rem;
    }
    
    .thg_hero-welcome__btn:hover,
    .thg_lottery-selection__card:hover,
    .thg_process-explanation__step:hover {
        transform: none;
    }
}

@media (max-width: 320px) {
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.4rem; }
    
    .thg_header-navigation__brand span {
        font-size: 1rem;
    }
    
    .thg_header-navigation__brand img {
        width: 50px;
        height: 50px;
    }
    
    .thg_site-footer__partners img {
        width: 100px;
        height: 50px;
    }

    .age-verification-overlay {
        align-items: flex-start;
    }
}

.thgpg_ticket-purchase {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f3c 100%);
    min-height: 100vh;
}

.thgpg_ticket-purchase__games {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.thgpg_ticket-purchase h1 {
    color: #00f3ff;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00f3ff, #9d4edd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: titleGlow 3s infinite alternate;
}

.thgpg_ticket-purchase > section > p {
    color: #f0f6ff;
    opacity: 0.9;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.3)); }
    100% { filter: drop-shadow(0 0 20px rgba(157, 78, 221, 0.5)); }
}

.thgpg_ticket-purchase__game-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.thgpg_ticket-purchase__game-option {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: rgba(26, 31, 60, 0.7);
    border: 2px solid rgba(0, 243, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.thgpg_ticket-purchase__game-option:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 243, 255, 0.4);
    box-shadow: 0 10px 20px rgba(0, 243, 255, 0.1);
}

.thgpg_ticket-purchase__game-option.active {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), rgba(157, 78, 221, 0.1));
    border-color: #00f3ff;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
}

.thgpg_ticket-purchase__game-option i {
    font-size: 3rem;
    color: #00f3ff;
}

.thgpg_ticket-purchase__game-option.active i {
    color: #9d4edd;
    animation: iconPulse 2s infinite;
}

.thgpg_ticket-purchase__game-option span {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #f0f6ff;
}

.thgpg_ticket-purchase__game-option small {
    color: #00f3ff;
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.thgpg_ticket-purchase__process {
    max-width: 1200px;
    margin: 0 auto;
}

.thgpg_ticket-purchase__game-title {
    text-align: center;
    color: #00f3ff;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    padding: 1rem;
    background: rgba(0, 243, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #f700ff;
    border-right: 4px solid #f700ff;
}

.thgpg_ticket-purchase__steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.thgpg_ticket-purchase__step {
    flex: 1;
    min-width: 300px;
    background: rgba(10, 14, 23, 0.8);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 243, 255, 0.1);
    transition: all 0.3s ease;
}

.thgpg_ticket-purchase__step:hover {
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1);
}

.thgpg_ticket-purchase__step-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 243, 255, 0.2);
}

.thgpg_ticket-purchase__step-header i {
    font-size: 2rem;
    color: #00f3ff;
}

.thgpg_ticket-purchase__step-header h3 {
    color: #f0f6ff;
    font-size: 1.5rem;
    margin: 0;
}

.thgpg_ticket-purchase__step > p {
    color: #f0f6ff;
    opacity: 0.8;
    margin-bottom: 2rem;
    min-height: 3.5rem;
}

.thgpg_ticket-purchase__numbers-grid {
    margin: 2rem 0;
}

.thgpg_ticket-purchase__numbers-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    min-height: 200px;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px dashed rgba(0, 243, 255, 0.3);
}

.thgpg_ticket-number {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 243, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #f0f6ff;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.thgpg_ticket-number:hover {
    background: rgba(0, 243, 255, 0.1);
    transform: scale(1.1);
}

.thgpg_ticket-number.selected {
    background: linear-gradient(135deg, #00f3ff, #0099cc);
    border-color: #00f3ff;
    color: #0a0e17;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
}

.thgpg_ticket-number.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.thgpg_ticket-purchase__number-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.thgpg_ticket-purchase__clear-btn,
.thgpg_ticket-purchase__random-btn,
.thgpg_ticket-purchase__confirm-btn,
.thgpg_ticket-purchase__info-confirm,
.thgpg_ticket-purchase__buy-btn {
    flex: 1;
    min-width: 120px;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    min-height: 44px;
    font-size: 1rem;
}

.thgpg_ticket-purchase__clear-btn {
    background: rgba(255, 183, 77, 0.1);
    border: 1px solid rgba(255, 183, 77, 0.3);
    color: #ffb74d;
}

.thgpg_ticket-purchase__clear-btn:hover:not(:disabled) {
    background: rgba(255, 183, 77, 0.2);
    border-color: #ffb74d;
}

.thgpg_ticket-purchase__random-btn {
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.3);
    color: #9d4edd;
}

.thgpg_ticket-purchase__random-btn:hover:not(:disabled) {
    background: rgba(157, 78, 221, 0.2);
    border-color: #9d4edd;
}

.thgpg_ticket-purchase__confirm-btn,
.thgpg_ticket-purchase__info-confirm,
.thgpg_ticket-purchase__buy-btn {
    background: linear-gradient(135deg, #00f3ff, #0099cc);
    border: none;
    color: #0a0e17;
    font-weight: 600;
}

.thgpg_ticket-purchase__confirm-btn:hover:not(:disabled),
.thgpg_ticket-purchase__info-confirm:hover:not(:disabled),
.thgpg_ticket-purchase__buy-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.4);
}

.thgpg_ticket-purchase__confirm-btn:disabled,
.thgpg_ticket-purchase__info-confirm:disabled,
.thgpg_ticket-purchase__buy-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.thgpg_ticket-purchase__info-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.thgpg_ticket-purchase__form-field {
    position: relative;
    min-height: 44px;
}

.thgpg_ticket-purchase__form-field i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #00f3ff;
    font-size: 1.2rem;
    z-index: 1;
}

.thgpg_ticket-purchase__form-field input,
.thgpg_ticket-purchase__form-field select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 10px;
    color: #f0f6ff;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    min-height: 44px;
    appearance: none;
}

.thgpg_ticket-purchase__form-field select {
    background-color: rgba(10, 15, 30, 0.9);
    color: #f0f6ff;
    color-scheme: dark;
}

.thgpg_ticket-purchase__form-field option {
    background-color: #0b1224;
    color: #f0f6ff;
}

.thgpg_ticket-purchase__form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2300f3ff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 3rem;
}

.thgpg_ticket-purchase__form-field input:focus,
.thgpg_ticket-purchase__form-field select:focus {
    outline: none;
    border-color: #00f3ff;
    box-shadow: 0 0 0 2px rgba(0, 243, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.thgpg_ticket-purchase__form-field label {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    color: #f0f6ff;
    opacity: 0.7;
    transition: all 0.3s ease;
    pointer-events: none;
    background: rgba(10, 14, 23, 0.9);
    padding: 0 0.5rem;
    font-size: 16px;
}

.thgpg_ticket-purchase__form-field input:focus + label,
.thgpg_ticket-purchase__form-field input:not(:placeholder-shown) + label,
.thgpg_ticket-purchase__form-field select:focus + label,
.thgpg_ticket-purchase__form-field select:not([value=""]) + label {
    top: 0;
    font-size: 0.8rem;
    color: #00f3ff;
    opacity: 1;
}

.thgpg_ticket-purchase__hint {
    font-size: 0.8rem;
    color: #00f3ff;
    opacity: 0.6;
    margin-top: 0.3rem;
    padding-left: 3rem;
}

.thgpg_ticket-purchase__order-details {
    margin-top: 2rem;
}

.thgpg_ticket-purchase__order-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 243, 255, 0.1);
}

.thgpg_ticket-purchase__order-section h4 {
    color: #00f3ff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.thgpg_ticket-purchase__selected-numbers,
.thgpg_ticket-purchase__selected-info {
    min-height: 100px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.thgpg_ticket-purchase__selected-numbers.filled {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    justify-content: flex-start;
}

.thgpg_ticket-purchase__selected-info.filled {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    justify-content: flex-start;
}

.thgpg_ticket-purchase__selected-numbers.filled p,
.thgpg_ticket-purchase__selected-info.filled p {
    margin: 0;
    color: #f0f6ff;
    opacity: 0.9;
    font-size: 0.9rem;
}

.thgpg_ticket-purchase__selected-numbers.filled .thgpg_ticket-purchase__number-display {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.thgpg_ticket-purchase__selected-numbers.filled .thgpg_ticket-purchase__number-item {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00f3ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #0a0e17;
}

.thgpg_ticket-purchase__empty-state {
    color: rgba(240, 246, 255, 0.5);
    font-style: italic;
    text-align: center;
    width: 100%;
}

.thgpg_ticket-purchase__price {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    margin-top: 1rem;
}

.thgpg_ticket-purchase__price span {
    color: #f0f6ff;
    opacity: 0.8;
}

.thgpg_ticket-purchase__price strong {
    color: #00f3ff;
    font-size: 1.5rem;
}

.thgpg_ticket-confirmation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 7, 15, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.thgpg_ticket-confirmation-modal {
    background: linear-gradient(135deg, #1a1f3c, #0a0e17);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    border: 2px solid rgba(0, 243, 255, 0.3);
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.2);
    position: relative;
    text-align: center;
    animation: modalAppear 0.5s ease;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.thgpg_ticket-confirmation-modal__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    color: #00f3ff;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thgpg_ticket-confirmation-modal__close:hover {
    background: rgba(0, 243, 255, 0.1);
}

.thgpg_ticket-confirmation-modal__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.thgpg_ticket-confirmation-modal__icon i {
    font-size: 3rem;
    color: #0a0e17;
}

.thgpg_ticket-confirmation-modal h3 {
    color: #2ecc71;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.thgpg_ticket-confirmation-modal p {
    color: #f0f6ff;
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.thgpg_ticket-confirmation-modal__email {
    color: #00f3ff;
    font-weight: 500;
}

.thgpg_ticket-confirmation-modal__notice {
    background: rgba(46, 204, 113, 0.1);
    border-left: 4px solid #2ecc71;
    padding: 1rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.5rem;
    text-align: left;
}

.thgpg_ticket-confirmation-modal__notice i {
    color: #2ecc71;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.thgpg_ticket-confirmation-modal__notice p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
}

.thgpg_ticket-confirmation-modal__ok {
    background: linear-gradient(135deg, #00f3ff, #0099cc);
    color: #0a0e17;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
    margin-top: 1rem;
}

.thgpg_ticket-confirmation-modal__ok:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.4);
}

@media (max-width: 1024px) {
    .thgpg_ticket-purchase__steps {
        gap: 1.5rem;
    }
    
    .thgpg_ticket-purchase__step {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .thgpg_ticket-purchase {
        padding: 2rem 1.5rem;
    }
    
    .thgpg_ticket-purchase h1 {
        font-size: 2.2rem;
    }
    
    .thgpg_ticket-purchase__game-selector {
        flex-direction: column;
        align-items: center;
    }
    
    .thgpg_ticket-purchase__game-option {
        max-width: 100%;
        width: 100%;
    }
    
    .thgpg_ticket-purchase__steps {
        flex-direction: column;
    }
    
    .thgpg_ticket-purchase__step {
        min-width: 100%;
    }
    
    .thgpg_ticket-confirmation-modal {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .thgpg_ticket-purchase {
        padding: 1.5rem 0.8rem;
    }
    
    .thgpg_ticket-purchase h1 {
        font-size: 1.8rem;
    }
    
    .thgpg_ticket-purchase > section > p {
        font-size: 0.9rem;
        padding: 0 0.3rem;
    }
    
    .thgpg_ticket-purchase__step {
        padding: 1.5rem 0.8rem;
    }
    
    .thgpg_ticket-purchase__step-header h3 {
        font-size: 1.3rem;
    }
    
    .thgpg_ticket-purchase__form-field input,
    .thgpg_ticket-purchase__form-field select {
        font-size: 16px;
        padding: 0.8rem 0.8rem 0.8rem 2.8rem;
    }
    
    .thgpg_ticket-purchase__form-field select {
        padding-right: 2.8rem;
    }
    
    .thgpg_ticket-purchase__form-field label {
        font-size: 16px;
        left: 2.8rem;
    }
    
    .thgpg_ticket-purchase__number-actions,
    .thgpg_ticket-purchase__clear-btn,
    .thgpg_ticket-purchase__random-btn,
    .thgpg_ticket-purchase__confirm-btn,
    .thgpg_ticket-purchase__info-confirm,
    .thgpg_ticket-purchase__buy-btn {
        font-size: 0.85rem;
        min-height: 44px;
    }
    
    .thgpg_ticket-purchase__hint {
        font-size: 0.75rem;
        padding-left: 2.8rem;
    }
    
    .thgpg_ticket-confirmation-modal {
        padding: 1.5rem;
        margin: 0 0.3rem;
    }
    
    .thgpg_ticket-confirmation-modal h3 {
        font-size: 1.5rem;
    }
    
    .thgpg_ticket-confirmation-modal p {
        font-size: 0.9rem;
    }
}

.thgpg_registration {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0e17 0%, #05070f 100%);
    position: relative;
    overflow: hidden;
    padding-bottom: 1rem;
}

.thgpg_registration__hero {
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.thgpg_registration__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(157, 78, 221, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.thgpg_registration__hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.thgpg_registration h1 {
    color: #00f3ff;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00f3ff, #9d4edd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textShimmer 3s infinite alternate;
}

@keyframes textShimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.thgpg_registration__hero > .thgpg_registration__hero-content > p {
    color: #f0f6ff;
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.thgpg_registration__hero-animation {
    width: 200px;
    height: 200px;
    margin: 2rem auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thgpg_registration__pulse-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 243, 255, 0.3);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

.thgpg_registration__pulse-circle:nth-child(2) {
    animation-delay: 1s;
}

.thgpg_registration__pulse-circle:nth-child(3) {
    animation-delay: 2s;
}

.thgpg_registration__hero-animation i {
    font-size: 5rem;
    color: #00f3ff;
    animation: iconFloat 3s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.7;
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.thgpg_registration__form-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(10, 14, 23, 0.7);
    border-radius: 24px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.thgpg_registration__form-section h2 {
    color: #00f3ff;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.thgpg_registration__form-section > p {
    color: #f0f6ff;
    opacity: 0.8;
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.thgpg_registration__form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.thgpg_registration__form-field {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 250px;
}

.thgpg_registration__input-container {
    position: relative;
    margin-bottom: 0.5rem;
}

.thgpg_registration__input-container i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #00f3ff;
    font-size: 1.2rem;
    z-index: 1;
    transition: all 0.3s ease;
}

.thgpg_registration__input-container input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 243, 255, 0.3);
    border-radius: 12px;
    color: #f0f6ff;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    min-height: 44px;
}

.thgpg_registration__input-container input:focus {
    outline: none;
    border-color: #00f3ff;
    box-shadow: 0 0 0 3px rgba(0, 243, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.thgpg_registration__input-container input:focus + label,
.thgpg_registration__input-container input:not(:placeholder-shown) + label {
    top: 0;
    font-size: 0.8rem;
    color: #00f3ff;
    opacity: 1;
    background: rgba(10, 14, 23, 0.9);
    padding: 0 0.5rem;
}

.thgpg_registration__input-container input:focus ~ i {
    color: #9d4edd;
    transform: translateY(-50%) scale(1.2);
}

.thgpg_registration__input-container label {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    color: #f0f6ff;
    opacity: 0.7;
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 16px;
}

.thgpg_registration__password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #00f3ff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thgpg_registration__password-toggle:hover {
    background: rgba(0, 243, 255, 0.1);
}

.thgpg_registration__hint {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    color: #00f3ff;
    opacity: 0.6;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    padding-left: 0.5rem;
}

.thgpg_registration__hint i {
    font-size: 1rem;
}

.thgpg_registration__error {
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    padding-left: 0.5rem;
    min-height: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thgpg_registration__error.show {
    opacity: 1;
}

.thgpg_registration__checkbox-container {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0, 243, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    position: relative;
    min-height: 44px;
}

.thgpg_registration__checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    top: 1.5rem;
    left: 1.5rem;
}

.thgpg_registration__checkbox-container label {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    color: #f0f6ff;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
    padding-left: 2.5rem;
    min-height: 44px;
    align-items: center;
}

.thgpg_registration__checkbox-custom {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 243, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thgpg_registration__checkbox-container input:checked + label .thgpg_registration__checkbox-custom {
    background: #00f3ff;
    border-color: #00f3ff;
}

.thgpg_registration__checkbox-container input:checked + label .thgpg_registration__checkbox-custom::after {
    content: '';
    width: 6px;
    height: 12px;
    border: solid #0a0e17;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: relative;
    top: -1px;
}

.thgpg_registration__checkbox-container a {
    color: #00f3ff;
    text-decoration: none;
    font-weight: 500;
}

.thgpg_registration__checkbox-container a:hover {
    text-decoration: underline;
}

.thgpg_registration__submit {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #00f3ff, #0099cc);
    border: none;
    border-radius: 12px;
    color: #0a0e17;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
    min-height: 44px;
}

.thgpg_registration__submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 243, 255, 0.3);
}

.thgpg_registration__submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.thgpg_registration__login-link {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
}

.thgpg_registration__login-link p {
    color: #f0f6ff;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.thgpg_registration__login-link a {
    color: #00f3ff;
    font-weight: 500;
    text-decoration: none;
}

.thgpg_registration__login-link a:hover {
    text-decoration: underline;
}

.thgpg_registration__forgot-password {
    position: relative;
    display: inline-block;
}

.thgpg_registration__forgot-trigger {
    color: #9d4edd;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
    transition: color 0.3s ease;
    padding: 0.5rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.thgpg_registration__forgot-trigger:hover {
    color: #00f3ff;
}

.thgpg_registration__forgot-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 14, 23, 0.95);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 12px;
    padding: 1rem;
    width: 300px;
    display: none;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.thgpg_registration__forgot-password:hover .thgpg_registration__forgot-tooltip {
    display: block;
    animation: tooltipFade 0.3s ease;
}

@keyframes tooltipFade {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.thgpg_registration__forgot-tooltip i {
    color: #9d4edd;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
    text-align: center;
}

.thgpg_registration__forgot-tooltip p {
    color: #f0f6ff;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.thgpg_registration__forgot-tooltip a {
    color: #00f3ff;
    text-decoration: none;
    font-weight: 500;
}

.thgpg_registration__forgot-tooltip a:hover {
    text-decoration: underline;
}

.thgpg_registration-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 7, 15, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.thgpg_registration-success-modal {
    background: linear-gradient(135deg, #1a1f3c, #0a0e17);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    border: 2px solid rgba(46, 204, 113, 0.3);
    box-shadow: 0 0 50px rgba(46, 204, 113, 0.2);
    text-align: center;
    animation: successModalAppear 0.5s ease;
}

@keyframes successModalAppear {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.thgpg_registration-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: successIconPulse 2s infinite;
}

@keyframes successIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.thgpg_registration-success-icon i {
    font-size: 3rem;
    color: #0a0e17;
}

.thgpg_registration-success-modal h3 {
    color: #2ecc71;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.thgpg_registration-success-modal p {
    color: #f0f6ff;
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.thgpg_registration-success-email {
    color: #00f3ff;
    font-weight: 500;
}

.thgpg_registration-success-notice {
    background: rgba(46, 204, 113, 0.1);
    border-left: 4px solid #2ecc71;
    padding: 1rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.5rem;
    text-align: left;
}

.thgpg_registration-success-notice i {
    color: #2ecc71;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.thgpg_registration-success-notice p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
}

.thgpg_registration-success-close {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #0a0e17;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    margin-top: 1rem;
}

.thgpg_registration-success-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

@media (max-width: 768px) {
    .thgpg_registration__hero {
        padding: 3rem 1.5rem;
    }
    
    .thgpg_registration h1 {
        font-size: 2.2rem;
    }
    
    .thgpg_registration__hero > .thgpg_registration__hero-content > p {
        font-size: 1rem;
    }
    
    .thgpg_registration__form-section {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .thgpg_registration__form-grid {
        flex-direction: column;
    }
    
    .thgpg_registration__form-field {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .thgpg_registration {
        padding: 0.1rem;
    }
    
    .thgpg_registration__hero {
        padding: 2rem 0.3rem;
    }
    
    .thgpg_registration h1 {
        font-size: 1.8rem;
        padding: 0 0.2rem;
    }
    
    .thgpg_registration__hero > .thgpg_registration__hero-content > p {
        font-size: 0.9rem;
        padding: 0 0.2rem;
    }
    
    .thgpg_registration__form-section {
        padding: 1.5rem 0.3rem;
        margin: 0.1rem;
        border-radius: 16px;
    }
    
    .thgpg_registration__form-section h2 {
        font-size: 1.5rem;
    }
    
    .thgpg_registration__form-section > p {
        font-size: 0.9rem;
    }
    
    .thgpg_registration__input-container input {
        font-size: 16px;
        padding: 0.8rem 0.8rem 0.8rem 2.8rem;
    }
    
    .thgpg_registration__input-container label {
        font-size: 16px;
        left: 2.8rem;
    }
    
    .thgpg_registration__checkbox-container {
        padding: 1rem 0.3rem;
    }
    
    .thgpg_registration__checkbox-container label {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .thgpg_registration__submit,
    .thgpg_registration-success-close {
        font-size: 0.9rem;
        padding: 0.8rem;
        min-height: 44px;
    }
    
    .thgpg_registration__forgot-tooltip {
        width: 250px;
        font-size: 0.8rem;
    }
    
    .thgpg_registration-success-modal {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .thgpg_registration-success-modal h3 {
        font-size: 1.5rem;
    }
    
    .thgpg_registration-success-modal p {
        font-size: 0.9rem;
    }
    
    .thgpg_registration__hero-animation {
        width: 150px;
        height: 150px;
    }
    
    .thgpg_registration__hero-animation i {
        font-size: 3.5rem;
    }
}

.thgpg_login {
    min-height: 100vh;
    background: linear-gradient(135deg, #05070f 0%, #1a1f3c 100%);
    position: relative;
    overflow: hidden;
    padding-bottom: 1rem;
}

.thgpg_login__hero {
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.thgpg_login__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.thgpg_login__hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.thgpg_login h1 {
    color: #9d4edd;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #9d4edd, #00f3ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: loginTitleShift 4s infinite alternate;
}

@keyframes loginTitleShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.thgpg_login__hero > .thgpg_login__hero-content > p {
    color: #f0f6ff;
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.thgpg_login__hero-animation {
    width: 220px;
    height: 220px;
    margin: 2rem auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thgpg_login__orbital-ring {
    position: absolute;
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 50%;
    animation: orbitalRotate 6s linear infinite;
}

.thgpg_login__orbital-ring:nth-child(1) {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
    border-color: rgba(157, 78, 221, 0.4);
}

.thgpg_login__orbital-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    animation-delay: -2s;
    animation-direction: reverse;
    border-color: rgba(0, 243, 255, 0.4);
}

.thgpg_login__orbital-ring:nth-child(3) {
    width: 40%;
    height: 40%;
    animation-delay: -4s;
    border-color: rgba(255, 183, 77, 0.4);
}

.thgpg_login__hero-animation i {
    font-size: 5rem;
    color: #9d4edd;
    animation: loginIconGlow 3s infinite ease-in-out;
}

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

@keyframes loginIconGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(157, 78, 221, 0.5));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(157, 78, 221, 0.8));
        transform: scale(1.1);
    }
}

.thgpg_login__form-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(10, 14, 23, 0.8);
    border-radius: 24px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.thgpg_login__form-section h2 {
    color: #9d4edd;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.thgpg_login__form-section > p {
    color: #f0f6ff;
    opacity: 0.8;
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.thgpg_login__form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.thgpg_login__form-field {
    flex: 1 1 100%;
}

.thgpg_login__input-container {
    position: relative;
    margin-bottom: 0.5rem;
}

.thgpg_login__input-container i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9d4edd;
    font-size: 1.2rem;
    z-index: 1;
    transition: all 0.3s ease;
}

.thgpg_login__input-container input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 12px;
    color: #f0f6ff;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    min-height: 44px;
}

.thgpg_login__input-container input:focus {
    outline: none;
    border-color: #9d4edd;
    box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.thgpg_login__input-container input:focus + label,
.thgpg_login__input-container input:not(:placeholder-shown) + label {
    top: 0;
    font-size: 0.8rem;
    color: #9d4edd;
    opacity: 1;
    background: rgba(10, 14, 23, 0.9);
    padding: 0 0.5rem;
}

.thgpg_login__input-container input:focus ~ i {
    color: #00f3ff;
    transform: translateY(-50%) scale(1.2);
}

.thgpg_login__input-container label {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    color: #f0f6ff;
    opacity: 0.7;
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 16px;
}

.thgpg_login__password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #9d4edd;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thgpg_login__password-toggle:hover {
    background: rgba(157, 78, 221, 0.1);
}

.thgpg_login__hint {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    color: #9d4edd;
    opacity: 0.6;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    padding-left: 0.5rem;
}

.thgpg_login__hint i {
    font-size: 1rem;
}

.thgpg_login__error {
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    padding-left: 0.5rem;
    min-height: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thgpg_login__error.show {
    opacity: 1;
}

.thgpg_login__checkbox-container {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(157, 78, 221, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    position: relative;
    min-height: 44px;
}

.thgpg_login__checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    top: 1.5rem;
    left: 1.5rem;
}

.thgpg_login__checkbox-container label {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    color: #f0f6ff;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
    padding-left: 2.5rem;
    min-height: 44px;
    align-items: center;
}

.thgpg_login__checkbox-custom {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(157, 78, 221, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thgpg_login__checkbox-container input:checked + label .thgpg_login__checkbox-custom {
    background: #9d4edd;
    border-color: #9d4edd;
}

.thgpg_login__checkbox-container input:checked + label .thgpg_login__checkbox-custom::after {
    content: '';
    width: 6px;
    height: 12px;
    border: solid #0a0e17;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: relative;
    top: -1px;
}

.thgpg_login__checkbox-container a {
    color: #9d4edd;
    text-decoration: none;
    font-weight: 500;
}

.thgpg_login__checkbox-container a:hover {
    text-decoration: underline;
}

.thgpg_login__submit {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #9d4edd, #7b2cbf);
    border: none;
    border-radius: 12px;
    color: #f0f6ff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
    min-height: 44px;
}

.thgpg_login__submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(157, 78, 221, 0.3);
    background: linear-gradient(135deg, #9d4edd, #00f3ff);
}

.thgpg_login__submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.thgpg_login__links {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(157, 78, 221, 0.2);
}

.thgpg_login__links p {
    color: #f0f6ff;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.thgpg_login__links a {
    color: #9d4edd;
    font-weight: 500;
    text-decoration: none;
}

.thgpg_login__links a:hover {
    color: #00f3ff;
    text-decoration: underline;
}

.thgpg_login__forgot-password {
    position: relative;
    display: inline-block;
}

.thgpg_login__forgot-trigger {
    color: #ffb74d;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
    transition: color 0.3s ease;
    padding: 0.5rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.thgpg_login__forgot-trigger:hover {
    color: #9d4edd;
}

.thgpg_login__forgot-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 14, 23, 0.95);
    border: 1px solid rgba(255, 183, 77, 0.3);
    border-radius: 12px;
    padding: 1rem;
    width: 300px;
    display: none;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.thgpg_login__forgot-password:hover .thgpg_login__forgot-tooltip {
    display: block;
    animation: loginTooltipFade 0.3s ease;
}

@keyframes loginTooltipFade {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.thgpg_login__forgot-tooltip i {
    color: #ffb74d;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
    text-align: center;
}

.thgpg_login__forgot-tooltip p {
    color: #f0f6ff;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.thgpg_login__forgot-tooltip a {
    color: #9d4edd;
    text-decoration: none;
    font-weight: 500;
}

.thgpg_login__forgot-tooltip a:hover {
    text-decoration: underline;
}

.thgpg_login-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 7, 15, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.thgpg_login-success-modal {
    background: linear-gradient(135deg, #1a1f3c, #0a0e17);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    border: 2px solid rgba(157, 78, 221, 0.3);
    box-shadow: 0 0 50px rgba(157, 78, 221, 0.2);
    text-align: center;
    animation: loginSuccessAppear 0.5s ease;
}

@keyframes loginSuccessAppear {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.thgpg_login-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9d4edd, #7b2cbf);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: loginSuccessPulse 2s infinite;
}

@keyframes loginSuccessPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.thgpg_login-success-icon i {
    font-size: 3rem;
    color: #f0f6ff;
}

.thgpg_login-success-modal h3 {
    color: #9d4edd;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.thgpg_login-success-modal p {
    color: #f0f6ff;
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.thgpg_login-success-email {
    color: #00f3ff;
    font-weight: 500;
}

.thgpg_login-success-notice {
    background: rgba(157, 78, 221, 0.1);
    border-left: 4px solid #9d4edd;
    padding: 1rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.5rem;
    text-align: left;
}

.thgpg_login-success-notice i {
    color: #9d4edd;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.thgpg_login-success-notice p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
}

.thgpg_login-success-close {
    background: linear-gradient(135deg, #9d4edd, #7b2cbf);
    color: #f0f6ff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    margin-top: 1rem;
}

.thgpg_login-success-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(157, 78, 221, 0.4);
    background: linear-gradient(135deg, #9d4edd, #00f3ff);
}

@media (max-width: 768px) {
    .thgpg_login__hero {
        padding: 3rem 1.5rem;
    }
    
    .thgpg_login h1 {
        font-size: 2.2rem;
    }
    
    .thgpg_login__hero > .thgpg_login__hero-content > p {
        font-size: 1rem;
    }
    
    .thgpg_login__form-section {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .thgpg_login__form-grid {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .thgpg_login {
        padding: 0.5rem;
    }
    
    .thgpg_login__hero {
        padding: 2rem 0.8rem;
    }
    
    .thgpg_login h1 {
        font-size: 1.8rem;
        padding: 0 0.3rem;
    }
    
    .thgpg_login__hero > .thgpg_login__hero-content > p {
        font-size: 0.9rem;
        padding: 0 0.3rem;
    }
    
    .thgpg_login__form-section {
        padding: 1.5rem 0.8rem;
        margin: 0.5rem;
        border-radius: 16px;
    }
    
    .thgpg_login__form-section h2 {
        font-size: 1.5rem;
    }
    
    .thgpg_login__form-section > p {
        font-size: 0.9rem;
    }
    
    .thgpg_login__input-container input {
        font-size: 16px;
        padding: 0.8rem 0.8rem 0.8rem 2.8rem;
    }
    
    .thgpg_login__input-container label {
        font-size: 16px;
        left: 2.8rem;
    }
    
    .thgpg_login__checkbox-container {
        padding: 1rem 0.8rem;
    }
    
    .thgpg_login__checkbox-container label {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .thgpg_login__submit,
    .thgpg_login-success-close {
        font-size: 0.9rem;
        padding: 0.8rem;
        min-height: 44px;
    }
    
    .thgpg_login__forgot-tooltip {
        width: 250px;
        font-size: 0.8rem;
    }
    
    .thgpg_login-success-modal {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .thgpg_login-success-modal h3 {
        font-size: 1.5rem;
    }
    
    .thgpg_login-success-modal p {
        font-size: 0.9rem;
    }
    
    .thgpg_login__hero-animation {
        width: 180px;
        height: 180px;
    }
    
    .thgpg_login__hero-animation i {
        font-size: 4rem;
    }
    
    .thgpg_login__links p,
    .thgpg_login__forgot-trigger {
        font-size: 0.8rem;
    }
}

.thgpg_contact {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f3c 50%, #0a0e17 100%);
    position: relative;
    overflow: hidden;
    padding-bottom: 1rem;
}

.thgpg_contact__hero {
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.thgpg_contact__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.thgpg_contact__hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.thgpg_contact h1 {
    color: #00f3ff;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00f3ff, #ffb74d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: contactTitleWave 4s infinite linear;
}

@keyframes contactTitleWave {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.thgpg_contact__hero > .thgpg_contact__hero-content > p {
    color: #f0f6ff;
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.thgpg_contact__hero-animation {
    width: 220px;
    height: 220px;
    margin: 2rem auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thgpg_contact__wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 243, 255, 0.2);
    border-radius: 50%;
    animation: waveExpand 3s infinite;
}

.thgpg_contact__wave:nth-child(1) {
    animation-delay: 0s;
}

.thgpg_contact__wave:nth-child(2) {
    animation-delay: 1s;
}

.thgpg_contact__wave:nth-child(3) {
    animation-delay: 2s;
}

.thgpg_contact__hero-animation i {
    font-size: 5rem;
    color: #00f3ff;
    animation: contactIconBounce 3s infinite ease-in-out;
}

@keyframes waveExpand {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes contactIconBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    75% {
        transform: translateY(5px) rotate(-5deg);
    }
}

.thgpg_contact__form-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(10, 14, 23, 0.8);
    border-radius: 24px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.thgpg_contact__form-section h2 {
    color: #00f3ff;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.thgpg_contact__form-section > p {
    color: #f0f6ff;
    opacity: 0.8;
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.thgpg_contact__form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.thgpg_contact__form-field {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 250px;
}

.thgpg_contact__form-field.full-width {
    flex: 1 1 100%;
}

.thgpg_contact__input-container {
    position: relative;
    margin-bottom: 0.5rem;
}

.thgpg_contact__input-container i {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #00f3ff;
    font-size: 1.2rem;
    z-index: 1;
    transition: all 0.3s ease;
}

.thgpg_contact__input-container input,
.thgpg_contact__input-container textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 243, 255, 0.3);
    border-radius: 12px;
    color: #f0f6ff;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    min-height: 44px;
    resize: vertical;
}

.thgpg_contact__input-container textarea {
    min-height: 120px;
    padding-top: 1.5rem;
}

.thgpg_contact__input-container input:focus,
.thgpg_contact__input-container textarea:focus {
    outline: none;
    border-color: #00f3ff;
    box-shadow: 0 0 0 3px rgba(0, 243, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.thgpg_contact__input-container input:focus + label,
.thgpg_contact__input-container input:not(:placeholder-shown) + label,
.thgpg_contact__input-container textarea:focus + label,
.thgpg_contact__input-container textarea:not(:placeholder-shown) + label {
    top: 0;
    font-size: 0.8rem;
    color: #00f3ff;
    opacity: 1;
    background: rgba(10, 14, 23, 0.9);
    padding: 0 0.5rem;
}

.thgpg_contact__input-container input:focus ~ i,
.thgpg_contact__input-container textarea:focus ~ i {
    color: #ffb74d;
    transform: scale(1.2);
}

.thgpg_contact__input-container label {
    position: absolute;
    left: 3rem;
    top: 1rem;
    color: #f0f6ff;
    opacity: 0.7;
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 16px;
}

.thgpg_contact__hint {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    color: #00f3ff;
    opacity: 0.6;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    padding-left: 0.5rem;
}

.thgpg_contact__hint i {
    font-size: 1rem;
}

.thgpg_contact__error {
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    padding-left: 0.5rem;
    min-height: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thgpg_contact__error.show {
    opacity: 1;
}

.thgpg_contact__checkbox-container {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0, 243, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    position: relative;
    min-height: 44px;
}

.thgpg_contact__checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    top: 1.5rem;
    left: 1.5rem;
}

.thgpg_contact__checkbox-container label {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    color: #f0f6ff;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
    padding-left: 2.5rem;
    min-height: 44px;
    align-items: center;
}

.thgpg_contact__checkbox-custom {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 243, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thgpg_contact__checkbox-container input:checked + label .thgpg_contact__checkbox-custom {
    background: #00f3ff;
    border-color: #00f3ff;
}

.thgpg_contact__checkbox-container input:checked + label .thgpg_contact__checkbox-custom::after {
    content: '';
    width: 6px;
    height: 12px;
    border: solid #0a0e17;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: relative;
    top: -1px;
}

.thgpg_contact__checkbox-container a {
    color: #00f3ff;
    text-decoration: none;
    font-weight: 500;
}

.thgpg_contact__checkbox-container a:hover {
    text-decoration: underline;
}

.thgpg_contact__submit {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #00f3ff, #0099cc);
    border: none;
    border-radius: 12px;
    color: #0a0e17;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
    min-height: 44px;
}

.thgpg_contact__submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 243, 255, 0.3);
}

.thgpg_contact__submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.thgpg_contact__additional-links {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
}

.thgpg_contact__additional-links p {
    color: #f0f6ff;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.thgpg_contact__additional-links a {
    color: #00f3ff;
    font-weight: 500;
    text-decoration: none;
}

.thgpg_contact__additional-links a:hover {
    text-decoration: underline;
}

.thgpg_contact__password-recovery {
    position: relative;
    display: inline-block;
}

.thgpg_contact__password-btn {
    background: rgba(255, 183, 77, 0.1);
    border: 1px solid rgba(255, 183, 77, 0.3);
    color: #ffb74d;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 160px;
}

.thgpg_contact__password-btn:hover {
    background: rgba(255, 183, 77, 0.2);
    border-color: #ffb74d;
    transform: translateY(-2px);
}

.thgpg_contact__password-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 7, 15, 0.9);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.thgpg_contact__password-modal.active {
    display: flex;
    animation: passwordModalFade 0.3s ease;
}

@keyframes passwordModalFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.thgpg_contact__password-modal-content {
    background: linear-gradient(135deg, #1a1f3c, #0a0e17);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    border: 2px solid rgba(255, 183, 77, 0.3);
    box-shadow: 0 0 40px rgba(255, 183, 77, 0.2);
    position: relative;
    animation: passwordModalSlide 0.3s ease;
}

@keyframes passwordModalSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thgpg_contact__password-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    color: #ffb74d;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thgpg_contact__password-close:hover {
    background: rgba(255, 183, 77, 0.1);
}

.thgpg_contact__password-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 183, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(255, 183, 77, 0.3);
}

.thgpg_contact__password-icon i {
    font-size: 2rem;
    color: #ffb74d;
}

.thgpg_contact__password-modal-content h3 {
    color: #ffb74d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.thgpg_contact__password-modal-content p {
    color: #f0f6ff;
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.thgpg_contact__password-modal-content a {
    color: #00f3ff;
    text-decoration: none;
    font-weight: 500;
}

.thgpg_contact__password-modal-content a:hover {
    text-decoration: underline;
}

.thgpg_contact-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 7, 15, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.thgpg_contact-success-modal {
    background: linear-gradient(135deg, #1a1f3c, #0a0e17);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    border: 2px solid rgba(0, 243, 255, 0.3);
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.2);
    text-align: center;
    animation: contactSuccessAppear 0.5s ease;
}

@keyframes contactSuccessAppear {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.thgpg_contact-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00f3ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: contactSuccessSpin 3s infinite linear;
}

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

.thgpg_contact-success-icon i {
    font-size: 3rem;
    color: #0a0e17;
}

.thgpg_contact-success-modal h3 {
    color: #00f3ff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.thgpg_contact-success-modal p {
    color: #f0f6ff;
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.thgpg_contact-success-email {
    color: #ffb74d;
    font-weight: 500;
}

.thgpg_contact-success-notice {
    background: rgba(0, 243, 255, 0.1);
    border-left: 4px solid #00f3ff;
    padding: 1rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.5rem;
    text-align: left;
}

.thgpg_contact-success-notice i {
    color: #00f3ff;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.thgpg_contact-success-notice p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
}

.thgpg_contact-success-close {
    background: linear-gradient(135deg, #00f3ff, #0099cc);
    color: #0a0e17;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    margin-top: 1rem;
}

.thgpg_contact-success-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.4);
}

@media (max-width: 768px) {
    .thgpg_contact__hero {
        padding: 3rem 1.5rem;
    }
    
    .thgpg_contact h1 {
        font-size: 2.2rem;
    }
    
    .thgpg_contact__hero > .thgpg_contact__hero-content > p {
        font-size: 1rem;
    }
    
    .thgpg_contact__form-section {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .thgpg_contact__form-grid {
        flex-direction: column;
    }
    
    .thgpg_contact__form-field {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .thgpg_contact {
        padding: 0.1rem;
    }
    
    .thgpg_contact__hero {
        padding: 2rem 0.8rem;
    }
    
    .thgpg_contact h1 {
        font-size: 1.8rem;
        padding: 0 0.3rem;
    }
    
    .thgpg_contact__hero > .thgpg_contact__hero-content > p {
        font-size: 0.9rem;
        padding: 0 0.3rem;
    }
    
    .thgpg_contact__form-section {
        padding: 1.5rem 0.2rem;
        margin: 0.1rem;
        border-radius: 16px;
    }
    
    .thgpg_contact__form-section h2 {
        font-size: 1.5rem;
    }
    
    .thgpg_contact__form-section > p {
        font-size: 0.9rem;
    }
    
    .thgpg_contact__input-container input,
    .thgpg_contact__input-container textarea {
        font-size: 16px;
        padding: 0.8rem 0.8rem 0.8rem 2.8rem;
    }
    
    .thgpg_contact__input-container label {
        font-size: 16px;
        left: 2.8rem;
    }
    
    .thgpg_contact__checkbox-container {
        padding: 1rem 0.8rem;
    }
    
    .thgpg_contact__checkbox-container label {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .thgpg_contact__submit,
    .thgpg_contact-success-close,
    .thgpg_contact__password-btn {
        font-size: 0.9rem;
        padding: 0.8rem;
        min-height: 44px;
    }
    
    .thgpg_contact__password-modal-content {
        padding: 1.5rem;
        margin: 0 0.1rem;
    }
    
    .thgpg_contact__password-modal-content h3 {
        font-size: 1.3rem;
    }
    
    .thgpg_contact__password-modal-content p {
        font-size: 0.85rem;
    }

    .thgpg_contact__password-modal-content a {
        font-size: 0.8rem;
    }
    
    .thgpg_contact-success-modal {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .thgpg_contact-success-modal h3 {
        font-size: 1.5rem;
    }
    
    .thgpg_contact-success-modal p {
        font-size: 0.9rem;
    }
    
    .thgpg_contact__hero-animation {
        width: 180px;
        height: 180px;
    }
    
    .thgpg_contact__hero-animation i {
        font-size: 4rem;
    }
    
    .thgpg_contact__additional-links p,
    .thgpg_contact__password-btn {
        font-size: 0.85rem;
    }

    .thgpg_contact-success-modal {
        align-items: flex-start;
    }
}

.thgpg_terms {
    min-height: 100vh;
    background: linear-gradient(135deg, #05070f 0%, #0a0e17 50%, #1a1f3c 100%);
    padding: 3rem 2rem;
    position: relative;
    overflow-x: hidden;
}

.thgpg_terms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.3), transparent);
}

.thgpg_terms__container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.thgpg_terms__header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(157, 78, 221, 0.2);
    position: relative;
}

.thgpg_terms h1 {
    color: #9d4edd;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #9d4edd, #00f3ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(157, 78, 221, 0.2);
}

.thgpg_terms__subtitle {
    color: #f0f6ff;
    opacity: 0.7;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.thgpg_terms__decoration {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.thgpg_terms__decoration i {
    font-size: 3rem;
    color: #9d4edd;
    animation: termsIconFloat 4s infinite ease-in-out;
}

@keyframes termsIconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(5deg);
    }
    75% {
        transform: translateY(5px) rotate(-5deg);
    }
}

.thgpg_terms__decoration-line {
    flex: 1;
    max-width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #9d4edd, transparent);
}

.thgpg_terms__intro {
    background: rgba(157, 78, 221, 0.05);
    border-left: 4px solid #9d4edd;
    padding: 2rem;
    border-radius: 0 12px 12px 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.thgpg_terms__intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(157, 78, 221, 0.02) 100%);
    z-index: -1;
}

.thgpg_terms__intro p {
    color: #f0f6ff;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.thgpg_terms__content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.thgpg_terms__section {
    background: rgba(10, 14, 23, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(157, 78, 221, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.thgpg_terms__section:hover {
    border-color: rgba(157, 78, 221, 0.3);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.1);
    transform: translateY(-5px);
}

.thgpg_terms__section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9d4edd, #00f3ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thgpg_terms__section:hover::before {
    opacity: 1;
}

.thgpg_terms__section-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(157, 78, 221, 0.05);
    border-bottom: 1px solid rgba(157, 78, 221, 0.1);
}

.thgpg_terms__section-header i {
    font-size: 2rem;
    color: #9d4edd;
    min-width: 40px;
}

.thgpg_terms__section-header h2 {
    color: #f0f6ff;
    font-size: 1.5rem;
    margin: 0;
    flex: 1;
}

.thgpg_terms__section-content {
    padding: 2rem;
}

.thgpg_terms__section-content p {
    color: #f0f6ff;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.thgpg_terms__section-content p:last-child {
    margin-bottom: 0;
}

.thgpg_terms__contact {
    background: rgba(0, 243, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 243, 255, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thgpg_terms__contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 243, 255, 0.03) 0%, transparent 70%);
    z-index: -1;
}

.thgpg_terms__contact-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.thgpg_terms__contact-header i {
    font-size: 2.5rem;
    color: #00f3ff;
    animation: contactIconPulse 2s infinite;
}

@keyframes contactIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.thgpg_terms__contact-header h3 {
    color: #00f3ff;
    font-size: 1.8rem;
    margin: 0;
}

.thgpg_terms__contact > p {
    color: #f0f6ff;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.thgpg_terms__contact-info {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    background: rgba(0, 243, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.thgpg_terms__contact-info:hover {
    background: rgba(0, 243, 255, 0.15);
    transform: translateY(-2px);
}

.thgpg_terms__contact-info i {
    color: #00f3ff;
    font-size: 1.2rem;
}

.thgpg_terms__contact-info a {
    color: #00f3ff;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.thgpg_terms__contact-info a:hover {
    color: #f0f6ff;
    text-decoration: underline;
}

.thgpg_terms__notice {
    color: #ffb74d;
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
    margin-top: 1rem;
}

.thgpg_terms__update {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 183, 77, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 183, 77, 0.1);
}

.thgpg_terms__update i {
    font-size: 1.5rem;
    color: #ffb74d;
    min-width: 30px;
}

.thgpg_terms__update p {
    color: #f0f6ff;
    opacity: 0.8;
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .thgpg_terms {
        padding: 2rem 1.5rem;
    }
    
    .thgpg_terms h1 {
        font-size: 2.2rem;
    }
    
    .thgpg_terms__subtitle {
        font-size: 1rem;
    }
    
    .thgpg_terms__section-header {
        padding: 1.2rem 1.5rem;
    }
    
    .thgpg_terms__section-header h2 {
        font-size: 1.3rem;
    }
    
    .thgpg_terms__section-content {
        padding: 1.5rem;
    }
    
    .thgpg_terms__section-content p {
        font-size: 1rem;
    }
    
    .thgpg_terms__contact {
        padding: 2rem 1.5rem;
    }
    
    .thgpg_terms__contact-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .thgpg_terms {
        padding: 1.5rem 0.8rem;
    }
    
    .thgpg_terms h1 {
        font-size: 1.8rem;
        padding: 0 0.3rem;
    }
    
    .thgpg_terms__subtitle {
        font-size: 0.9rem;
        padding: 0 0.3rem;
    }
    
    .thgpg_terms__intro {
        padding: 1.5rem;
        margin-left: -0.3rem;
        margin-right: -0.3rem;
    }
    
    .thgpg_terms__intro p {
        font-size: 0.95rem;
    }
    
    .thgpg_terms__section {
        margin-left: -0.3rem;
        margin-right: -0.3rem;
        border-radius: 12px;
    }
    
    .thgpg_terms__section-header {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .thgpg_terms__section-header i {
        font-size: 1.8rem;
    }
    
    .thgpg_terms__section-header h2 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .thgpg_terms__section-content {
        padding: 1.2rem;
    }
    
    .thgpg_terms__section-content p {
        font-size: 0.9rem;
    }
    
    .thgpg_terms__contact {
        padding: 1.5rem;
        margin-left: -0.3rem;
        margin-right: -0.3rem;
        border-radius: 12px;
    }
    
    .thgpg_terms__contact-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .thgpg_terms__contact-header h3 {
        font-size: 1.3rem;
    }
    
    .thgpg_terms__contact > p {
        font-size: 0.9rem;
    }
    
    .thgpg_terms__contact-info {
        padding: 0.8rem 0.3rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .thgpg_terms__contact-info a {
        font-size: 0.8rem;
    }
    
    .thgpg_terms__notice {
        font-size: 0.8rem;
    }
    
    .thgpg_terms__update {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .thgpg_terms__update p {
        font-size: 0.85rem;
    }
    
    .thgpg_terms__decoration {
        gap: 1rem;
    }
    
    .thgpg_terms__decoration i {
        font-size: 2.5rem;
    }
    
    .thgpg_terms__decoration-line {
        max-width: 150px;
    }
}

.thgpg_privacy {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f3c 50%, #0a0e17 100%);
    padding: 3rem 2rem;
    position: relative;
    overflow-x: hidden;
}

.thgpg_privacy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.3), transparent);
}

.thgpg_privacy__container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.thgpg_privacy__header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 243, 255, 0.2);
    position: relative;
}

.thgpg_privacy h1 {
    color: #00f3ff;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00f3ff, #9d4edd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(0, 243, 255, 0.2);
}

.thgpg_privacy__subtitle {
    color: #f0f6ff;
    opacity: 0.7;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.thgpg_privacy__decoration {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.thgpg_privacy__decoration i {
    font-size: 3rem;
    color: #00f3ff;
    animation: privacyIconGlow 3s infinite alternate;
}

@keyframes privacyIconGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.8));
    }
}

.thgpg_privacy__decoration-line {
    flex: 1;
    max-width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00f3ff, transparent);
}

.thgpg_privacy__intro {
    background: rgba(0, 243, 255, 0.05);
    border-left: 4px solid #00f3ff;
    padding: 2rem;
    border-radius: 0 12px 12px 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.thgpg_privacy__intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 243, 255, 0.02) 100%);
    z-index: -1;
}

.thgpg_privacy__intro p {
    color: #f0f6ff;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.thgpg_privacy__content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.thgpg_privacy__section {
    background: rgba(10, 14, 23, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(0, 243, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.thgpg_privacy__section:hover {
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1);
    transform: translateY(-5px);
}

.thgpg_privacy__section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00f3ff, #9d4edd);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thgpg_privacy__section:hover::before {
    opacity: 1;
}

.thgpg_privacy__section-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(0, 243, 255, 0.05);
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
}

.thgpg_privacy__section-header i {
    font-size: 2rem;
    color: #00f3ff;
    min-width: 40px;
}

.thgpg_privacy__section-header h2 {
    color: #f0f6ff;
    font-size: 1.5rem;
    margin: 0;
    flex: 1;
}

.thgpg_privacy__section-content {
    padding: 2rem;
}

.thgpg_privacy__section-content p {
    color: #f0f6ff;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.thgpg_privacy__section-content p:last-child {
    margin-bottom: 0;
}

.thgpg_privacy__section-content a {
    color: #00f3ff;
    text-decoration: none;
    font-weight: 500;
}

.thgpg_privacy__section-content a:hover {
    text-decoration: underline;
}

.thgpg_privacy__contact-detail {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    background: rgba(0, 243, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.thgpg_privacy__contact-detail i {
    color: #00f3ff;
    font-size: 1.1rem;
}

.thgpg_privacy__contact-detail a {
    color: #00f3ff;
    font-weight: 500;
}

.thgpg_privacy__rights {
    background: rgba(157, 78, 221, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(157, 78, 221, 0.1);
    position: relative;
    overflow: hidden;
}

.thgpg_privacy__rights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(157, 78, 221, 0.03) 0%, transparent 70%);
    z-index: -1;
}

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

.thgpg_privacy__rights-header i {
    font-size: 2.5rem;
    color: #9d4edd;
}

.thgpg_privacy__rights-header h3 {
    color: #9d4edd;
    font-size: 1.8rem;
    margin: 0;
}

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

.thgpg_privacy__right {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(157, 78, 221, 0.1);
    transition: all 0.3s ease;
}

.thgpg_privacy__right:hover {
    border-color: rgba(157, 78, 221, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(157, 78, 221, 0.1);
}

.thgpg_privacy__right i {
    font-size: 2.5rem;
    color: #9d4edd;
    margin-bottom: 1rem;
    display: block;
}

.thgpg_privacy__right h4 {
    color: #f0f6ff;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.thgpg_privacy__right p {
    color: #f0f6ff;
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.thgpg_privacy__update {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 183, 77, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 183, 77, 0.1);
}

.thgpg_privacy__update i {
    font-size: 1.5rem;
    color: #ffb74d;
    min-width: 30px;
    animation: updateIconRotate 4s infinite linear;
}

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

.thgpg_privacy__update p {
    color: #f0f6ff;
    opacity: 0.8;
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .thgpg_privacy {
        padding: 2rem 1.5rem;
    }
    
    .thgpg_privacy h1 {
        font-size: 2.2rem;
    }
    
    .thgpg_privacy__subtitle {
        font-size: 1rem;
    }
    
    .thgpg_privacy__section-header {
        padding: 1.2rem 1.5rem;
    }
    
    .thgpg_privacy__section-header h2 {
        font-size: 1.3rem;
    }
    
    .thgpg_privacy__section-content {
        padding: 1.5rem;
    }
    
    .thgpg_privacy__section-content p {
        font-size: 1rem;
    }
    
    .thgpg_privacy__rights {
        padding: 2rem 1.5rem;
    }
    
    .thgpg_privacy__rights-header h3 {
        font-size: 1.5rem;
    }
    
    .thgpg_privacy__right {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .thgpg_privacy {
        padding: 1.5rem 0.3rem;
    }
    
    .thgpg_privacy h1 {
        font-size: 1.8rem;
        padding: 0 0.2rem;
    }
    
    .thgpg_privacy__subtitle {
        font-size: 0.9rem;
        padding: 0 0.2rem;
    }
    
    .thgpg_privacy__intro {
        padding: 1.5rem;
        margin-left: -0.3rem;
        margin-right: -0.3rem;
    }
    
    .thgpg_privacy__intro p {
        font-size: 0.95rem;
    }
    
    .thgpg_privacy__section {
        margin-left: -0.3rem;
        margin-right: -0.3rem;
        border-radius: 12px;
    }
    
    .thgpg_privacy__section-header {
        padding: 1rem 00.2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .thgpg_privacy__section-header i {
        font-size: 1.8rem;
    }
    
    .thgpg_privacy__section-header h2 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .thgpg_privacy__section-content {
        padding: 1.2rem 0.2rem;
    }
    
    .thgpg_privacy__section-content p {
        font-size: 0.9rem;
    }
    
    .thgpg_privacy__contact-detail {
        padding: 0.6rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .thgpg_privacy__contact-detail a {
        font-size: 0.9rem;
    }
    
    .thgpg_privacy__rights {
        padding: 1.5rem;
        margin-left: -0.3rem;
        margin-right: -0.3rem;
        border-radius: 12px;
    }
    
    .thgpg_privacy__rights-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .thgpg_privacy__rights-header h3 {
        font-size: 1.3rem;
    }
    
    .thgpg_privacy__rights-content {
        flex-direction: column;
    }
    
    .thgpg_privacy__right {
        padding: 1.2rem;
    }
    
    .thgpg_privacy__right i {
        font-size: 2rem;
    }
    
    .thgpg_privacy__right h4 {
        font-size: 1.1rem;
    }
    
    .thgpg_privacy__right p {
        font-size: 0.85rem;
    }
    
    .thgpg_privacy__update {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .thgpg_privacy__update p {
        font-size: 0.85rem;
    }
    
    .thgpg_privacy__decoration {
        gap: 1rem;
    }
    
    .thgpg_privacy__decoration i {
        font-size: 2.5rem;
    }
    
    .thgpg_privacy__decoration-line {
        max-width: 150px;
    }

    .thgpg_privacy__section-content a {
        font-size: 0.8rem;
    }
}

.thgpg_responsible {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f3c 50%, #0a0e17 100%);
    padding: 3rem 2rem;
    position: relative;
    overflow-x: hidden;
}

.thgpg_responsible::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 183, 77, 0.3), transparent);
}

.thgpg_responsible__container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.thgpg_responsible__header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 183, 77, 0.2);
    position: relative;
}

.thgpg_responsible h1 {
    color: #ffb74d;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffb74d, #ff9800);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(255, 183, 77, 0.2);
}

.thgpg_responsible__subtitle {
    color: #f0f6ff;
    opacity: 0.7;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.thgpg_responsible__decoration {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.thgpg_responsible__decoration i {
    font-size: 3rem;
    color: #ffb74d;
    animation: responsibleIconPulse 2s infinite;
}

@keyframes responsibleIconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 183, 77, 0.5));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(255, 183, 77, 0.8));
    }
}

.thgpg_responsible__decoration-line {
    flex: 1;
    max-width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffb74d, transparent);
}

.thgpg_responsible__warning {
    background: rgba(255, 183, 77, 0.1);
    border-left: 4px solid #ffb74d;
    border-radius: 0 12px 12px 0;
    padding: 2rem;
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.thgpg_responsible__warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 183, 77, 0.03) 100%);
    z-index: -1;
}

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

.thgpg_responsible__warning-icon i {
    font-size: 3rem;
    color: #ffb74d;
}

.thgpg_responsible__warning-content {
    flex: 1;
    min-width: 260px;
}

.thgpg_responsible__warning-content h3 {
    color: #ffb74d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.thgpg_responsible__warning-content p {
    color: #f0f6ff;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.thgpg_responsible__warning-content p:last-child {
    margin-bottom: 0;
}

.thgpg_responsible__content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.thgpg_responsible__section {
    background: rgba(10, 14, 23, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(255, 183, 77, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.thgpg_responsible__section:hover {
    border-color: rgba(255, 183, 77, 0.3);
    box-shadow: 0 10px 30px rgba(255, 183, 77, 0.1);
    transform: translateY(-5px);
}

.thgpg_responsible__section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffb74d, #ff9800);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thgpg_responsible__section:hover::before {
    opacity: 1;
}

.thgpg_responsible__section-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 183, 77, 0.05);
    border-bottom: 1px solid rgba(255, 183, 77, 0.1);
}

.thgpg_responsible__section-header i {
    font-size: 2rem;
    color: #ffb74d;
    min-width: 40px;
}

.thgpg_responsible__section-header h2 {
    color: #f0f6ff;
    font-size: 1.5rem;
    margin: 0;
    flex: 1;
}

.thgpg_responsible__section-content {
    padding: 2rem;
}

.thgpg_responsible__section-content p {
    color: #f0f6ff;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.thgpg_responsible__section-content p:last-child {
    margin-bottom: 0;
}

.thgpg_responsible__resources {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.thgpg_responsible__resource {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 183, 77, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.thgpg_responsible__resource:hover {
    background: rgba(255, 183, 77, 0.1);
    transform: translateY(-3px);
}

.thgpg_responsible__resource i {
    font-size: 1.8rem;
    color: #ffb74d;
    margin-top: 0.2rem;
}

.thgpg_responsible__resource div {
    flex: 1;
}

.thgpg_responsible__resource h4 {
    color: #ffb74d;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.thgpg_responsible__resource p {
    color: #f0f6ff;
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.thgpg_responsible__resource a {
    color: #ffb74d;
    text-decoration: none;
    font-weight: 500;
}

.thgpg_responsible__resource a:hover {
    text-decoration: underline;
}

.thgpg_responsible__pledge {
    background: rgba(157, 78, 221, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(157, 78, 221, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thgpg_responsible__pledge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(157, 78, 221, 0.03) 0%, transparent 70%);
    z-index: -1;
}

.thgpg_responsible__pledge-icon {
    width: 80px;
    height: 80px;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(157, 78, 221, 0.3);
}

.thgpg_responsible__pledge-icon i {
    font-size: 2.5rem;
    color: #9d4edd;
    animation: pledgeIconFloat 3s infinite ease-in-out;
}

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

.thgpg_responsible__pledge h3 {
    color: #9d4edd;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.thgpg_responsible__pledge p {
    color: #f0f6ff;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.thgpg_responsible__pledge-signature {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(157, 78, 221, 0.2);
}

.thgpg_responsible__pledge-signature p {
    color: #f0f6ff;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.thgpg_responsible__pledge-signature p strong {
    color: #9d4edd;
    font-weight: 600;
}

.thgpg_responsible__footer-note {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 243, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 243, 255, 0.1);
}

.thgpg_responsible__footer-note i {
    font-size: 1.5rem;
    color: #00f3ff;
    min-width: 30px;
}

.thgpg_responsible__footer-note p {
    color: #f0f6ff;
    opacity: 0.8;
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    font-style: italic;
}

@media (max-width: 768px) {
    .thgpg_responsible {
        padding: 2rem 1.5rem;
    }
    
    .thgpg_responsible h1 {
        font-size: 2.2rem;
    }
    
    .thgpg_responsible__subtitle {
        font-size: 1rem;
    }
    
    .thgpg_responsible__warning {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .thgpg_responsible__warning-icon i {
        font-size: 2.5rem;
    }
    
    .thgpg_responsible__section-header {
        padding: 1.2rem 1.5rem;
    }
    
    .thgpg_responsible__section-header h2 {
        font-size: 1.3rem;
    }
    
    .thgpg_responsible__section-content {
        padding: 1.5rem;
    }
    
    .thgpg_responsible__section-content p {
        font-size: 1rem;
    }
    
    .thgpg_responsible__resources {
        flex-direction: column;
    }
    
    .thgpg_responsible__resource {
        min-width: 100%;
    }
    
    .thgpg_responsible__pledge {
        padding: 2rem 1.5rem;
    }
    
    .thgpg_responsible__pledge h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .thgpg_responsible {
        padding: 1.5rem 0.8rem;
    }
    
    .thgpg_responsible h1 {
        font-size: 1.8rem;
        padding: 0 0.3rem;
    }
    
    .thgpg_responsible__subtitle {
        font-size: 0.9rem;
        padding: 0 0.3rem;
    }
    
    .thgpg_responsible__warning {
        padding: 1.2rem 0.2rem;
        margin-left: -0.3rem;
        margin-right: -0.3rem;
        border-radius: 0 8px 8px 0;
    }
    
    .thgpg_responsible__warning-content h3 {
        font-size: 1.3rem;
    }
    
    .thgpg_responsible__warning-content p {
        font-size: 0.9rem;
    }
    
    .thgpg_responsible__section {
        margin-left: -0.3rem;
        margin-right: -0.3rem;
        border-radius: 12px;
    }
    
    .thgpg_responsible__section-header {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .thgpg_responsible__section-header i {
        font-size: 1.8rem;
    }
    
    .thgpg_responsible__section-header h2 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .thgpg_responsible__section-content {
        padding: 1.2rem;
    }
    
    .thgpg_responsible__section-content p {
        font-size: 0.9rem;
    }
    
    .thgpg_responsible__resource {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .thgpg_responsible__resource i {
        font-size: 1.5rem;
        margin-top: 0;
    }
    
    .thgpg_responsible__resource h4 {
        font-size: 1rem;
    }
    
    .thgpg_responsible__resource p {
        font-size: 0.85rem;
    }
    
    .thgpg_responsible__resource a {
        font-size: 0.9rem;
    }
    
    .thgpg_responsible__pledge {
        padding: 1.5rem;
        margin-left: -0.3rem;
        margin-right: -0.3rem;
        border-radius: 12px;
    }
    
    .thgpg_responsible__pledge-icon {
        width: 60px;
        height: 60px;
    }
    
    .thgpg_responsible__pledge-icon i {
        font-size: 2rem;
    }
    
    .thgpg_responsible__pledge h3 {
        font-size: 1.3rem;
    }
    
    .thgpg_responsible__pledge p {
        font-size: 0.9rem;
    }
    
    .thgpg_responsible__pledge-signature p {
        font-size: 0.85rem;
    }
    
    .thgpg_responsible__footer-note {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .thgpg_responsible__footer-note p {
        font-size: 0.85rem;
    }
    
    .thgpg_responsible__decoration {
        gap: 1rem;
    }
    
    .thgpg_responsible__decoration i {
        font-size: 2.5rem;
    }
    
    .thgpg_responsible__decoration-line {
        max-width: 150px;
    }
}

.thgpg_cookies {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f3c 50%, #0a0e17 100%);
    padding: 3rem 2rem;
    position: relative;
    overflow-x: hidden;
}

.thgpg_cookies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(157, 78, 221, 0.3), transparent);
}

.thgpg_cookies__container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.thgpg_cookies__header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(157, 78, 221, 0.2);
    position: relative;
}

.thgpg_cookies h1 {
    color: #9d4edd;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #9d4edd, #00f3ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(157, 78, 221, 0.2);
}

.thgpg_cookies__subtitle {
    color: #f0f6ff;
    opacity: 0.7;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.thgpg_cookies__decoration {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.thgpg_cookies__decoration i {
    font-size: 3rem;
    color: #9d4edd;
    animation: cookiesIconSpin 4s infinite linear;
}

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

.thgpg_cookies__decoration-line {
    flex: 1;
    max-width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #9d4edd, transparent);
}

.thgpg_cookies__intro {
    background: rgba(157, 78, 221, 0.05);
    border-left: 4px solid #9d4edd;
    padding: 2rem;
    border-radius: 0 12px 12px 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.thgpg_cookies__intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(157, 78, 221, 0.02) 100%);
    z-index: -1;
}

.thgpg_cookies__intro p {
    color: #f0f6ff;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.thgpg_cookies__notice {
    background: rgba(0, 243, 255, 0.05);
    border-left: 4px solid #00f3ff;
    border-radius: 0 12px 12px 0;
    padding: 1.5rem;
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.thgpg_cookies__notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 243, 255, 0.02) 100%);
    z-index: -1;
}

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

.thgpg_cookies__notice-icon i {
    font-size: 2.5rem;
    color: #00f3ff;
}

.thgpg_cookies__notice-content {
    flex: 1;
    min-width: 260px;
}

.thgpg_cookies__notice-content h3 {
    color: #00f3ff;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.thgpg_cookies__notice-content p {
    color: #f0f6ff;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.thgpg_cookies__notice-content p:last-child {
    margin-bottom: 0;
}

.thgpg_cookies__content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.thgpg_cookies__section {
    background: rgba(10, 14, 23, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(157, 78, 221, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.thgpg_cookies__section:hover {
    border-color: rgba(157, 78, 221, 0.3);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.1);
    transform: translateY(-5px);
}

.thgpg_cookies__section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9d4edd, #00f3ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thgpg_cookies__section:hover::before {
    opacity: 1;
}

.thgpg_cookies__section-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(157, 78, 221, 0.05);
    border-bottom: 1px solid rgba(157, 78, 221, 0.1);
}

.thgpg_cookies__section-header i {
    font-size: 2rem;
    color: #9d4edd;
    min-width: 40px;
}

.thgpg_cookies__section-header h2 {
    color: #f0f6ff;
    font-size: 1.5rem;
    margin: 0;
    flex: 1;
}

.thgpg_cookies__section-content {
    padding: 2rem;
}

.thgpg_cookies__section-content p {
    color: #f0f6ff;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.thgpg_cookies__section-content p:last-child {
    margin-bottom: 0;
}

.thgpg_cookies__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.thgpg_cookies__category {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(157, 78, 221, 0.1);
    transition: all 0.3s ease;
}

.thgpg_cookies__category:hover {
    border-color: rgba(157, 78, 221, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(157, 78, 221, 0.1);
}

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

.thgpg_cookies__category-header i {
    font-size: 1.8rem;
    color: #9d4edd;
}

.thgpg_cookies__category-header h4 {
    color: #f0f6ff;
    font-size: 1.2rem;
    margin: 0;
    flex: 1;
}

.thgpg_cookies__required,
.thgpg_cookies__optional {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.thgpg_cookies__required {
    background: rgba(255, 87, 87, 0.1);
    color: #ff5757;
    border: 1px solid rgba(255, 87, 87, 0.3);
}

.thgpg_cookies__optional {
    background: rgba(255, 183, 77, 0.1);
    color: #ffb74d;
    border: 1px solid rgba(255, 183, 77, 0.3);
}

.thgpg_cookies__category p {
    color: #f0f6ff;
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.thgpg_cookies__examples {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid rgba(157, 78, 221, 0.3);
    padding: 0.8rem 1rem;
    border-radius: 0 4px 4px 0;
    font-size: 0.9rem;
    color: #f0f6ff;
    opacity: 0.7;
}

.thgpg_cookies__examples strong {
    color: #9d4edd;
    font-weight: 600;
}

.thgpg_cookies__storage-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.thgpg_cookies__storage-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(157, 78, 221, 0.1);
}

.thgpg_cookies__storage-list li i {
    color: #9d4edd;
    font-size: 1.2rem;
    min-width: 24px;
}

.thgpg_cookies__storage-list li strong {
    color: #f0f6ff;
    font-weight: 600;
    margin-right: 0.5rem;
}

.thgpg_cookies__management-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.thgpg_cookies__option {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.thgpg_cookies__option:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.thgpg_cookies__option i {
    font-size: 1.8rem;
    color: #00f3ff;
    margin-top: 0.2rem;
}

.thgpg_cookies__option div {
    flex: 1;
}

.thgpg_cookies__option h4 {
    color: #00f3ff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.thgpg_cookies__option p {
    color: #f0f6ff;
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.thgpg_cookies__browser-links {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(157, 78, 221, 0.1);
}

.thgpg_cookies__browser-links p {
    color: #f0f6ff;
    opacity: 0.9;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.thgpg_cookies__browser-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.thgpg_cookies__browser-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 8px;
    color: #9d4edd;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.thgpg_cookies__browser-btn:hover {
    background: rgba(157, 78, 221, 0.2);
    border-color: #9d4edd;
    transform: translateY(-2px);
}

.thgpg_cookies__third-parties {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.thgpg_cookies__third-party {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(157, 78, 221, 0.1);
}

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

.thgpg_cookies__third-party-header i {
    font-size: 2rem;
    color: #9d4edd;
}

.thgpg_cookies__third-party-header div {
    flex: 1;
}

.thgpg_cookies__third-party-header h4 {
    color: #f0f6ff;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.thgpg_cookies__third-party-type {
    color: #9d4edd;
    font-size: 0.8rem;
    opacity: 0.8;
}

.thgpg_cookies__third-party p {
    color: #f0f6ff;
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

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

.thgpg_cookies__contact-method {
    flex: 1;
    min-width: 250px;
    background: rgba(0, 243, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
}

.thgpg_cookies__contact-method i {
    font-size: 1.8rem;
    color: #00f3ff;
    margin-top: 0.2rem;
}

.thgpg_cookies__contact-method div {
    flex: 1;
}

.thgpg_cookies__contact-method h4 {
    color: #00f3ff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.thgpg_cookies__contact-method p {
    color: #f0f6ff;
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.thgpg_cookies__contact-method a {
    color: #00f3ff;
    text-decoration: none;
    font-weight: 500;
}

.thgpg_cookies__contact-method a:hover {
    text-decoration: underline;
}

.thgpg_cookies__footer {
    background: rgba(157, 78, 221, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(157, 78, 221, 0.1);
    position: relative;
    overflow: hidden;
}

.thgpg_cookies__footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(157, 78, 221, 0.03) 0%, transparent 70%);
    z-index: -1;
}

.thgpg_cookies__footer-icon {
    width: 60px;
    height: 60px;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 2px solid rgba(157, 78, 221, 0.3);
}

.thgpg_cookies__footer-icon i {
    font-size: 2rem;
    color: #9d4edd;
}

.thgpg_cookies__footer p {
    color: #f0f6ff;
    opacity: 0.9;
    line-height: 1.6;
    font-size: 1.05rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .thgpg_cookies {
        padding: 2rem 1.5rem;
    }
    
    .thgpg_cookies h1 {
        font-size: 2.2rem;
    }
    
    .thgpg_cookies__subtitle {
        font-size: 1rem;
    }
    
    .thgpg_cookies__notice {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
    }
    
    .thgpg_cookies__notice-icon i {
        font-size: 2rem;
    }
    
    .thgpg_cookies__section-header {
        padding: 1.2rem 1.5rem;
    }
    
    .thgpg_cookies__section-header h2 {
        font-size: 1.3rem;
    }
    
    .thgpg_cookies__section-content {
        padding: 1.5rem;
    }
    
    .thgpg_cookies__section-content p {
        font-size: 1rem;
    }
    
    .thgpg_cookies__categories,
    .thgpg_cookies__management-options,
    .thgpg_cookies__third-parties,
    .thgpg_cookies__contact {
        flex-direction: column;
    }
    
    .thgpg_cookies__category,
    .thgpg_cookies__option,
    .thgpg_cookies__third-party,
    .thgpg_cookies__contact-method {
        min-width: 100%;
    }
    
    .thgpg_cookies__footer {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .thgpg_cookies {
        padding: 1.5rem 0.3rem;
    }
    
    .thgpg_cookies h1 {
        font-size: 1.8rem;
        padding: 0 0.2rem;
    }
    
    .thgpg_cookies__subtitle {
        font-size: 0.9rem;
        padding: 0 0.2rem;
    }
    
    .thgpg_cookies__intro {
        padding: 1.5rem;
        margin-left: -0.3rem;
        margin-right: -0.3rem;
    }
    
    .thgpg_cookies__intro p {
        font-size: 0.95rem;
    }
    
    .thgpg_cookies__notice {
        padding: 1rem 0.1rem;
        margin-left: -0.3rem;
        margin-right: -0.3rem;
        border-radius: 0 8px 8px 0;
    }
    
    .thgpg_cookies__notice-content h3 {
        font-size: 1.1rem;
    }
    
    .thgpg_cookies__notice-content p {
        font-size: 0.85rem;
    }
    
    .thgpg_cookies__section {
        margin-left: -0.3rem;
        margin-right: -0.3rem;
        border-radius: 12px;
    }
    
    .thgpg_cookies__section-header {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .thgpg_cookies__section-header i {
        font-size: 1.8rem;
    }
    
    .thgpg_cookies__section-header h2 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .thgpg_cookies__section-content {
        padding: 1.2rem;
    }
    
    .thgpg_cookies__section-content p {
        font-size: 0.9rem;
    }
    
    .thgpg_cookies__category-header,
    .thgpg_cookies__option,
    .thgpg_cookies__third-party-header,
    .thgpg_cookies__contact-method {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .thgpg_cookies__category,
    .thgpg_cookies__option,
    .thgpg_cookies__third-party,
    .thgpg_cookies__contact-method {
        padding: 1rem;
    }
    
    .thgpg_cookies__category p,
    .thgpg_cookies__option p,
    .thgpg_cookies__third-party p,
    .thgpg_cookies__contact-method p {
        font-size: 0.85rem;
    }
    
    .thgpg_cookies__examples {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }
    
    .thgpg_cookies__storage-list li {
        padding: 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .thgpg_cookies__browser-buttons {
        justify-content: center;
    }
    
    .thgpg_cookies__browser-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .thgpg_cookies__footer {
        padding: 1.2rem;
        margin-left: -0.3rem;
        margin-right: -0.3rem;
        border-radius: 12px;
    }
    
    .thgpg_cookies__footer p {
        font-size: 0.9rem;
    }
    
    .thgpg_cookies__decoration {
        gap: 1rem;
    }
    
    .thgpg_cookies__decoration i {
        font-size: 2.5rem;
    }
    
    .thgpg_cookies__decoration-line {
        max-width: 150px;
    }
}

.thgpg_notfound {
    min-height: 100vh;
    background: linear-gradient(135deg, #05070f 0%, #0a0e17 30%, #1a1f3c 100%);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.thgpg_notfound::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 243, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(157, 78, 221, 0.05) 0%, transparent 50%);
    z-index: 0;
}

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

.thgpg_notfound__animation {
    height: 300px;
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thgpg_notfound__orbit {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px dashed rgba(0, 243, 255, 0.3);
    border-radius: 50%;
    animation: orbitRotate 20s linear infinite;
}

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

.thgpg_notfound__planet {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9d4edd, #7b2cbf);
    border-radius: 50%;
    top: -30px;
    left: calc(50% - 30px);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
}

.thgpg_notfound__moon {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #00f3ff, #0099cc);
    border-radius: 50%;
    top: 20px;
    left: calc(50% - 10px);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    animation: moonOrbit 5s linear infinite;
}

@keyframes moonOrbit {
    0% { transform: rotate(0deg) translateX(40px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(40px) rotate(-360deg); }
}

.thgpg_notfound__stars {
    position: absolute;
    width: 100%;
    height: 100%;
}

.thgpg_notfound__star {
    position: absolute;
    background: #f0f6ff;
    border-radius: 50%;
    animation: starTwinkle 3s infinite;
}

.thgpg_notfound__star:nth-child(1) {
    width: 3px;
    height: 3px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.thgpg_notfound__star:nth-child(2) {
    width: 2px;
    height: 2px;
    top: 40%;
    left: 70%;
    animation-delay: 0.5s;
}

.thgpg_notfound__star:nth-child(3) {
    width: 4px;
    height: 4px;
    top: 60%;
    left: 30%;
    animation-delay: 1s;
}

.thgpg_notfound__star:nth-child(4) {
    width: 2px;
    height: 2px;
    top: 80%;
    left: 60%;
    animation-delay: 1.5s;
}

.thgpg_notfound__star:nth-child(5) {
    width: 3px;
    height: 3px;
    top: 30%;
    left: 85%;
    animation-delay: 2s;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.thgpg_notfound__number {
    font-family: 'Sora', sans-serif;
    font-size: 8rem;
    font-weight: 700;
    color: transparent;
    background: linear-gradient(135deg, #00f3ff, #9d4edd, #ffb74d);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
    position: relative;
    animation: numberGlow 3s infinite alternate;
}

.thgpg_notfound__number span {
    color: transparent;
    background: linear-gradient(135deg, #ffb74d, #ff9800);
    -webkit-background-clip: text;
    background-clip: text;
    animation: zeroPulse 2s infinite;
}

@keyframes numberGlow {
    0% { filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.3)); }
    100% { filter: drop-shadow(0 0 30px rgba(157, 78, 221, 0.5)); }
}

@keyframes zeroPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.thgpg_notfound__content {
    text-align: center;
}

.thgpg_notfound h1 {
    color: #00f3ff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #00f3ff, #9d4edd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.thgpg_notfound__message {
    max-width: 800px;
    margin: 0 auto 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(0, 243, 255, 0.05);
    border-left: 4px solid #00f3ff;
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    text-align: left;
}

.thgpg_notfound__message i {
    font-size: 2rem;
    color: #00f3ff;
    margin-top: 0.2rem;
}

.thgpg_notfound__message p {
    color: #f0f6ff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    opacity: 0.9;
}

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

.thgpg_notfound__suggestion {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(157, 78, 221, 0.1);
    transition: all 0.3s ease;
    text-align: left;
}

.thgpg_notfound__suggestion:hover {
    border-color: rgba(157, 78, 221, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(157, 78, 221, 0.1);
}

.thgpg_notfound__suggestion i {
    font-size: 2.5rem;
    color: #9d4edd;
    margin-bottom: 1rem;
    display: block;
}

.thgpg_notfound__suggestion h3 {
    color: #f0f6ff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.thgpg_notfound__suggestion p {
    color: #f0f6ff;
    opacity: 0.8;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

.thgpg_notfound__actions {
    margin-bottom: 3rem;
}

.thgpg_notfound__home-btn {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #9d4edd, #7b2cbf);
    color: #f0f6ff;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    animation: homeBtnPulse 2s infinite;
}

@keyframes homeBtnPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 5px 15px rgba(157, 78, 221, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 10px 25px rgba(157, 78, 221, 0.5); }
}

.thgpg_notfound__home-btn:hover {
    background: linear-gradient(135deg, #9d4edd, #00f3ff);
    transform: translateY(-3px);
    animation: none;
}

.thgpg_notfound__home-btn i {
    font-size: 1.3rem;
}

.thgpg_notfound__contact {
    margin-top: 2rem;
}

.thgpg_notfound__contact p {
    color: #f0f6ff;
    opacity: 0.8;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.thgpg_notfound__contact-info {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    background: rgba(0, 243, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.thgpg_notfound__contact-info:hover {
    background: rgba(0, 243, 255, 0.15);
    transform: translateY(-2px);
}

.thgpg_notfound__contact-info i {
    color: #00f3ff;
    font-size: 1.2rem;
}

.thgpg_notfound__contact-info a {
    color: #00f3ff;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
}

.thgpg_notfound__contact-info a:hover {
    text-decoration: underline;
}

.thgpg_notfound__disclaimer {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 183, 77, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 183, 77, 0.1);
    text-align: left;
}

.thgpg_notfound__disclaimer i {
    font-size: 1.5rem;
    color: #ffb74d;
    margin-top: 0.2rem;
}

.thgpg_notfound__disclaimer p {
    color: #f0f6ff;
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    font-style: italic;
}

@media (max-width: 768px) {
    .thgpg_notfound {
        padding: 2rem 1.5rem;
    }
    
    .thgpg_notfound__animation {
        height: 250px;
    }
    
    .thgpg_notfound__number {
        font-size: 6rem;
    }
    
    .thgpg_notfound h1 {
        font-size: 2rem;
    }
    
    .thgpg_notfound__message {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
    }
    
    .thgpg_notfound__message i {
        font-size: 1.8rem;
        margin-top: 0;
    }
    
    .thgpg_notfound__message p {
        font-size: 1rem;
    }
    
    .thgpg_notfound__suggestions {
        flex-direction: column;
        align-items: center;
    }
    
    .thgpg_notfound__suggestion {
        max-width: 100%;
        text-align: center;
    }
    
    .thgpg_notfound__home-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .thgpg_notfound {
        padding: 1.5rem 0.8rem;
    }
    
    .thgpg_notfound__animation {
        height: 200px;
    }
    
    .thgpg_notfound__orbit {
        width: 150px;
        height: 150px;
    }
    
    .thgpg_notfound__planet {
        width: 50px;
        height: 50px;
        top: -25px;
        left: calc(50% - 25px);
    }
    
    .thgpg_notfound__moon {
        width: 15px;
        height: 15px;
        top: 15px;
        left: calc(50% - 7.5px);
    }
    
    .thgpg_notfound__number {
        font-size: 4.5rem;
    }
    
    .thgpg_notfound h1 {
        font-size: 1.5rem;
        padding: 0 0.3rem;
    }
    
    .thgpg_notfound__message {
        padding: 1rem;
        margin-left: -0.3rem;
        margin-right: -0.3rem;
        border-radius: 0 8px 8px 0;
    }
    
    .thgpg_notfound__message p {
        font-size: 0.9rem;
    }
    
    .thgpg_notfound__suggestion {
        padding: 1.5rem;
        margin-left: -0.3rem;
        margin-right: -0.3rem;
        border-radius: 12px;
    }
    
    .thgpg_notfound__suggestion i {
        font-size: 2rem;
    }
    
    .thgpg_notfound__suggestion h3 {
        font-size: 1.1rem;
    }
    
    .thgpg_notfound__suggestion p {
        font-size: 0.85rem;
    }
    
    .thgpg_notfound__home-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .thgpg_notfound__contact p {
        font-size: 0.85rem;
        padding: 0 0.3rem;
    }
    
    .thgpg_notfound__contact-info {
        padding: 0.8rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .thgpg_notfound__contact-info a {
        font-size: 0.8rem;
    }
    
    .thgpg_notfound__disclaimer {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .thgpg_notfound__disclaimer p {
        font-size: 0.8rem;
    }
    
    .thgpg_notfound__stars {
        display: none;
    }
}