:root {
    --cosmic-primary: #0a0e17;
    --nebula-secondary: #1a1f2e;
    --stellar-accent: #00d4ff;
    --galaxy-highlight: #7b2cbf;
    --comet-warning: #ff6b35;
    --orbit-light: #e0e0ff;
    --void-dark: #050811;
    --space-text: #b8c1ec;
    --pulsar-gradient: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
    --supernova-gradient: linear-gradient(135deg, #ff6b35 0%, #ffd166 100%);
    --blackhole-gradient: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
}

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

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--cosmic-primary);
    color: var(--space-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.hq-site-header {
    background: var(--blackhole-gradient);
    border-bottom: 2px solid var(--galaxy-highlight);
    position: relative;
    z-index: 1000;
}

.hq-header-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hq-logo-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.hq-logo-link img {
    width: 100%;
    max-width: 200px;
    height: 100%;
    max-height: 60px;
    transition: transform 0.3s ease;
}

.hq-logo-link:hover img {
    transform: scale(1.05);
}

.hq-platform-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--pulsar-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hq-nav-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.hq-primary-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.nav-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    color: var(--orbit-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--pulsar-gradient);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: var(--cosmic-primary);
    transform: translateY(-2px);
}

.hq-ticket-button {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    background: var(--supernova-gradient);
    color: var(--cosmic-primary);
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hq-ticket-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hq-ticket-button:hover::after {
    width: 300px;
    height: 300px;
}

.hq-ticket-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.hq-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--stellar-accent);
    font-size: 2.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.hq-mobile-nav {
    display: none;
    background: var(--nebula-secondary);
    padding: 1.5rem;
    border-top: 1px solid var(--galaxy-highlight);
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    color: var(--orbit-light);
    text-decoration: none;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(26, 31, 46, 0.8);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: var(--pulsar-gradient);
    color: var(--cosmic-primary);
    transform: translateX(10px);
}

.mobile-ticket-btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--supernova-gradient);
    color: var(--cosmic-primary);
    border: none;
    padding: 1rem;
    border-radius: 25px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.mobile-ticket-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

@media (max-width: 1024px) {
    .hq-header-wrapper {
        padding: 1.2rem;
    }
    
    .hq-primary-nav {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .hq-nav-section {
        gap: 1rem;
    }
    
    .hq-primary-nav {
        display: none;
    }
    
    .hq-ticket-button {
        display: none;
    }
    
    .hq-menu-toggle {
        display: block;
    }
    
    .hq-mobile-nav.active {
        display: block;
    }
    
    .hq-header-wrapper {
        justify-content: center;
        text-align: center;
    }
    
    .hq-logo-section {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hq-platform-name {
        order: -1;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hq-header-wrapper {
        padding: 0.8rem;
    }
    
    .hq-logo-link img {
        max-width: 150px;
        max-height: 45px;
    }
    
    .hq-platform-name {
        font-size: 1.3rem;
    }
    
    .hq-menu-toggle {
        font-size: 1.8rem;
    }
    
    .mobile-nav-link {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .hq-header-wrapper {
        padding: 0.5rem;
    }
    
    .hq-logo-link img {
        max-width: 120px;
        max-height: 35px;
    }
    
    .hq-platform-name {
        font-size: 1.1rem;
    }
}

.hq-content-container {
    margin: 0 auto;
}

.hq-welcome-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    overflow: hidden;
}

.hq-welcome-background {
    position: absolute;
    inset: 0; 
    background-image: url("/hq-engine/hq-image/welcome-visual.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    filter: brightness(0.3) contrast(1.2);
    z-index: -1;
}

.hq-welcome-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
    animation: floatIn 1s ease-out;
}

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

.hq-welcome-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    background: var(--pulsar-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hq-welcome-subtitle {
    font-size: 1.5rem;
    color: var(--orbit-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hq-welcome-description {
    font-size: 1.2rem;
    color: var(--space-text);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hq-welcome-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.hq-about-btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    background: var(--galaxy-highlight);
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hq-about-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.hq-about-btn:hover::before {
    left: 100%;
}

.hq-about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(123, 44, 191, 0.4);
}

.hq-obtain-btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    background: var(--supernova-gradient);
    color: var(--cosmic-primary);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hq-obtain-btn:hover {
    transform: translateY(-3px) rotate(2deg);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

@media (max-width: 1024px) {
    .hq-welcome-content h1 {
        font-size: 2.8rem;
    }
    
    .hq-welcome-subtitle {
        font-size: 1.3rem;
    }
    
    .hq-welcome-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hq-welcome-section {
        min-height: 70vh;
        padding: 3rem 1.5rem;
    }
    
    .hq-welcome-content h1 {
        font-size: 2.3rem;
    }
    
    .hq-welcome-subtitle {
        font-size: 1.1rem;
    }
    
    .hq-welcome-actions {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hq-about-btn,
    .hq-obtain-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hq-welcome-section {
        padding: 2rem 1rem;
        min-height: 60vh;
    }
    
    .hq-welcome-content h1 {
        font-size: 1.8rem;
    }
    
    .hq-welcome-subtitle {
        font-size: 1rem;
    }
    
    .hq-welcome-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .hq-welcome-actions {
        gap: 1rem;
    }
}

@media (max-width: 320px) {
    .hq-welcome-content h1 {
        font-size: 1.5rem;
    }
    
    .hq-welcome-subtitle {
        font-size: 0.9rem;
    }
}

.hq-lottery-selection {
    padding: 6rem 2rem;
    background: var(--void-dark);
    position: relative;
}

.hq-lottery-selection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--pulsar-gradient);
}

.hq-selection-header {
    text-align: center;
    margin-bottom: 4rem;
}

.hq-selection-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    color: var(--orbit-light);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.hq-selection-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--pulsar-gradient);
    border-radius: 2px;
}

.hq-selection-header p {
    color: var(--space-text);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.hq-lottery-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.hq-lottery-card {
    background: var(--nebula-secondary);
    border-radius: 20px;
    padding: 2.5rem;
    flex: 1;
    min-width: 250px;
    max-width: 380px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hq-lottery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--pulsar-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.hq-lottery-card:hover::before {
    transform: scaleX(1);
}

.hq-lottery-card:hover {
    border-color: var(--stellar-accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.card-icon {
    font-size: 3rem;
    color: var(--stellar-accent);
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: pulse 2s infinite;
}

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

.hq-lottery-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: var(--orbit-light);
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.hq-lottery-card img {
    width: 100%;
    max-width: 100px;
    height: 100%;
    max-height: 60px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.hq-lottery-card p {
    color: var(--space-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.card-details {
    background: rgba(10, 14, 23, 0.6);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.card-details p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.card-details i {
    color: var(--stellar-accent);
    font-size: 1.2rem;
}

.card-select-btn {
    width: 100%;
    padding: 1rem;
    background: var(--pulsar-gradient);
    color: white;
    border: none;
    border-radius: 25px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-select-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.card-select-btn:hover::after {
    width: 300px;
    height: 300px;
}

.card-select-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

@media (max-width: 1024px) {
    .hq-lottery-selection {
        padding: 4rem 1.5rem;
    }
    
    .hq-selection-header h2 {
        font-size: 2.3rem;
    }
    
    .hq-lottery-cards {
        gap: 2rem;
    }
    
    .hq-lottery-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hq-selection-header h2 {
        font-size: 2rem;
    }
    
    .hq-selection-header p {
        font-size: 1.1rem;
    }
    
    .hq-lottery-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .hq-lottery-card {
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .hq-lottery-selection {
        padding: 3rem 1rem;
    }
    
    .hq-selection-header h2 {
        font-size: 1.7rem;
    }
    
    .hq-selection-header p {
        font-size: 1rem;
    }
    
    .hq-lottery-card {
        padding: 1.5rem;
        min-width: 100%;
    }
    
    .hq-lottery-card h3 {
        font-size: 1.7rem;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
}

.hq-process-section {
    padding: 6rem 2rem;
    background: var(--cosmic-primary);
}

.hq-process-header {
    text-align: center;
    margin-bottom: 5rem;
}

.hq-process-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    color: var(--orbit-light);
    margin-bottom: 1rem;
}

.hq-process-header p {
    color: var(--space-text);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.hq-process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
    counter-reset: step-counter;
}

.hq-process-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--nebula-secondary);
    border-radius: 20px;
    position: relative;
    transition: all 0.4s ease;
}

.hq-process-step::before {
    counter-increment: step-counter;
    content: counter(step-counter, decimal-leading-zero);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--pulsar-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    z-index: 1;
}

.hq-process-step:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.15);
}

.hq-process-step:hover .step-icon {
    transform: rotate(15deg) scale(1.1);
}

.step-icon {
    font-size: 3.5rem;
    color: var(--stellar-accent);
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
    display: inline-block;
}

.hq-process-step h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    color: var(--orbit-light);
    margin-bottom: 1rem;
    min-height: 60px;
}

.hq-process-step p {
    color: var(--space-text);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hq-process-section {
        padding: 4rem 1.5rem;
    }
    
    .hq-process-header h2 {
        font-size: 2.3rem;
    }
    
    .hq-process-steps {
        gap: 2rem;
    }
    
    .hq-process-step {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .hq-process-header h2 {
        font-size: 2rem;
    }
    
    .hq-process-header p {
        font-size: 1.1rem;
    }
    
    .hq-process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .hq-process-step {
        max-width: 400px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hq-process-section {
        padding: 3rem 1rem;
    }
    
    .hq-process-header h2 {
        font-size: 1.7rem;
    }
    
    .hq-process-header p {
        font-size: 1rem;
    }
    
    .hq-process-step {
        padding: 1.8rem 1.2rem;
    }
    
    .step-icon {
        font-size: 3rem;
    }
    
    .hq-process-step h3 {
        font-size: 1.5rem;
        min-height: 50px;
    }
}

.hq-advantages-section {
    padding: 6rem 2rem;
    background: var(--void-dark);
}

.hq-advantages-header {
    text-align: center;
    margin-bottom: 5rem;
}

.hq-advantages-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    color: var(--orbit-light);
    margin-bottom: 1rem;
}

.hq-advantages-header p {
    color: var(--space-text);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.hq-advantages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.hq-advantage-card {
    flex: 1;
    min-width: 280px;
    max-width: 300px;
    padding: 3rem 2rem;
    background: var(--nebula-secondary);
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hq-advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--pulsar-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.hq-advantage-card:hover::before {
    opacity: 0.1;
}

.hq-advantage-card:hover {
    border-color: var(--galaxy-highlight);
    transform: translateY(-10px) rotate(2deg);
}

.advantage-icon {
    font-size: 3rem;
    color: var(--galaxy-highlight);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.hq-advantage-card:hover .advantage-icon {
    transform: scale(1.2) rotate(-10deg);
}

.hq-advantage-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    color: var(--orbit-light);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    min-height: 60px;
}

.hq-advantage-card p {
    color: var(--space-text);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .hq-advantages-section {
        padding: 4rem 1.5rem;
    }
    
    .hq-advantages-header h2 {
        font-size: 2.3rem;
    }
    
    .hq-advantages-grid {
        gap: 2rem;
    }
    
    .hq-advantage-card {
        padding: 2.5rem 1.8rem;
    }
}

@media (max-width: 768px) {
    .hq-advantages-header h2 {
        font-size: 2rem;
    }
    
    .hq-advantages-header p {
        font-size: 1.1rem;
    }
    
    .hq-advantages-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .hq-advantage-card {
        max-width: 400px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hq-advantages-section {
        padding: 3rem 1rem;
    }
    
    .hq-advantages-header h2 {
        font-size: 1.7rem;
    }
    
    .hq-advantages-header p {
        font-size: 1rem;
    }
    
    .hq-advantage-card {
        padding: 2rem 1.5rem;
        min-width: 100%;
    }
    
    .hq-advantage-card h3 {
        font-size: 1.5rem;
        min-height: 50px;
    }
    
    .advantage-icon {
        font-size: 2.5rem;
    }
}

.hq-results-section {
    padding: 6rem 2rem;
    background: var(--cosmic-primary);
}

.hq-results-header {
    text-align: center;
    margin-bottom: 5rem;
}

.hq-results-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    color: var(--orbit-light);
    margin-bottom: 1rem;
}

.hq-results-header p {
    color: var(--space-text);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.hq-results-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.hq-result-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    padding: 2.5rem;
    background: var(--nebula-secondary);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hq-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--supernova-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.hq-result-card:hover::before {
    transform: scaleX(1);
}

.hq-result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
}

.hq-result-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: var(--orbit-light);
    margin-bottom: 0.5rem;
}

.result-date {
    color: var(--stellar-accent);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.winning-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.winning-numbers span {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pulsar-gradient);
    color: white;
    border-radius: 50%;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    animation: numberGlow 2s infinite alternate;
}

@keyframes numberGlow {
    from {
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
    }
}

.winning-numbers .bonus {
    background: var(--supernova-gradient);
    animation: bonusGlow 2s infinite alternate;
}

@keyframes bonusGlow {
    from {
        box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
    }
}

.result-note {
    color: var(--space-text);
    font-style: italic;
    font-size: 0.95rem;
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .hq-results-section {
        padding: 4rem 1.5rem;
    }
    
    .hq-results-header h2 {
        font-size: 2.3rem;
    }
    
    .hq-results-cards {
        gap: 2rem;
    }
    
    .hq-result-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hq-results-header h2 {
        font-size: 2rem;
    }
    
    .hq-results-header p {
        font-size: 1.1rem;
    }
    
    .hq-results-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .hq-result-card {
        max-width: 400px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hq-results-section {
        padding: 3rem 1rem;
    }
    
    .hq-results-header h2 {
        font-size: 1.7rem;
    }
    
    .hq-results-header p {
        font-size: 1rem;
    }
    
    .hq-result-card {
        padding: 1.8rem;
        min-width: 100%;
    }
    
    .hq-result-card h3 {
        font-size: 1.7rem;
    }
    
    .winning-numbers span {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

.hq-responsible-section {
    padding: 6rem 2rem;
    background: var(--void-dark);
    text-align: center;
}

.hq-responsible-header {
    margin-bottom: 4rem;
}

.hq-responsible-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    color: var(--orbit-light);
    margin-bottom: 1.5rem;
}

.hq-responsible-header p {
    color: var(--space-text);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hq-responsible-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--nebula-secondary);
    padding: 4rem;
    border-radius: 25px;
    border: 2px solid var(--comet-warning);
    position: relative;
}

.responsible-icon {
    font-size: 4rem;
    color: var(--comet-warning);
    margin-bottom: 2rem;
    animation: warningPulse 2s infinite;
}

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

.hq-responsible-content p {
    color: var(--space-text);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.responsible-points {
    text-align: left;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.responsible-points p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(10, 14, 23, 0.4);
    border-radius: 12px;
    border-left: 4px solid var(--comet-warning);
}

.responsible-points i {
    color: var(--comet-warning);
    font-size: 1.5rem;
}

.responsible-legal {
    font-size: 0.95rem;
    color: var(--stellar-accent);
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    padding-top: 2rem;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .hq-responsible-section {
        padding: 4rem 1.5rem;
    }
    
    .hq-responsible-header h2 {
        font-size: 2.3rem;
    }
    
    .hq-responsible-content {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .hq-responsible-header h2 {
        font-size: 2rem;
    }
    
    .hq-responsible-header p {
        font-size: 1.1rem;
    }
    
    .hq-responsible-content {
        padding: 2.5rem 2rem;
    }
    
    .responsible-icon {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .hq-responsible-section {
        padding: 3rem 1rem;
    }
    
    .hq-responsible-header h2 {
        font-size: 1.7rem;
    }
    
    .hq-responsible-header p {
        font-size: 1rem;
    }
    
    .hq-responsible-content {
        padding: 1.8rem 1.5rem;
    }
    
    .responsible-icon {
        font-size: 3rem;
    }
    
    .hq-responsible-content p {
        font-size: 1rem;
    }
    
    .responsible-points p {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
}

.hq-site-footer {
    background: var(--cosmic-primary);
    border-top: 3px solid var(--galaxy-highlight);
    padding: 4rem 2rem 2rem;
}

.hq-footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hq-footer-block {
    flex: 1;
    min-width: 250px;
}

.footer-icon {
    font-size: 2.5rem;
    color: var(--stellar-accent);
    margin-bottom: 1.5rem;
}

.responsible-message {
    color: var(--orbit-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.responsible-message a {
    color: var(--stellar-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.responsible-message a:hover {
    color: var(--galaxy-highlight);
}

.legal-disclaimer,
.management-info,
.age-warning {
    color: var(--space-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.age-warning {
    color: var(--comet-warning);
    font-weight: 600;
}

.age-indicator {
    text-align: center;
    margin-bottom: 2.5rem;
}

.age-badge {
    display: inline-block;
    background: var(--comet-warning);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 80px;
    margin-bottom: 1rem;
    border: 4px solid rgba(255, 107, 53, 0.3);
    animation: agePulse 3s infinite;
}

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

.age-indicator p {
    color: var(--orbit-light);
    font-weight: 600;
}

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

.partner-links a {
    display: inline-block;
    background: var(--stellar-accent);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.partner-links a:hover {
    transform: translateY(-5px);
}

.partner-links img {
    width: 100%;
    max-width: 120px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.partner-links a:hover img {
    filter: brightness(1);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--space-text);
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(26, 31, 46, 0.6);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background: var(--pulsar-gradient);
    color: white;
    transform: translateX(5px);
}

.contact-info a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    color: var(--orbit-light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--stellar-accent);
}

.contact-info i {
    font-size: 1.5rem;
}

.copyright-section {
    text-align: center;
    margin-bottom: 2rem;
}

.copyright-section p {
    color: var(--space-text);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-logo img {
    width: 100%;
    max-width: 50px;
    height: 100%;
    max-height: 50px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo:hover img {
    opacity: 1;
}

@media (max-width: 1024px) {
    .hq-site-footer {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .hq-footer-container {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hq-footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hq-footer-block {
        width: 100%;
        max-width: 500px;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .contact-info a {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hq-site-footer {
        padding: 2rem 1rem 1rem;
    }
    
    .responsible-message {
        font-size: 1rem;
    }
    
    .legal-disclaimer,
    .management-info,
    .age-warning {
        font-size: 0.85rem;
    }
    
    .age-badge {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 2rem;
    }
    
    .partner-links {
        gap: 1rem;
    }
    
    .partner-links img {
        max-width: 100px;
        height: 35px;
    }
    
    .footer-links a {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 8, 17, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    overflow-y: auto;
}

.age-confirmation-dialog {
    background: var(--nebula-secondary);
    padding: 4rem;
    border-radius: 25px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    border: 3px solid var(--comet-warning);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
    animation: dialogEnter 0.6s ease-out;
}

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

.age-confirmation-dialog i {
    font-size: 5rem;
    color: var(--comet-warning);
    margin-bottom: 1.5rem;
    animation: warningSpin 10s linear infinite;
}

@keyframes warningSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.age-confirmation-dialog h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--orbit-light);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.age-confirmation-dialog p {
    color: var(--space-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.age-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin: 2.5rem 0;
}

.age-confirm-btn,
.age-exit-btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.age-confirm-btn {
    background: var(--pulsar-gradient);
    color: white;
}

.age-confirm-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.3);
}

.age-exit-btn {
    background: transparent;
    color: var(--comet-warning);
    border: 2px solid var(--comet-warning);
}

.age-exit-btn:hover {
    background: var(--comet-warning);
    color: white;
    transform: translateY(-5px);
}

.age-legal {
    font-size: 0.9rem;
    color: var(--stellar-accent);
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

@media (max-width: 768px) {
    .age-confirmation-dialog {
        padding: 3rem 2rem;
    }
    
    .age-confirmation-dialog h2 {
        font-size: 2rem;
    }
    
    .age-confirmation-dialog i {
        font-size: 4rem;
    }
    
    .age-buttons-container {
        flex-direction: column;
    }
    
    .age-confirm-btn,
    .age-exit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .age-confirmation-dialog {
        padding: 2.5rem 1.5rem;
    }
    
    .age-confirmation-dialog h2 {
        font-size: 1.7rem;
    }
    
    .age-confirmation-dialog p {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .age-verification-overlay {
        align-items: flex-start;
    }
}

.cookie-notification-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    background: var(--nebula-secondary);
    border-top: 3px solid var(--galaxy-highlight);
    padding: 2rem;
    z-index: 9995;
    transform: translateY(100%);
    animation: slideUp 0.5s ease-out 1s forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

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

.cookie-content-section {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.5rem;
    flex: 1;
}

.cookie-content-section i {
    font-size: 2.5rem;
    color: var(--galaxy-highlight);
    margin-top: 0.5rem;
}

.cookie-text-block {
    flex: 1;
    min-width: 300px;
}

.cookie-text-block p {
    color: var(--space-text);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-text-block a {
    color: var(--stellar-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-text-block a:hover {
    color: var(--galaxy-highlight);
}

.cookie-actions-section {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-accept-btn,
.cookie-customize-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.cookie-accept-btn {
    background: var(--pulsar-gradient);
    color: white;
}

.cookie-accept-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.cookie-customize-btn {
    background: transparent;
    color: var(--orbit-light);
    border: 2px solid var(--orbit-light);
}

.cookie-customize-btn:hover {
    background: var(--orbit-light);
    color: var(--cosmic-primary);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .cookie-consent-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content-section {
        justify-content: center;
        text-align: left;
    }
    
    .cookie-actions-section {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cookie-notification-bar {
        padding: 1.5rem;
    }
    
    .cookie-content-section i {
        font-size: 2rem;
    }
    
    .cookie-text-block {
        min-width: 100%;
    }
    
    .cookie-accept-btn,
    .cookie-customize-btn {
        min-width: 120px;
        padding: 0.7rem 1.5rem;
    }
}

.ticket-purchase-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 8, 17, 0.98);
    z-index: 9997;
    display: none;
    backdrop-filter: blur(8px);
    overflow-y: auto;
}

.ticket-modal-window {
    position: relative;
    max-width: 1200px;
    margin: 2rem auto;
    background: var(--nebula-secondary);
    border-radius: 30px;
    padding: 3rem;
    animation: modalAppear 0.5s ease-out;
    border: 2px solid var(--stellar-accent);
}

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

.ticket-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--comet-warning);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticket-close-btn:hover {
    transform: rotate(90deg) scale(1.1);
    background: var(--pulsar-gradient);
}

.ticket-header-section {
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 3rem;
}

.ticket-header-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--orbit-light);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.ticket-header-section p {
    color: var(--space-text);
    font-size: 1.2rem;
}

.lottery-tabs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.lottery-tab {
    padding: 1rem 2.5rem;
    background: rgba(10, 14, 23, 0.6);
    border: 2px solid var(--galaxy-highlight);
    color: var(--orbit-light);
    border-radius: 25px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.lottery-tab.active {
    background: var(--pulsar-gradient);
    color: white;
    border-color: var(--stellar-accent);
    transform: translateY(-5px);
}

.lottery-tab:hover:not(.active) {
    background: rgba(123, 44, 191, 0.2);
    transform: translateY(-3px);
}

.ticket-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.number-selection-section,
.buyer-info-section,
.order-summary-section {
    flex: 1;
    min-width: 300px;
    background: rgba(10, 14, 23, 0.4);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.number-selection-section h3,
.buyer-info-section h3,
.order-summary-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--orbit-light);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.number-selection-section p,
.buyer-info-section p,
.order-summary-section p {
    color: var(--space-text);
    margin-bottom: 1.5rem;
}

.number-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.number-grid span {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 31, 46, 0.8);
    color: var(--orbit-light);
    border-radius: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.number-grid span:hover {
    background: var(--galaxy-highlight);
    transform: scale(1.1);
}

.number-grid span.selected {
    background: var(--pulsar-gradient);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.number-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.control-btn {
    padding: 0.8rem 1.8rem;
    background: var(--nebula-secondary);
    border: 2px solid var(--orbit-light);
    color: var(--orbit-light);
    border-radius: 20px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: var(--orbit-light);
    color: var(--cosmic-primary);
    transform: translateY(-3px);
}

.control-btn.confirm-btn {
    background: var(--pulsar-gradient);
    color: white;
    border-color: var(--stellar-accent);
}

.control-btn.confirm-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.control-btn.confirm-btn:not(:disabled):hover {
    background: var(--stellar-accent);
    transform: translateY(-3px) scale(1.05);
}

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

.form-group {
    position: relative;
    margin-top: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1.2rem 1rem 0.8rem;
    background: rgba(10, 14, 23, 0.6);
    border: 2px solid var(--orbit-light);
    border-radius: 15px;
    color: var(--orbit-light);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--stellar-accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.form-group label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: var(--space-text);
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--nebula-secondary);
    padding: 0 0.5rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label {
    top: 0;
    font-size: 0.85rem;
    color: var(--stellar-accent);
    transform: translateY(-50%);
}

.info-confirm-btn {
    padding: 1rem;
    background: var(--galaxy-highlight);
    color: white;
    border: none;
    border-radius: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.info-confirm-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.info-confirm-btn:not(:disabled):hover {
    background: var(--pulsar-gradient);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(123, 44, 191, 0.3);
}

.summary-content {
    margin-bottom: 2rem;
}

.ticket-summary,
.buyer-summary {
    background: rgba(10, 14, 23, 0.6);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    min-height: 120px;
    border: 1px dashed var(--galaxy-highlight);
}

.order-total {
    text-align: center;
    padding: 1rem;
    background: var(--pulsar-gradient);
    color: white;
    border-radius: 15px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
}

.purchase-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--supernova-gradient);
    color: var(--cosmic-primary);
    border: none;
    border-radius: 25px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.purchase-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.purchase-btn:not(:disabled):hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

@media (max-width: 1024px) {
    .ticket-modal-window {
        margin: 1rem;
        padding: 2.5rem;
    }
    
    .ticket-content-wrapper {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .ticket-modal-window {
        padding: 2rem;
        margin: 0.5rem;
    }
    
    .ticket-header-section h2 {
        font-size: 2.2rem;
    }
    
    .lottery-tabs-container {
        flex-direction: column;
        align-items: center;
    }
    
    .lottery-tab {
        width: 100%;
        max-width: 250px;
    }
    
    .ticket-content-wrapper {
        flex-direction: column;
    }
    
    .number-selection-section,
    .buyer-info-section,
    .order-summary-section {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .ticket-modal-window {
        padding: 1.5rem;
    }
    
    .ticket-header-section h2 {
        font-size: 1.8rem;
    }
    
    .ticket-header-section p {
        font-size: 1rem;
    }
    
    .number-selection-section,
    .buyer-info-section,
    .order-summary-section {
        padding: 1.8rem;
    }
    
    .number-grid span {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 1rem 0.8rem 0.6rem;
    }
}

.purchase-confirmation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 8, 17, 0.95);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.confirmation-modal-window {
    background: var(--nebula-secondary);
    padding: 4rem;
    border-radius: 25px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 3px solid var(--galaxy-highlight);
    box-shadow: 0 20px 60px rgba(123, 44, 191, 0.3);
    animation: confirmAppear 0.4s ease-out;
}

@keyframes confirmAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.confirmation-modal-window i {
    font-size: 4rem;
    color: var(--galaxy-highlight);
    margin-bottom: 1.5rem;
    animation: successPulse 2s infinite;
}

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

.confirmation-modal-window h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--orbit-light);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.confirmation-modal-window p {
    color: var(--space-text);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

#confirmationEmail {
    color: var(--stellar-accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.confirmation-close-btn {
    padding: 1rem 3rem;
    background: var(--pulsar-gradient);
    color: white;
    border: none;
    border-radius: 25px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.confirmation-close-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.3);
}

@media (max-width: 480px) {
    .confirmation-modal-window {
        padding: 2.5rem 1.5rem;
    }
    
    .confirmation-modal-window h2 {
        font-size: 1.8rem;
    }
    
    .confirmation-modal-window i {
        font-size: 3.5rem;
    }
}

@media (max-width: 320px) {
    .purchase-confirmation-overlay {
        align-items: flex-start;
    }
}

.hqpage-registration-container {
    margin: 0 auto;
}

.hqpage-registration-intro {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    overflow: hidden;
    background: var(--void-dark);
}

.hqpage-registration-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hqpage-animation-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--stellar-accent) 0%, transparent 70%);
    opacity: 0.1;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-name: floatCircle1;
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-name: floatCircle2;
}

.circle-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-name: floatCircle3;
}

.circle-4 {
    width: 250px;
    height: 250px;
    top: 20%;
    right: 20%;
    animation-name: floatCircle4;
}

@keyframes floatCircle1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, 30px) rotate(90deg); }
    50% { transform: translate(30px, 60px) rotate(180deg); }
    75% { transform: translate(-20px, 40px) rotate(270deg); }
}

@keyframes floatCircle2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-40px, 20px) rotate(-90deg); }
    50% { transform: translate(-20px, -30px) rotate(-180deg); }
    75% { transform: translate(30px, -10px) rotate(-270deg); }
}

@keyframes floatCircle3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(25px, -15px) scale(1.2); }
}

@keyframes floatCircle4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-30px, 20px) rotate(120deg); }
    66% { transform: translate(20px, -30px) rotate(240deg); }
}

.hqpage-registration-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
    position: relative;
}

.hqpage-registration-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.2rem;
    background: var(--pulsar-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hqpage-registration-subtitle {
    font-size: 1.4rem;
    color: var(--orbit-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hqpage-registration-description {
    font-size: 1.1rem;
    color: var(--space-text);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hqpage-registration-icon {
    font-size: 4rem;
    color: var(--galaxy-highlight);
    animation: iconPulse 3s infinite;
}

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

.hqpage-registration-form-section {
    padding: 6rem 2rem;
    background: var(--cosmic-primary);
}

.hqpage-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--nebula-secondary);
    border-radius: 25px;
    padding: 4rem;
    border: 2px solid var(--galaxy-highlight);
    position: relative;
    overflow: hidden;
}

.hqpage-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--pulsar-gradient);
}

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

.hqpage-form-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    color: var(--orbit-light);
    margin-bottom: 1rem;
}

.hqpage-form-header p {
    color: var(--space-text);
    font-size: 1.1rem;
}

.hqpage-registration-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hqpage-form-group {
    position: relative;
}

.hqpage-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.hqpage-input-wrapper i {
    position: absolute;
    left: 1.2rem;
    color: var(--space-text);
    font-size: 1.2rem;
    z-index: 1;
    transition: color 0.3s ease;
}

.hqpage-input-wrapper input {
    width: 100%;
    padding: 1.2rem 1rem 1.2rem 3.5rem;
    background: rgba(10, 14, 23, 0.6);
    border: 2px solid var(--orbit-light);
    border-radius: 15px;
    color: var(--orbit-light);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    min-height: 44px;
}

.hqpage-input-wrapper input:focus {
    outline: none;
    border-color: var(--stellar-accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.hqpage-input-wrapper input:focus + label,
.hqpage-input-wrapper input:not(:placeholder-shown) + label {
    top: -25px;
    font-size: 0.9rem;
    color: var(--stellar-accent);
}

.hqpage-input-wrapper label {
    position: absolute;
    top: 50%;
    left: 3.5rem;
    transform: translateY(-50%);
    color: var(--space-text);
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--nebula-secondary);
    padding: 0 0.5rem;
    margin-left: -0.5rem;
}

.hqpage-password-toggle {
    position: absolute;
    right: 1.2rem;
    background: none;
    border: none;
    color: var(--space-text);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hqpage-password-toggle:hover {
    color: var(--stellar-accent);
}

.hqpage-validation-hint {
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 0.85rem;
    color: var(--comet-warning);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hqpage-input-wrapper input:focus ~ .hqpage-validation-hint {
    opacity: 1;
}

.hqpage-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(10, 14, 23, 0.4);
    border-radius: 12px;
    border: 2px solid var(--orbit-light);
    transition: all 0.3s ease;
    min-height: 44px;
}

.hqpage-checkbox-wrapper:focus-within {
    border-color: var(--stellar-accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.hqpage-checkbox-wrapper input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin-top: 0.2rem;
    accent-color: var(--stellar-accent);
}

.hqpage-checkbox-wrapper label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--space-text);
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
    pointer-events: auto;
}

.hqpage-checkbox-wrapper label i {
    color: var(--stellar-accent);
    font-size: 1.5rem;
    margin-top: 0.1rem;
}

.hqpage-checkbox-wrapper a {
    color: var(--stellar-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hqpage-checkbox-wrapper a:hover {
    color: var(--galaxy-highlight);
}

.hqpage-checkbox-wrapper:focus-within .hqpage-validation-hint {
    opacity: 1;
}

.hqpage-submit-btn {
    padding: 1.2rem;
    background: var(--pulsar-gradient);
    color: white;
    border: none;
    border-radius: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    min-height: 44px;
}

.hqpage-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.hqpage-submit-btn:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.hqpage-form-links {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hqpage-form-links p {
    color: var(--space-text);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.hqpage-form-links a {
    color: var(--stellar-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.hqpage-form-links a:hover {
    color: var(--galaxy-highlight);
}

.registration-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 8, 17, 0.95);
    z-index: 9996;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.registration-success-dialog {
    background: var(--nebula-secondary);
    padding: 4rem;
    border-radius: 25px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 3px solid var(--galaxy-highlight);
    box-shadow: 0 20px 60px rgba(123, 44, 191, 0.3);
    animation: successAppear 0.4s ease-out;
}

@keyframes successAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.registration-success-dialog i {
    font-size: 4rem;
    color: var(--galaxy-highlight);
    margin-bottom: 1.5rem;
    animation: successPulse 2s infinite;
}

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

.registration-success-dialog h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--orbit-light);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.registration-success-dialog p {
    color: var(--space-text);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

#registeredEmail {
    color: var(--stellar-accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.registration-close-btn {
    padding: 1rem 3rem;
    background: var(--pulsar-gradient);
    color: white;
    border: none;
    border-radius: 25px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.registration-close-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.3);
}

@media (max-width: 1024px) {
    .hqpage-registration-intro {
        padding: 3rem 1.5rem;
        min-height: 50vh;
    }
    
    .hqpage-registration-content h1 {
        font-size: 2.5rem;
    }
    
    .hqpage-registration-form-section {
        padding: 4rem 1.5rem;
    }
    
    .hqpage-form-wrapper {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .hqpage-registration-content h1 {
        font-size: 2rem;
    }
    
    .hqpage-registration-subtitle {
        font-size: 1.2rem;
    }
    
    .hqpage-registration-description {
        font-size: 1rem;
    }
    
    .hqpage-form-header h2 {
        font-size: 1.8rem;
    }
    
    .hqpage-form-wrapper {
        padding: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hqpage-registration-intro {
        padding: 2rem 1rem;
        min-height: 40vh;
    }
    
    .hqpage-registration-content h1 {
        font-size: 1.7rem;
    }
    
    .hqpage-registration-subtitle {
        font-size: 1rem;
    }
    
    .hqpage-registration-description {
        font-size: 0.9rem;
    }
    
    .hqpage-registration-icon {
        font-size: 3rem;
    }
    
    .hqpage-registration-form-section {
        padding: 3rem 0.3rem;
    }
    
    .hqpage-form-wrapper {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .hqpage-form-header h2 {
        font-size: 1.5rem;
    }
    
    .hqpage-form-header p {
        font-size: 0.9rem;
    }
    
    .hqpage-registration-form {
        gap: 1.5rem;
    }
    
    .hqpage-input-wrapper input {
        padding: 1rem 0.8rem 1rem 3rem;
        font-size: 16px;
    }
    
    .hqpage-input-wrapper i {
        left: 1rem;
        font-size: 1.1rem;
    }
    
    .hqpage-input-wrapper label {
        left: 3rem;
        font-size: 0.9rem;
    }
    
    .hqpage-checkbox-wrapper label {
        font-size: 0.85rem;
    }
    
    .hqpage-submit-btn {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .hqpage-form-links p {
        font-size: 0.85rem;
    }
    
    .registration-success-dialog {
        padding: 2rem 1.5rem;
    }
    
    .registration-success-dialog h2 {
        font-size: 1.7rem;
    }
    
    .registration-success-dialog p {
        font-size: 0.95rem;
    }
}

@media (max-width: 320px) {
    .hqpage-registration-intro {
        padding: 1.5rem 0.3rem;
    }
    
    .hqpage-registration-content h1 {
        font-size: 1.5rem;
    }
    
    .hqpage-registration-form-section {
        padding: 2rem 0.2rem;
    }
    
    .hqpage-form-wrapper {
        padding: 1.2rem;
    }
    
    .hqpage-input-wrapper input {
        padding: 0.8rem 0.6rem 0.8rem 2.8rem;
    }
    
    .hqpage-input-wrapper i {
        left: 0.8rem;
        font-size: 1rem;
    }
    
    .hqpage-input-wrapper label {
        left: 2.8rem;
    }

    .registration-success-overlay {
        align-items: flex-start;
    }
}

.hqpage-login-container {
    margin: 0 auto;
}

.hqpage-login-intro {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    overflow: hidden;
    background: var(--void-dark);
}

.hqpage-login-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hqpage-login-shape {
    position: absolute;
    background: var(--galaxy-highlight);
    opacity: 0.1;
    animation-duration: 25s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    left: 10%;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation-name: morphShape1;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-name: morphShape2;
}

.shape-3 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    left: 25%;
    border-radius: 30% 70% 50% 50% / 30% 50% 50% 70%;
    animation-name: morphShape3;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 25%;
    right: 25%;
    border-radius: 50% 50% 70% 30% / 50% 70% 30% 50%;
    animation-name: morphShape4;
}

@keyframes morphShape1 {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: translate(0, 0) rotate(0deg); }
    25% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(30px, 20px) rotate(90deg); }
    50% { border-radius: 30% 70% 50% 50% / 30% 50% 50% 70%; transform: translate(20px, 40px) rotate(180deg); }
    75% { border-radius: 50% 50% 70% 30% / 50% 70% 30% 50%; transform: translate(-10px, 30px) rotate(270deg); }
}

@keyframes morphShape2 {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(0, 0) rotate(0deg); }
    25% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: translate(-25px, 15px) rotate(-90deg); }
    50% { border-radius: 50% 50% 70% 30% / 50% 70% 30% 50%; transform: translate(-15px, -25px) rotate(-180deg); }
    75% { border-radius: 30% 70% 50% 50% / 30% 50% 50% 70%; transform: translate(20px, -15px) rotate(-270deg); }
}

@keyframes morphShape3 {
    0%, 100% { border-radius: 30% 70% 50% 50% / 30% 50% 50% 70%; transform: translate(0, 0) scale(1); }
    50% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(20px, -10px) scale(1.2); }
}

@keyframes morphShape4 {
    0%, 100% { border-radius: 50% 50% 70% 30% / 50% 70% 30% 50%; transform: translate(0, 0) rotate(0deg); }
    33% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: translate(-20px, 15px) rotate(120deg); }
    66% { border-radius: 30% 70% 50% 50% / 30% 50% 50% 70%; transform: translate(15px, -20px) rotate(240deg); }
}

.hqpage-login-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
    position: relative;
}

.hqpage-login-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.2rem;
    background: var(--pulsar-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hqpage-login-subtitle {
    font-size: 1.4rem;
    color: var(--orbit-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hqpage-login-description {
    font-size: 1.1rem;
    color: var(--space-text);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hqpage-login-icon {
    font-size: 4rem;
    color: var(--stellar-accent);
    animation: loginIconFloat 3s infinite;
}

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

.hqpage-login-form-section {
    padding: 6rem 2rem;
    background: var(--cosmic-primary);
}

.hqpage-login-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: var(--nebula-secondary);
    border-radius: 25px;
    padding: 4rem;
    border: 2px solid var(--stellar-accent);
    position: relative;
    overflow: hidden;
}

.hqpage-login-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--stellar-accent) 0%, var(--galaxy-highlight) 100%);
}

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

.hqpage-login-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    color: var(--orbit-light);
    margin-bottom: 1rem;
}

.hqpage-login-header p {
    color: var(--space-text);
    font-size: 1.1rem;
}

.hqpage-login-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hqpage-login-group {
    position: relative;
}

.hqpage-login-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.hqpage-login-input-wrapper i {
    position: absolute;
    left: 1.2rem;
    color: var(--space-text);
    font-size: 1.2rem;
    z-index: 1;
    transition: color 0.3s ease;
}

.hqpage-login-input-wrapper input {
    width: 100%;
    padding: 1.2rem 1rem 1.2rem 3.5rem;
    background: rgba(10, 14, 23, 0.6);
    border: 2px solid var(--orbit-light);
    border-radius: 15px;
    color: var(--orbit-light);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    min-height: 44px;
}

.hqpage-login-input-wrapper input:focus {
    outline: none;
    border-color: var(--stellar-accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.hqpage-login-input-wrapper input:focus + label,
.hqpage-login-input-wrapper input:not(:placeholder-shown) + label {
    top: -25px;
    font-size: 0.9rem;
    color: var(--stellar-accent);
}

.hqpage-login-input-wrapper label {
    position: absolute;
    top: 50%;
    left: 3.5rem;
    transform: translateY(-50%);
    color: var(--space-text);
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--nebula-secondary);
    padding: 0 0.5rem;
    margin-left: -0.5rem;
}

.hqpage-login-password-toggle {
    position: absolute;
    right: 1.2rem;
    background: none;
    border: none;
    color: var(--space-text);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hqpage-login-password-toggle:hover {
    color: var(--stellar-accent);
}

.hqpage-login-validation-hint {
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 0.85rem;
    color: var(--comet-warning);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hqpage-login-input-wrapper input:focus ~ .hqpage-login-validation-hint {
    opacity: 1;
}

.hqpage-login-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(10, 14, 23, 0.4);
    border-radius: 12px;
    border: 2px solid var(--orbit-light);
    transition: all 0.3s ease;
    min-height: 44px;
}

.hqpage-login-checkbox-wrapper:focus-within {
    border-color: var(--stellar-accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.hqpage-login-checkbox-wrapper input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin-top: 0.2rem;
    accent-color: var(--stellar-accent);
}

.hqpage-login-checkbox-wrapper label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--space-text);
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
    pointer-events: auto;
}

.hqpage-login-checkbox-wrapper label i {
    color: var(--stellar-accent);
    font-size: 1.5rem;
    margin-top: 0.1rem;
}

.hqpage-login-checkbox-wrapper a {
    color: var(--stellar-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hqpage-login-checkbox-wrapper a:hover {
    color: var(--galaxy-highlight);
}

.hqpage-login-checkbox-wrapper:focus-within .hqpage-login-validation-hint {
    opacity: 1;
}

.hqpage-login-submit-btn {
    padding: 1.2rem;
    background: var(--stellar-accent);
    color: white;
    border: none;
    border-radius: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    min-height: 44px;
}

.hqpage-login-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.hqpage-login-submit-btn:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.hqpage-login-links {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hqpage-login-links p {
    color: var(--space-text);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.hqpage-login-links a {
    color: var(--stellar-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.hqpage-login-links a:hover {
    color: var(--galaxy-highlight);
}

.login-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 8, 17, 0.95);
    z-index: 9996;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.login-success-dialog {
    background: var(--nebula-secondary);
    padding: 4rem;
    border-radius: 25px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 3px solid var(--stellar-accent);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    animation: loginSuccessAppear 0.4s ease-out;
}

@keyframes loginSuccessAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.login-success-dialog i {
    font-size: 4rem;
    color: var(--stellar-accent);
    margin-bottom: 1.5rem;
    animation: loginIconSpin 2s infinite;
}

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

.login-success-dialog h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--orbit-light);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.login-success-dialog p {
    color: var(--space-text);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

#loginEmail {
    color: var(--stellar-accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.login-close-btn {
    padding: 1rem 3rem;
    background: var(--pulsar-gradient);
    color: white;
    border: none;
    border-radius: 25px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.login-close-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.3);
}

@media (max-width: 1024px) {
    .hqpage-login-intro {
        padding: 3rem 1.5rem;
        min-height: 50vh;
    }
    
    .hqpage-login-content h1 {
        font-size: 2.5rem;
    }
    
    .hqpage-login-form-section {
        padding: 4rem 1.5rem;
    }
    
    .hqpage-login-wrapper {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .hqpage-login-content h1 {
        font-size: 2rem;
    }
    
    .hqpage-login-subtitle {
        font-size: 1.2rem;
    }
    
    .hqpage-login-description {
        font-size: 1rem;
    }
    
    .hqpage-login-header h2 {
        font-size: 1.8rem;
    }
    
    .hqpage-login-wrapper {
        padding: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hqpage-login-intro {
        padding: 2rem 1rem;
        min-height: 40vh;
    }
    
    .hqpage-login-content h1 {
        font-size: 1.7rem;
    }
    
    .hqpage-login-subtitle {
        font-size: 1rem;
    }
    
    .hqpage-login-description {
        font-size: 0.9rem;
    }
    
    .hqpage-login-icon {
        font-size: 3rem;
    }
    
    .hqpage-login-form-section {
        padding: 3rem 0.3rem;
    }
    
    .hqpage-login-wrapper {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .hqpage-login-header h2 {
        font-size: 1.5rem;
    }
    
    .hqpage-login-header p {
        font-size: 0.9rem;
    }
    
    .hqpage-login-form {
        gap: 1.5rem;
    }
    
    .hqpage-login-input-wrapper input {
        padding: 1rem 0.8rem 1rem 3rem;
        font-size: 16px;
    }
    
    .hqpage-login-input-wrapper i {
        left: 1rem;
        font-size: 1.1rem;
    }
    
    .hqpage-login-input-wrapper label {
        left: 3rem;
        font-size: 0.9rem;
    }
    
    .hqpage-login-checkbox-wrapper label {
        font-size: 0.85rem;
    }
    
    .hqpage-login-submit-btn {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .hqpage-login-links p {
        font-size: 0.85rem;
    }
    
    .login-success-dialog {
        padding: 2rem 1.5rem;
    }
    
    .login-success-dialog h2 {
        font-size: 1.7rem;
    }
    
    .login-success-dialog p {
        font-size: 0.95rem;
    }
}

@media (max-width: 320px) {
    .hqpage-login-intro {
        padding: 1.5rem 0.3rem;
    }
    
    .hqpage-login-content h1 {
        font-size: 1.5rem;
    }
    
    .hqpage-login-form-section {
        padding: 2rem 0.2rem;
    }
    
    .hqpage-login-wrapper {
        padding: 1.2rem;
    }
    
    .hqpage-login-input-wrapper input {
        padding: 0.8rem 0.6rem 0.8rem 2.8rem;
    }
    
    .hqpage-login-input-wrapper i {
        left: 0.8rem;
        font-size: 1rem;
    }
    
    .hqpage-login-input-wrapper label {
        left: 2.8rem;
    }

    .login-success-overlay {
        align-items: flex-start;
    }
}

.hqpage-recovery-container {
    margin: 0 auto;
}

.hqpage-recovery-intro {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    overflow: hidden;
    background: var(--void-dark);
}

.hqpage-recovery-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hqpage-recovery-wave {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--stellar-accent), transparent);
    opacity: 0.05;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.wave-1 {
    width: 100%;
    height: 2px;
    top: 20%;
    animation-name: waveMove1;
}

.wave-2 {
    width: 100%;
    height: 2px;
    top: 50%;
    animation-name: waveMove2;
}

.wave-3 {
    width: 100%;
    height: 2px;
    top: 80%;
    animation-name: waveMove3;
}

@keyframes waveMove1 {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes waveMove2 {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@keyframes waveMove3 {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hqpage-recovery-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
    position: relative;
}

.hqpage-recovery-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.2rem;
    background: var(--pulsar-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hqpage-recovery-subtitle {
    font-size: 1.4rem;
    color: var(--orbit-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hqpage-recovery-description {
    font-size: 1.1rem;
    color: var(--space-text);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hqpage-recovery-icon {
    font-size: 4rem;
    color: var(--comet-warning);
    animation: recoveryIconBounce 2s infinite;
}

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

.hqpage-recovery-form-section {
    padding: 6rem 2rem;
    background: var(--cosmic-primary);
}

.hqpage-recovery-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: var(--nebula-secondary);
    border-radius: 25px;
    padding: 4rem;
    border: 2px solid var(--comet-warning);
    position: relative;
    overflow: hidden;
}

.hqpage-recovery-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--comet-warning) 0%, var(--galaxy-highlight) 100%);
}

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

.hqpage-recovery-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    color: var(--orbit-light);
    margin-bottom: 1rem;
}

.hqpage-recovery-header p {
    color: var(--space-text);
    font-size: 1.1rem;
}

.hqpage-recovery-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hqpage-recovery-group {
    position: relative;
}

.hqpage-recovery-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.hqpage-recovery-input-wrapper i {
    position: absolute;
    left: 1.2rem;
    color: var(--space-text);
    font-size: 1.2rem;
    z-index: 1;
    transition: color 0.3s ease;
}

.hqpage-recovery-input-wrapper input {
    width: 100%;
    padding: 1.2rem 1rem 1.2rem 3.5rem;
    background: rgba(10, 14, 23, 0.6);
    border: 2px solid var(--orbit-light);
    border-radius: 15px;
    color: var(--orbit-light);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    min-height: 44px;
}

.hqpage-recovery-input-wrapper input:focus {
    outline: none;
    border-color: var(--comet-warning);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.hqpage-recovery-input-wrapper input:focus + label,
.hqpage-recovery-input-wrapper input:not(:placeholder-shown) + label {
    top: -25px;
    font-size: 0.9rem;
    color: var(--comet-warning);
}

.hqpage-recovery-input-wrapper label {
    position: absolute;
    top: 50%;
    left: 3.5rem;
    transform: translateY(-50%);
    color: var(--space-text);
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--nebula-secondary);
    padding: 0 0.5rem;
    margin-left: -0.5rem;
}

.hqpage-recovery-validation-hint {
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 0.85rem;
    color: var(--comet-warning);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hqpage-recovery-input-wrapper input:focus ~ .hqpage-recovery-validation-hint {
    opacity: 1;
}

.hqpage-recovery-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(10, 14, 23, 0.4);
    border-radius: 12px;
    border: 2px solid var(--orbit-light);
    transition: all 0.3s ease;
    min-height: 44px;
}

.hqpage-recovery-checkbox-wrapper:focus-within {
    border-color: var(--comet-warning);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.hqpage-recovery-checkbox-wrapper input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin-top: 0.2rem;
    accent-color: var(--comet-warning);
}

.hqpage-recovery-checkbox-wrapper label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--space-text);
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
    pointer-events: auto;
}

.hqpage-recovery-checkbox-wrapper label i {
    color: var(--comet-warning);
    font-size: 1.5rem;
    margin-top: 0.1rem;
}

.hqpage-recovery-checkbox-wrapper a {
    color: var(--comet-warning);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hqpage-recovery-checkbox-wrapper a:hover {
    color: var(--galaxy-highlight);
}

.hqpage-recovery-checkbox-wrapper:focus-within .hqpage-recovery-validation-hint {
    opacity: 1;
}

.hqpage-recovery-submit-btn {
    padding: 1.2rem;
    background: var(--comet-warning);
    color: white;
    border: none;
    border-radius: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    min-height: 44px;
}

.hqpage-recovery-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.hqpage-recovery-submit-btn:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.hqpage-recovery-links {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hqpage-recovery-links p {
    color: var(--space-text);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.hqpage-recovery-links a {
    color: var(--comet-warning);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.hqpage-recovery-links a:hover {
    color: var(--galaxy-highlight);
}

.recovery-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 8, 17, 0.95);
    z-index: 9996;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.recovery-success-dialog {
    background: var(--nebula-secondary);
    padding: 4rem;
    border-radius: 25px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 3px solid var(--comet-warning);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    animation: recoverySuccessAppear 0.4s ease-out;
}

@keyframes recoverySuccessAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.recovery-success-dialog i {
    font-size: 4rem;
    color: var(--comet-warning);
    margin-bottom: 1.5rem;
    animation: recoveryIconSpin 2s infinite;
}

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

.recovery-success-dialog h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--orbit-light);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.recovery-success-dialog p {
    color: var(--space-text);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

#recoveryEmail {
    color: var(--comet-warning);
    font-weight: 700;
    font-size: 1.1rem;
}

.recovery-close-btn {
    padding: 1rem 3rem;
    background: var(--comet-warning);
    color: white;
    border: none;
    border-radius: 25px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.recovery-close-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

@media (max-width: 1024px) {
    .hqpage-recovery-intro {
        padding: 3rem 1.5rem;
        min-height: 50vh;
    }
    
    .hqpage-recovery-content h1 {
        font-size: 2.5rem;
    }
    
    .hqpage-recovery-form-section {
        padding: 4rem 1.5rem;
    }
    
    .hqpage-recovery-wrapper {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .hqpage-recovery-content h1 {
        font-size: 2rem;
    }
    
    .hqpage-recovery-subtitle {
        font-size: 1.2rem;
    }
    
    .hqpage-recovery-description {
        font-size: 1rem;
    }
    
    .hqpage-recovery-header h2 {
        font-size: 1.8rem;
    }
    
    .hqpage-recovery-wrapper {
        padding: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hqpage-recovery-intro {
        padding: 2rem 1rem;
        min-height: 40vh;
    }
    
    .hqpage-recovery-content h1 {
        font-size: 1.7rem;
    }
    
    .hqpage-recovery-subtitle {
        font-size: 1rem;
    }
    
    .hqpage-recovery-description {
        font-size: 0.9rem;
    }
    
    .hqpage-recovery-icon {
        font-size: 3rem;
    }
    
    .hqpage-recovery-form-section {
        padding: 3rem 0.3rem;
    }
    
    .hqpage-recovery-wrapper {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .hqpage-recovery-header h2 {
        font-size: 1.5rem;
    }
    
    .hqpage-recovery-header p {
        font-size: 0.9rem;
    }
    
    .hqpage-recovery-form {
        gap: 1.5rem;
    }
    
    .hqpage-recovery-input-wrapper input {
        padding: 1rem 0.8rem 1rem 3rem;
        font-size: 16px;
    }
    
    .hqpage-recovery-input-wrapper i {
        left: 1rem;
        font-size: 1.1rem;
    }
    
    .hqpage-recovery-input-wrapper label {
        left: 3rem;
        font-size: 0.9rem;
    }
    
    .hqpage-recovery-checkbox-wrapper label {
        font-size: 0.85rem;
    }
    
    .hqpage-recovery-submit-btn {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .hqpage-recovery-links p {
        font-size: 0.85rem;
    }
    
    .recovery-success-dialog {
        padding: 2rem 1.5rem;
    }
    
    .recovery-success-dialog h2 {
        font-size: 1.7rem;
    }
    
    .recovery-success-dialog p {
        font-size: 0.95rem;
    }
}

@media (max-width: 320px) {
    .hqpage-recovery-intro {
        padding: 1.5rem 0.3rem;
    }
    
    .hqpage-recovery-content h1 {
        font-size: 1.5rem;
    }
    
    .hqpage-recovery-form-section {
        padding: 2rem 0.2rem;
    }
    
    .hqpage-recovery-wrapper {
        padding: 1.2rem;
    }
    
    .hqpage-recovery-input-wrapper input {
        padding: 0.8rem 0.6rem 0.8rem 2.8rem;
    }
    
    .hqpage-recovery-input-wrapper i {
        left: 0.8rem;
        font-size: 1rem;
    }
    
    .hqpage-recovery-input-wrapper label {
        left: 2.8rem;
    }

    .recovery-success-overlay {
        align-items: flex-start;
    }
}

.hqpage-contact-container {
    margin: 0 auto;
}

.hqpage-contact-intro {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    overflow: hidden;
    background: var(--void-dark);
}

.hqpage-contact-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hqpage-contact-particle {
    position: absolute;
    background: var(--stellar-accent);
    border-radius: 50%;
    opacity: 0.1;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.particle-1 {
    width: 20px;
    height: 20px;
    top: 15%;
    left: 10%;
    animation-name: particleMove1;
}

.particle-2 {
    width: 15px;
    height: 15px;
    top: 40%;
    right: 15%;
    animation-name: particleMove2;
}

.particle-3 {
    width: 25px;
    height: 25px;
    bottom: 25%;
    left: 20%;
    animation-name: particleMove3;
}

.particle-4 {
    width: 18px;
    height: 18px;
    top: 30%;
    right: 25%;
    animation-name: particleMove4;
}

.particle-5 {
    width: 22px;
    height: 22px;
    bottom: 35%;
    right: 20%;
    animation-name: particleMove5;
}

@keyframes particleMove1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, 25px) scale(1.2); }
    50% { transform: translate(25px, 45px) scale(1); }
    75% { transform: translate(-15px, 35px) scale(0.8); }
}

@keyframes particleMove2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-35px, 20px) scale(0.8); }
    50% { transform: translate(-20px, -30px) scale(1.2); }
    75% { transform: translate(25px, -15px) scale(1); }
}

@keyframes particleMove3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.3); }
    66% { transform: translate(-25px, 30px) scale(0.7); }
}

@keyframes particleMove4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, 20px) rotate(180deg) scale(1.1); }
}

@keyframes particleMove5 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-15px, 25px) scale(1.2); }
    50% { transform: translate(20px, -15px) scale(0.9); }
    75% { transform: translate(-25px, -10px) scale(1.1); }
}

.hqpage-contact-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
    position: relative;
}

.hqpage-contact-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.2rem;
    background: var(--pulsar-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hqpage-contact-subtitle {
    font-size: 1.4rem;
    color: var(--orbit-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hqpage-contact-description {
    font-size: 1.1rem;
    color: var(--space-text);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hqpage-contact-icon {
    font-size: 4rem;
    color: var(--galaxy-highlight);
    animation: contactIconPulse 3s infinite;
}

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

.hqpage-contact-form-section {
    padding: 6rem 2rem;
    background: var(--cosmic-primary);
}

.hqpage-contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--nebula-secondary);
    border-radius: 25px;
    padding: 4rem;
    border: 2px solid var(--galaxy-highlight);
    position: relative;
    overflow: hidden;
}

.hqpage-contact-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--galaxy-highlight) 0%, var(--stellar-accent) 100%);
}

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

.hqpage-contact-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    color: var(--orbit-light);
    margin-bottom: 1rem;
}

.hqpage-contact-header p {
    color: var(--space-text);
    font-size: 1.1rem;
}

.hqpage-contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hqpage-contact-group {
    position: relative;
}

.hqpage-contact-input-wrapper,
.hqpage-contact-textarea-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.hqpage-contact-input-wrapper i,
.hqpage-contact-textarea-wrapper i {
    position: absolute;
    left: 1.2rem;
    top: 1.2rem;
    color: var(--space-text);
    font-size: 1.2rem;
    z-index: 1;
    transition: color 0.3s ease;
}

.hqpage-contact-input-wrapper input,
.hqpage-contact-textarea-wrapper textarea {
    width: 100%;
    padding: 1.2rem 1rem 1.2rem 3.5rem;
    background: rgba(10, 14, 23, 0.6);
    border: 2px solid var(--orbit-light);
    border-radius: 15px;
    color: var(--orbit-light);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    min-height: 44px;
    resize: vertical;
}

.hqpage-contact-textarea-wrapper textarea {
    min-height: 150px;
    padding-top: 1.5rem;
}

.hqpage-contact-input-wrapper input:focus,
.hqpage-contact-textarea-wrapper textarea:focus {
    outline: none;
    border-color: var(--galaxy-highlight);
    box-shadow: 0 0 0 3px rgba(123, 44, 191, 0.2);
}

.hqpage-contact-input-wrapper input:focus + label,
.hqpage-contact-input-wrapper input:not(:placeholder-shown) + label,
.hqpage-contact-textarea-wrapper textarea:focus + label,
.hqpage-contact-textarea-wrapper textarea:not(:placeholder-shown) + label {
    top: -25px;
    font-size: 0.9rem;
    color: var(--galaxy-highlight);
}

.hqpage-contact-input-wrapper label,
.hqpage-contact-textarea-wrapper label {
    position: absolute;
    top: 50%;
    left: 3.5rem;
    transform: translateY(-50%);
    color: var(--space-text);
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--nebula-secondary);
    padding: 0 0.5rem;
    margin-left: -0.5rem;
}

.hqpage-contact-textarea-wrapper label {
    top: 1.5rem;
    transform: none;
}

.hqpage-contact-validation-hint {
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 0.85rem;
    color: var(--comet-warning);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hqpage-contact-input-wrapper input:focus ~ .hqpage-contact-validation-hint,
.hqpage-contact-textarea-wrapper textarea:focus ~ .hqpage-contact-validation-hint {
    opacity: 1;
}

.hqpage-contact-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(10, 14, 23, 0.4);
    border-radius: 12px;
    border: 2px solid var(--orbit-light);
    transition: all 0.3s ease;
    min-height: 44px;
}

.hqpage-contact-checkbox-wrapper:focus-within {
    border-color: var(--galaxy-highlight);
    box-shadow: 0 0 0 3px rgba(123, 44, 191, 0.2);
}

.hqpage-contact-checkbox-wrapper input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin-top: 0.2rem;
    accent-color: var(--galaxy-highlight);
}

.hqpage-contact-checkbox-wrapper label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--space-text);
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
    pointer-events: auto;
}

.hqpage-contact-checkbox-wrapper label i {
    color: var(--galaxy-highlight);
    font-size: 1.5rem;
    margin-top: 0.1rem;
}

.hqpage-contact-checkbox-wrapper a {
    color: var(--galaxy-highlight);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hqpage-contact-checkbox-wrapper a:hover {
    color: var(--stellar-accent);
}

.hqpage-contact-checkbox-wrapper:focus-within .hqpage-contact-validation-hint {
    opacity: 1;
}

.hqpage-contact-submit-btn {
    padding: 1.2rem;
    background: var(--galaxy-highlight);
    color: white;
    border: none;
    border-radius: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    min-height: 44px;
}

.hqpage-contact-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.hqpage-contact-submit-btn:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(123, 44, 191, 0.3);
}

.contact-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 8, 17, 0.95);
    z-index: 9996;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.contact-success-dialog {
    background: var(--nebula-secondary);
    padding: 4rem;
    border-radius: 25px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 3px solid var(--galaxy-highlight);
    box-shadow: 0 20px 60px rgba(123, 44, 191, 0.3);
    animation: contactSuccessAppear 0.4s ease-out;
}

@keyframes contactSuccessAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.contact-success-dialog i {
    font-size: 4rem;
    color: var(--galaxy-highlight);
    margin-bottom: 1.5rem;
    animation: contactIconFloat 2s infinite;
}

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

.contact-success-dialog h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--orbit-light);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.contact-success-dialog p {
    color: var(--space-text);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

#contactEmail {
    color: var(--galaxy-highlight);
    font-weight: 700;
    font-size: 1.1rem;
}

.contact-close-btn {
    padding: 1rem 3rem;
    background: var(--galaxy-highlight);
    color: white;
    border: none;
    border-radius: 25px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.contact-close-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(123, 44, 191, 0.3);
}

@media (max-width: 1024px) {
    .hqpage-contact-intro {
        padding: 3rem 1.5rem;
        min-height: 50vh;
    }
    
    .hqpage-contact-content h1 {
        font-size: 2.5rem;
    }
    
    .hqpage-contact-form-section {
        padding: 4rem 1.5rem;
    }
    
    .hqpage-contact-wrapper {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .hqpage-contact-content h1 {
        font-size: 2rem;
    }
    
    .hqpage-contact-subtitle {
        font-size: 1.2rem;
    }
    
    .hqpage-contact-description {
        font-size: 1rem;
    }
    
    .hqpage-contact-header h2 {
        font-size: 1.8rem;
    }
    
    .hqpage-contact-wrapper {
        padding: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hqpage-contact-intro {
        padding: 2rem 1rem;
        min-height: 40vh;
    }
    
    .hqpage-contact-content h1 {
        font-size: 1.7rem;
    }
    
    .hqpage-contact-subtitle {
        font-size: 1rem;
    }
    
    .hqpage-contact-description {
        font-size: 0.9rem;
    }
    
    .hqpage-contact-icon {
        font-size: 3rem;
    }
    
    .hqpage-contact-form-section {
        padding: 3rem 0.3rem;
    }
    
    .hqpage-contact-wrapper {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .hqpage-contact-header h2 {
        font-size: 1.5rem;
    }
    
    .hqpage-contact-header p {
        font-size: 0.9rem;
    }
    
    .hqpage-contact-form {
        gap: 1.5rem;
    }
    
    .hqpage-contact-input-wrapper input,
    .hqpage-contact-textarea-wrapper textarea {
        padding: 1rem 0.8rem 1rem 3rem;
        font-size: 16px;
    }
    
    .hqpage-contact-input-wrapper i,
    .hqpage-contact-textarea-wrapper i {
        left: 1rem;
        top: 1rem;
        font-size: 1.1rem;
    }
    
    .hqpage-contact-input-wrapper label,
    .hqpage-contact-textarea-wrapper label {
        left: 3rem;
        font-size: 0.9rem;
    }
    
    .hqpage-contact-checkbox-wrapper label {
        font-size: 0.85rem;
    }
    
    .hqpage-contact-submit-btn {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .contact-success-dialog {
        padding: 2rem 1.5rem;
    }
    
    .contact-success-dialog h2 {
        font-size: 1.7rem;
    }
    
    .contact-success-dialog p {
        font-size: 0.95rem;
    }
}

@media (max-width: 320px) {
    .hqpage-contact-intro {
        padding: 1.5rem 0.3rem;
    }
    
    .hqpage-contact-content h1 {
        font-size: 1.5rem;
    }
    
    .hqpage-contact-form-section {
        padding: 2rem 0.2rem;
    }
    
    .hqpage-contact-wrapper {
        padding: 1.2rem;
    }
    
    .hqpage-contact-input-wrapper input,
    .hqpage-contact-textarea-wrapper textarea {
        padding: 0.8rem 0.6rem 0.8rem 2.8rem;
    }
    
    .hqpage-contact-input-wrapper i,
    .hqpage-contact-textarea-wrapper i {
        left: 0.8rem;
        top: 0.8rem;
        font-size: 1rem;
    }
    
    .hqpage-contact-input-wrapper label,
    .hqpage-contact-textarea-wrapper label {
        left: 2.8rem;
    }

    .contact-success-overlay {
        align-items: flex-start;
    }
}

.hqpage-cookie-container {
    margin: 0 auto;
}

.hqpage-cookie-hero {
    padding: 6rem 2rem;
    background: var(--void-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hqpage-cookie-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(123, 44, 191, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
}

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

.hqpage-cookie-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    background: var(--pulsar-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hqpage-cookie-subtitle {
    font-size: 1.4rem;
    color: var(--orbit-light);
    margin-bottom: 3rem;
    font-weight: 500;
}

.hqpage-cookie-icon {
    font-size: 5rem;
    color: var(--galaxy-highlight);
    animation: cookieSpin 10s linear infinite;
}

@keyframes cookieSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hqpage-cookie-content {
    padding: 6rem 2rem;
    background: var(--cosmic-primary);
}

.hqpage-cookie-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.hqpage-cookie-article {
    flex: 1;
    min-width: 300px;
    background: var(--nebula-secondary);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hqpage-cookie-article:hover {
    border-color: var(--galaxy-highlight);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(123, 44, 191, 0.15);
}

.hqpage-cookie-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--pulsar-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.hqpage-cookie-article:hover::before {
    transform: scaleX(1);
}

.hqpage-cookie-article-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hqpage-cookie-article-icon {
    font-size: 2.5rem;
    color: var(--stellar-accent);
    background: rgba(0, 212, 255, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hqpage-cookie-article-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    color: var(--orbit-light);
    flex: 1;
    min-width: 200px;
}

.hqpage-cookie-article-body {
    color: var(--space-text);
    line-height: 1.7;
}

.hqpage-cookie-article-body p {
    margin-bottom: 1.5rem;
}

.hqpage-cookie-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hqpage-cookie-contact a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    color: var(--stellar-accent);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.hqpage-cookie-contact a:hover {
    color: var(--galaxy-highlight);
}

.hqpage-cookie-contact i {
    font-size: 1.5rem;
}

.hqpage-cookie-notes {
    padding: 4rem 2rem;
    background: var(--void-dark);
    text-align: center;
}

.hqpage-cookie-notes-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--nebula-secondary);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--galaxy-highlight);
}

.hqpage-cookie-notes-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: var(--orbit-light);
    margin-bottom: 2rem;
}

.hqpage-cookie-notes-content p {
    color: var(--space-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .hqpage-cookie-hero {
        padding: 4rem 1.5rem;
    }
    
    .hqpage-cookie-hero h1 {
        font-size: 2.8rem;
    }
    
    .hqpage-cookie-content {
        padding: 4rem 1.5rem;
    }
    
    .hqpage-cookie-grid {
        gap: 2rem;
    }
    
    .hqpage-cookie-article {
        padding: 2.5rem;
    }
    
    .hqpage-cookie-notes {
        padding: 3rem 1.5rem;
    }
    
    .hqpage-cookie-notes-content {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hqpage-cookie-hero h1 {
        font-size: 2.3rem;
    }
    
    .hqpage-cookie-subtitle {
        font-size: 1.2rem;
    }
    
    .hqpage-cookie-icon {
        font-size: 4rem;
    }
    
    .hqpage-cookie-article-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hqpage-cookie-article-header h2 {
        min-width: 100%;
    }
    
    .hqpage-cookie-notes-content h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .hqpage-cookie-hero {
        padding: 3rem 1rem;
    }
    
    .hqpage-cookie-hero h1 {
        font-size: 1.8rem;
    }
    
    .hqpage-cookie-subtitle {
        font-size: 1rem;
    }
    
    .hqpage-cookie-icon {
        font-size: 3.5rem;
    }
    
    .hqpage-cookie-content {
        padding: 3rem 0.3rem;
    }
    
    .hqpage-cookie-article {
        padding: 2rem;
        min-width: 100%;
    }
    
    .hqpage-cookie-article-header h2 {
        font-size: 1.5rem;
    }
    
    .hqpage-cookie-article-body p {
        font-size: 0.95rem;
    }
    
    .hqpage-cookie-contact a {
        font-size: 0.9rem;
    }
    
    .hqpage-cookie-notes {
        padding: 2rem 0.3rem;
    }
    
    .hqpage-cookie-notes-content {
        padding: 2rem;
    }
    
    .hqpage-cookie-notes-content h3 {
        font-size: 1.5rem;
    }
    
    .hqpage-cookie-notes-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 320px) {
    .hqpage-cookie-hero {
        padding: 2rem 0.3rem;
    }
    
    .hqpage-cookie-hero h1 {
        font-size: 1.6rem;
    }
    
    .hqpage-cookie-article {
        padding: 1.5rem;
    }
    
    .hqpage-cookie-article-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

.hqpage-notfound-container {
    margin: 0 auto;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hqpage-notfound-content {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--void-dark);
    position: relative;
    overflow: hidden;
}

.hqpage-notfound-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
}

.hqpage-notfound-animation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.hqpage-notfound-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 8rem;
    font-weight: 700;
    color: var(--comet-warning);
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    animation: numberGlow 2s infinite alternate;
}

@keyframes numberGlow {
    from { text-shadow: 0 0 20px rgba(255, 107, 53, 0.5); }
    to { text-shadow: 0 0 40px rgba(255, 107, 53, 0.8); }
}

.hqpage-notfound-icon {
    font-size: 5rem;
    color: var(--stellar-accent);
    animation: searchSpin 5s linear infinite;
}

@keyframes searchSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hqpage-notfound-text {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hqpage-notfound-text h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    color: var(--orbit-light);
    margin-bottom: 2rem;
}

.hqpage-notfound-description,
.hqpage-notfound-suggestion {
    color: var(--space-text);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hqpage-notfound-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.hqpage-notfound-home-btn,
.hqpage-notfound-support-btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 250px;
    justify-content: center;
}

.hqpage-notfound-home-btn {
    background: var(--pulsar-gradient);
    color: white;
}

.hqpage-notfound-home-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.3);
}

.hqpage-notfound-support-btn {
    background: var(--comet-warning);
    color: white;
}

.hqpage-notfound-support-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.hqpage-notfound-info {
    background: rgba(10, 14, 23, 0.6);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--stellar-accent);
    margin-top: 3rem;
}

.hqpage-notfound-info p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    color: var(--space-text);
    font-size: 1rem;
    margin: 0;
}

.hqpage-notfound-info i {
    color: var(--stellar-accent);
    font-size: 1.5rem;
}

.hqpage-notfound-links {
    padding: 4rem 2rem;
    background: var(--cosmic-primary);
}

.hqpage-notfound-links-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hqpage-notfound-links-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: var(--orbit-light);
    text-align: center;
    margin-bottom: 3rem;
}

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

.hqpage-notfound-link {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: var(--nebula-secondary);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    color: var(--orbit-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.hqpage-notfound-link:hover {
    border-color: var(--galaxy-highlight);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(123, 44, 191, 0.15);
}

.hqpage-notfound-link i {
    font-size: 2.5rem;
    color: var(--galaxy-highlight);
    margin-bottom: 1rem;
    display: block;
}

.hqpage-notfound-link span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .hqpage-notfound-content {
        padding: 4rem 1.5rem;
    }
    
    .hqpage-notfound-number {
        font-size: 6rem;
    }
    
    .hqpage-notfound-icon {
        font-size: 4rem;
    }
    
    .hqpage-notfound-text h1 {
        font-size: 2.5rem;
    }
    
    .hqpage-notfound-links {
        padding: 3rem 1.5rem;
    }
    
    .hqpage-notfound-links-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hqpage-notfound-animation {
        gap: 1.5rem;
    }
    
    .hqpage-notfound-number {
        font-size: 5rem;
    }
    
    .hqpage-notfound-icon {
        font-size: 3.5rem;
    }
    
    .hqpage-notfound-text h1 {
        font-size: 2rem;
    }
    
    .hqpage-notfound-description,
    .hqpage-notfound-suggestion {
        font-size: 1.1rem;
    }
    
    .hqpage-notfound-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hqpage-notfound-home-btn,
    .hqpage-notfound-support-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hqpage-notfound-links-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .hqpage-notfound-link {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .hqpage-notfound-content {
        padding: 3rem 1rem;
    }
    
    .hqpage-notfound-number {
        font-size: 4rem;
    }
    
    .hqpage-notfound-icon {
        font-size: 3rem;
    }
    
    .hqpage-notfound-text h1 {
        font-size: 1.7rem;
    }
    
    .hqpage-notfound-description,
    .hqpage-notfound-suggestion {
        font-size: 1rem;
    }
    
    .hqpage-notfound-home-btn,
    .hqpage-notfound-support-btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .hqpage-notfound-info p {
        font-size: 0.9rem;
    }
    
    .hqpage-notfound-links {
        padding: 2rem 0.3rem;
    }
    
    .hqpage-notfound-links-content h2 {
        font-size: 1.7rem;
    }
    
    .hqpage-notfound-link {
        padding: 2rem 1.5rem;
    }
    
    .hqpage-notfound-link i {
        font-size: 2rem;
    }
    
    .hqpage-notfound-link span {
        font-size: 1.1rem;
    }
}

@media (max-width: 320px) {
    .hqpage-notfound-content {
        padding: 2rem 0.3rem;
    }
    
    .hqpage-notfound-number {
        font-size: 3.5rem;
    }
    
    .hqpage-notfound-icon {
        font-size: 2.5rem;
    }
    
    .hqpage-notfound-text h1 {
        font-size: 1.5rem;
    }
    
    .hqpage-notfound-home-btn,
    .hqpage-notfound-support-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.hqpage-privacy-container {
    margin: 0 auto;
}

.hqpage-privacy-hero {
    padding: 6rem 2rem;
    background: var(--void-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hqpage-privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(123, 44, 191, 0.1) 0%, transparent 50%);
}

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

.hqpage-privacy-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    background: var(--pulsar-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hqpage-privacy-subtitle {
    font-size: 1.4rem;
    color: var(--orbit-light);
    margin-bottom: 3rem;
    font-weight: 500;
}

.hqpage-privacy-icon {
    font-size: 5rem;
    color: var(--stellar-accent);
    animation: privacyShield 3s infinite;
}

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

.hqpage-privacy-content {
    padding: 6rem 2rem;
    background: var(--cosmic-primary);
}

.hqpage-privacy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.hqpage-privacy-article {
    flex: 1;
    min-width: 300px;
    background: var(--nebula-secondary);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hqpage-privacy-article:hover {
    border-color: var(--stellar-accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.hqpage-privacy-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--stellar-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.hqpage-privacy-article:hover::before {
    transform: scaleX(1);
}

.hqpage-privacy-article-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hqpage-privacy-article-icon {
    font-size: 2.5rem;
    color: var(--stellar-accent);
    background: rgba(0, 212, 255, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hqpage-privacy-article-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    color: var(--orbit-light);
    flex: 1;
    min-width: 200px;
}

.hqpage-privacy-article-body {
    color: var(--space-text);
    line-height: 1.7;
}

.hqpage-privacy-article-body p {
    margin-bottom: 1.5rem;
}

.hqpage-privacy-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hqpage-privacy-contact a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    color: var(--stellar-accent);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.hqpage-privacy-contact a:hover {
    color: var(--galaxy-highlight);
}

.hqpage-privacy-contact i {
    font-size: 1.5rem;
}

.hqpage-privacy-legal {
    padding: 4rem 2rem;
    background: var(--void-dark);
    text-align: center;
}

.hqpage-privacy-legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--nebula-secondary);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--stellar-accent);
}

.hqpage-privacy-legal-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: var(--orbit-light);
    margin-bottom: 2rem;
}

.hqpage-privacy-legal-content p {
    color: var(--space-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .hqpage-privacy-hero {
        padding: 4rem 1.5rem;
    }
    
    .hqpage-privacy-hero h1 {
        font-size: 2.8rem;
    }
    
    .hqpage-privacy-content {
        padding: 4rem 1.5rem;
    }
    
    .hqpage-privacy-grid {
        gap: 2rem;
    }
    
    .hqpage-privacy-article {
        padding: 2.5rem;
    }
    
    .hqpage-privacy-legal {
        padding: 3rem 1.5rem;
    }
    
    .hqpage-privacy-legal-content {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hqpage-privacy-hero h1 {
        font-size: 2.3rem;
    }
    
    .hqpage-privacy-subtitle {
        font-size: 1.2rem;
    }
    
    .hqpage-privacy-icon {
        font-size: 4rem;
    }
    
    .hqpage-privacy-article-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hqpage-privacy-article-header h2 {
        min-width: 100%;
    }
    
    .hqpage-privacy-legal-content h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .hqpage-privacy-hero {
        padding: 3rem 1rem;
    }
    
    .hqpage-privacy-hero h1 {
        font-size: 1.8rem;
    }
    
    .hqpage-privacy-subtitle {
        font-size: 1rem;
    }
    
    .hqpage-privacy-icon {
        font-size: 3.5rem;
    }
    
    .hqpage-privacy-content {
        padding: 3rem 0.3rem;
    }
    
    .hqpage-privacy-article {
        padding: 2rem;
        min-width: 100%;
    }
    
    .hqpage-privacy-article-header h2 {
        font-size: 1.5rem;
    }
    
    .hqpage-privacy-article-body p {
        font-size: 0.95rem;
    }
    
    .hqpage-privacy-contact a {
        font-size: 0.9rem;
    }
    
    .hqpage-privacy-legal {
        padding: 2rem 0.3rem;
    }
    
    .hqpage-privacy-legal-content {
        padding: 2rem;
    }
    
    .hqpage-privacy-legal-content h3 {
        font-size: 1.5rem;
    }
    
    .hqpage-privacy-legal-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 320px) {
    .hqpage-privacy-hero {
        padding: 2rem 0.3rem;
    }
    
    .hqpage-privacy-hero h1 {
        font-size: 1.6rem;
    }
    
    .hqpage-privacy-article {
        padding: 1.5rem;
    }
    
    .hqpage-privacy-article-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

.hqpage-terms-container {
    margin: 0 auto;
}

.hqpage-terms-hero {
    padding: 6rem 2rem;
    background: var(--void-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hqpage-terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 40%, rgba(123, 44, 191, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 60% 60%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}

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

.hqpage-terms-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    background: var(--pulsar-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hqpage-terms-subtitle {
    font-size: 1.4rem;
    color: var(--orbit-light);
    margin-bottom: 3rem;
    font-weight: 500;
}

.hqpage-terms-icon {
    font-size: 5rem;
    color: var(--comet-warning);
    animation: termsPulse 3s infinite;
}

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

.hqpage-terms-content {
    padding: 6rem 2rem;
    background: var(--cosmic-primary);
}

.hqpage-terms-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.hqpage-terms-article {
    flex: 1;
    min-width: 300px;
    background: var(--nebula-secondary);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hqpage-terms-article:hover {
    border-color: var(--comet-warning);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.hqpage-terms-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--comet-warning);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.hqpage-terms-article:hover::before {
    transform: scaleX(1);
}

.hqpage-terms-article-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hqpage-terms-article-icon {
    font-size: 2.5rem;
    color: var(--comet-warning);
    background: rgba(255, 107, 53, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hqpage-terms-article-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    color: var(--orbit-light);
    flex: 1;
    min-width: 200px;
}

.hqpage-terms-article-body {
    color: var(--space-text);
    line-height: 1.7;
}

.hqpage-terms-article-body p {
    margin-bottom: 1.5rem;
}

.hqpage-terms-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hqpage-terms-contact a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    color: var(--comet-warning);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.hqpage-terms-contact a:hover {
    color: var(--galaxy-highlight);
}

.hqpage-terms-contact i {
    font-size: 1.5rem;
}

.hqpage-terms-acknowledgment {
    padding: 4rem 2rem;
    background: var(--void-dark);
    text-align: center;
}

.hqpage-terms-acknowledgment-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--nebula-secondary);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--comet-warning);
}

.hqpage-terms-acknowledgment-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: var(--orbit-light);
    margin-bottom: 2rem;
}

.hqpage-terms-acknowledgment-content p {
    color: var(--space-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .hqpage-terms-hero {
        padding: 4rem 1.5rem;
    }
    
    .hqpage-terms-hero h1 {
        font-size: 2.8rem;
    }
    
    .hqpage-terms-content {
        padding: 4rem 1.5rem;
    }
    
    .hqpage-terms-grid {
        gap: 2rem;
    }
    
    .hqpage-terms-article {
        padding: 2.5rem;
    }
    
    .hqpage-terms-acknowledgment {
        padding: 3rem 1.5rem;
    }
    
    .hqpage-terms-acknowledgment-content {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hqpage-terms-hero h1 {
        font-size: 2.3rem;
    }
    
    .hqpage-terms-subtitle {
        font-size: 1.2rem;
    }
    
    .hqpage-terms-icon {
        font-size: 4rem;
    }
    
    .hqpage-terms-article-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hqpage-terms-article-header h2 {
        min-width: 100%;
    }
    
    .hqpage-terms-acknowledgment-content h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .hqpage-terms-hero {
        padding: 3rem 1rem;
    }
    
    .hqpage-terms-hero h1 {
        font-size: 1.8rem;
    }
    
    .hqpage-terms-subtitle {
        font-size: 1rem;
    }
    
    .hqpage-terms-icon {
        font-size: 3.5rem;
    }
    
    .hqpage-terms-content {
        padding: 3rem 0.3rem;
    }
    
    .hqpage-terms-article {
        padding: 2rem;
        min-width: 100%;
    }
    
    .hqpage-terms-article-header h2 {
        font-size: 1.5rem;
    }
    
    .hqpage-terms-article-body p {
        font-size: 0.95rem;
    }
    
    .hqpage-terms-contact a {
        font-size: 0.9rem;
    }
    
    .hqpage-terms-acknowledgment {
        padding: 2rem 0.3rem;
    }
    
    .hqpage-terms-acknowledgment-content {
        padding: 2rem;
    }
    
    .hqpage-terms-acknowledgment-content h3 {
        font-size: 1.5rem;
    }
    
    .hqpage-terms-acknowledgment-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 320px) {
    .hqpage-terms-hero {
        padding: 2rem 0.3rem;
    }
    
    .hqpage-terms-hero h1 {
        font-size: 1.6rem;
    }
    
    .hqpage-terms-article {
        padding: 1.5rem;
    }
    
    .hqpage-terms-article-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

.hqpage-responsible-container {
    margin: 0 auto;
}

.hqpage-responsible-hero {
    padding: 6rem 2rem;
    background: var(--void-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hqpage-responsible-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(123, 44, 191, 0.1) 0%, transparent 50%);
}

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

.hqpage-responsible-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    background: var(--pulsar-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hqpage-responsible-subtitle {
    font-size: 1.4rem;
    color: var(--orbit-light);
    margin-bottom: 3rem;
    font-weight: 500;
}

.hqpage-responsible-icon {
    font-size: 5rem;
    color: var(--stellar-accent);
    animation: responsibleHand 3s infinite;
}

@keyframes responsibleHand {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.hqpage-responsible-content {
    padding: 6rem 2rem;
    background: var(--cosmic-primary);
}

.hqpage-responsible-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.hqpage-responsible-article {
    flex: 1;
    min-width: 300px;
    background: var(--nebula-secondary);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hqpage-responsible-article:hover {
    border-color: var(--stellar-accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.hqpage-responsible-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--stellar-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.hqpage-responsible-article:hover::before {
    transform: scaleX(1);
}

.hqpage-responsible-article-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hqpage-responsible-article-icon {
    font-size: 2.5rem;
    color: var(--stellar-accent);
    background: rgba(0, 212, 255, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hqpage-responsible-article-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    color: var(--orbit-light);
    flex: 1;
    min-width: 200px;
}

.hqpage-responsible-article-body {
    color: var(--space-text);
    line-height: 1.7;
}

.hqpage-responsible-article-body p {
    margin-bottom: 1.5rem;
}

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

.hqpage-responsible-contact a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    color: var(--stellar-accent);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.hqpage-responsible-contact a:hover {
    color: var(--galaxy-highlight);
}

.hqpage-responsible-contact i {
    font-size: 1.5rem;
}

.hqpage-responsible-commitment {
    padding: 4rem 2rem;
    background: var(--void-dark);
    text-align: center;
}

.hqpage-responsible-commitment-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--nebula-secondary);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--stellar-accent);
}

.hqpage-responsible-commitment-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: var(--orbit-light);
    margin-bottom: 2rem;
}

.hqpage-responsible-commitment-content p {
    color: var(--space-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .hqpage-responsible-hero {
        padding: 4rem 1.5rem;
    }
    
    .hqpage-responsible-hero h1 {
        font-size: 2.8rem;
    }
    
    .hqpage-responsible-content {
        padding: 4rem 1.5rem;
    }
    
    .hqpage-responsible-grid {
        gap: 2rem;
    }
    
    .hqpage-responsible-article {
        padding: 2.5rem;
    }
    
    .hqpage-responsible-commitment {
        padding: 3rem 1.5rem;
    }
    
    .hqpage-responsible-commitment-content {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hqpage-responsible-hero h1 {
        font-size: 2.3rem;
    }
    
    .hqpage-responsible-subtitle {
        font-size: 1.2rem;
    }
    
    .hqpage-responsible-icon {
        font-size: 4rem;
    }
    
    .hqpage-responsible-article-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hqpage-responsible-article-header h2 {
        min-width: 100%;
    }
    
    .hqpage-responsible-contact {
        flex-direction: column;
    }
    
    .hqpage-responsible-commitment-content h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .hqpage-responsible-hero {
        padding: 3rem 1rem;
    }
    
    .hqpage-responsible-hero h1 {
        font-size: 1.8rem;
    }
    
    .hqpage-responsible-subtitle {
        font-size: 1rem;
    }
    
    .hqpage-responsible-icon {
        font-size: 3.5rem;
    }
    
    .hqpage-responsible-content {
        padding: 3rem 0.3rem;
    }
    
    .hqpage-responsible-article {
        padding: 2rem;
        min-width: 100%;
    }
    
    .hqpage-responsible-article-header h2 {
        font-size: 1.5rem;
    }
    
    .hqpage-responsible-article-body p {
        font-size: 0.95rem;
    }
    
    .hqpage-responsible-contact a {
        font-size: 0.9rem;
    }
    
    .hqpage-responsible-commitment {
        padding: 2rem 0.3rem;
    }
    
    .hqpage-responsible-commitment-content {
        padding: 2rem;
    }
    
    .hqpage-responsible-commitment-content h3 {
        font-size: 1.5rem;
    }
    
    .hqpage-responsible-commitment-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 320px) {
    .hqpage-responsible-hero {
        padding: 2rem 0.3rem;
    }
    
    .hqpage-responsible-hero h1 {
        font-size: 1.6rem;
    }
    
    .hqpage-responsible-article {
        padding: 1.5rem;
    }
    
    .hqpage-responsible-article-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}