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

:root {
    --qe-color-deep-space: #0b121e;
    --qe-color-nebula-blue: #1a2b4a;
    --qe-color-stellar-purple: #3d2b5c;
    --qe-color-quasar-pink: #8a2b7a;
    --qe-color-nova-cyan: #00d4ff;
    --qe-color-white: #ffffff;
    --qe-color-gray-light: #a0aec0;
    --qe-color-gray-dark: #2d3748;
    --qe-shadow-glowing: 0 0 20px rgba(0, 212, 255, 0.3);
    --qe-shadow-elevated: 0 10px 30px rgba(0, 0, 0, 0.5);
    --qe-transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter Tight', sans-serif;
    background: var(--qe-color-deep-space);
    color: var(--qe-color-white);
    position: relative;
    min-height: 100vh;
}

.qe-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/qe-engine/qe-image/cosmic-background.webp') center/cover no-repeat;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

.qe-progress-navigator {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1000;
    background: var(--qe-color-nebula-blue);
    border-radius: 2rem;
    padding: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--qe-shadow-glowing);
    border: 1px solid var(--qe-color-nova-cyan);
    transition: var(--qe-transition-smooth);
}

.qe-progress-navigator__percentage {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    min-width: 2.5rem;
    text-align: center;
    color: var(--qe-color-nova-cyan);
}

.qe-progress-navigator__up,
.qe-progress-navigator__down {
    background: transparent;
    border: none;
    color: var(--qe-color-white);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--qe-transition-smooth);
    font-size: 1.25rem;
}

.qe-progress-navigator__up:hover,
.qe-progress-navigator__down:hover {
    background: var(--qe-color-stellar-purple);
    transform: scale(1.1);
}

.qe-top {
    background: rgba(11, 18, 30, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--qe-color-nebula-blue);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.5rem 0;
}

.qe-top__disclaimer {
    background: linear-gradient(90deg, var(--qe-color-quasar-pink), var(--qe-color-stellar-purple));
    padding: 0.5rem 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    text-align: center;
}

.qe-top__disclaimer i {
    font-size: 1rem;
    color: var(--qe-color-nova-cyan);
}

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

.qe-top__logo-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--qe-color-white);
    transition: var(--qe-transition-smooth);
}

.qe-top__logo-link:hover {
    transform: translateY(-2px);
}

.qe-top__logo-image {
    width: 100%;
    max-width: 80px;
    height: 100%;
    max-height: 80px;
    border-radius: 12px;
}

.qe-top__logo-text {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    background: linear-gradient(90deg, var(--qe-color-nova-cyan), var(--qe-color-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.qe-top__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.qe-top__nav-link {
    color: var(--qe-color-gray-light);
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--qe-transition-smooth);
}

.qe-top__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--qe-color-nova-cyan);
    transition: width 0.3s ease;
}

.qe-top__nav-link:hover {
    color: var(--qe-color-white);
}

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

.qe-top__menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--qe-color-white);
    font-size: 1.75rem;
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    border-radius: 8px;
    transition: var(--qe-transition-smooth);
}

.qe-top__menu-toggle:hover {
    background: var(--qe-color-nebula-blue);
}

.qe-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    overflow-x: hidden;
}

.qe-content__welcome {
    margin-bottom: 4rem;
    animation: qe-pulse-glow 4s ease-in-out infinite;
}

@keyframes qe-pulse-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.qe-content__welcome-inner {
    background: linear-gradient(135deg, var(--qe-color-nebula-blue), var(--qe-color-stellar-purple));
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--qe-shadow-elevated);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.qe-content__welcome h1 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--qe-color-white), var(--qe-color-nova-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.qe-content__welcome-subtitle {
    font-size: 1.25rem;
    color: var(--qe-color-gray-light);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.qe-content__welcome-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.qe-content__welcome-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    border: 1px solid rgba(138, 43, 122, 0.3);
    transition: var(--qe-transition-smooth);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.qe-content__welcome-card:hover {
    transform: translateY(-8px);
    border-color: var(--qe-color-quasar-pink);
    box-shadow: var(--qe-shadow-glowing);
}

.qe-content__welcome-card i {
    font-size: 2.5rem;
    color: var(--qe-color-nova-cyan);
    margin-bottom: 1rem;
}

.qe-content__welcome-card p {
    margin-bottom: 1.5rem;
    min-height: 4rem;
    color: var(--qe-color-gray-light);
}

.qe-content__welcome-card-link {
    background: linear-gradient(90deg, var(--qe-color-quasar-pink), var(--qe-color-stellar-purple));
    color: var(--qe-color-white);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    transition: var(--qe-transition-smooth);
    margin-top: auto;
}

.qe-content__welcome-card-link:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(138, 43, 122, 0.4);
}

.qe-content__games {
    margin-bottom: 4rem;
}

.qe-content__games h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--qe-color-white);
}

.qe-content__games-description {
    text-align: center;
    color: var(--qe-color-gray-light);
    margin-bottom: 3rem;
    font-size: 1.125rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.qe-content__games-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.qe-content__games-item {
    background: var(--qe-color-nebula-blue);
    border-radius: 20px;
    overflow: hidden;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    min-height: fit-content;
    transition: var(--qe-transition-smooth);
    position: relative;
    border: 1px solid transparent;
}

.qe-content__games-item:hover {
    transform: translateY(-10px);
    border-color: var(--qe-color-nova-cyan);
    box-shadow: var(--qe-shadow-glowing);
}

.qe-content__games-item-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--qe-color-quasar-pink);
    color: var(--qe-color-white);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-family: 'Sora', sans-serif;
    z-index: 1;
}

.qe-content__games-item-image {
    width: 100%;
    max-width: 350px;
    height: 100%;
    max-height: 200px;
}

.qe-content__games-item h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    padding: 1rem 1rem 0.5rem;
    color: var(--qe-color-white);
}

.qe-content__games-item-link {
    display: block;
    background: rgba(0, 212, 255, 0.1);
    color: var(--qe-color-nova-cyan);
    text-decoration: none;
    padding: 0.75rem;
    text-align: center;
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    transition: var(--qe-transition-smooth);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.qe-content__games-item-link:hover {
    background: rgba(0, 212, 255, 0.2);
}

.qe-content__about {
    margin-bottom: 4rem;
}

.qe-content__about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.qe-content__about-container--reverse {
    flex-direction: row;
}

.qe-content__about-text {
    flex: 1;
    min-width: 270px;
}

.qe-content__about-text h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--qe-color-white);
}

.qe-content__about-text h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--qe-color-white);
}

.qe-content__about-text p {
    color: var(--qe-color-gray-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.125rem;
}

.qe-content__about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.qe-content__about-highlight {
    background: rgba(61, 43, 92, 0.3);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 120px;
}

.qe-content__about-highlight i {
    color: var(--qe-color-nova-cyan);
    font-size: 1.25rem;
}

.qe-content__about-highlight span {
    font-size: 0.875rem;
    color: var(--qe-color-gray-light);
}

.qe-content__about-link {
    display: inline-block;
    background: linear-gradient(90deg, var(--qe-color-nova-cyan), var(--qe-color-stellar-purple));
    color: var(--qe-color-white);
    text-decoration: none;
    padding: 0.875rem 2rem;
    border-radius: 2rem;
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    transition: var(--qe-transition-smooth);
}

.qe-content__about-link:hover {
    transform: scale(1.05);
    box-shadow: var(--qe-shadow-glowing);
}

.qe-content__about-visual {
    flex: 1;
    min-width: 270px;
}

.qe-content__about-image {
    width: 100%;
    max-width: 400px;
    height: 100%;
    max-height: 300px;
    border-radius: 20px;
    box-shadow: var(--qe-shadow-elevated);
}

.qe-content__features {
    margin-bottom: 4rem;
}

.qe-content__features h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 2.1rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--qe-color-white);
}

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

.qe-content__features-item {
    background: linear-gradient(135deg, var(--qe-color-nebula-blue), var(--qe-color-stellar-purple));
    border-radius: 20px;
    padding: 2rem;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: var(--qe-transition-smooth);
    text-align: center;
}

.qe-content__features-item:hover {
    transform: translateY(-8px) rotateX(5deg);
    border-color: var(--qe-color-nova-cyan);
    box-shadow: var(--qe-shadow-glowing);
}

.qe-content__features-item i {
    font-size: 3rem;
    color: var(--qe-color-nova-cyan);
    margin-bottom: 1.5rem;
}

.qe-content__features-item h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--qe-color-white);
}

.qe-content__features-item p {
    color: var(--qe-color-gray-light);
    line-height: 1.6;
}

.qe-content__subscribe {
    margin-bottom: 4rem;
}

.qe-content__subscribe-container {
    background: linear-gradient(135deg, var(--qe-color-stellar-purple), var(--qe-color-quasar-pink));
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--qe-shadow-elevated);
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.qe-content__subscribe-info {
    flex: 1;
    min-width: 270px;
}

.qe-content__subscribe-info h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--qe-color-white);
}

.qe-content__subscribe-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.qe-content__subscribe-benefits p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--qe-color-white);
}

.qe-content__subscribe-benefits i {
    color: var(--qe-color-nova-cyan);
}

.qe-content__subscribe-form-container {
    flex: 1;
    min-width: 250px;
}

.qe-content__subscribe-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.qe-content__subscribe-form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.qe-content__subscribe-form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1rem;
    color: var(--qe-color-white);
    font-family: 'Inter Tight', sans-serif;
    transition: var(--qe-transition-smooth);
}

.qe-content__subscribe-form-group input:focus {
    outline: none;
    border-color: var(--qe-color-nova-cyan);
    background: rgba(255, 255, 255, 0.15);
}

.qe-content__subscribe-form-group label {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--qe-color-gray-light);
    pointer-events: none;
    transition: var(--qe-transition-smooth);
    background: transparent;
    padding: 0 0.25rem;
}

.qe-content__subscribe-form-group input:focus + label,
.qe-content__subscribe-form-group input:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-50%) scale(0.9);
    color: var(--qe-color-nova-cyan);
    background: var(--qe-color-stellar-purple);
}

.qe-content__subscribe-form-error {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 1.25rem;
    display: none;
}

.qe-content__subscribe-form-checkbox {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.75rem;
    position: relative;
}

.qe-content__subscribe-form-checkbox input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.25rem;
    cursor: pointer;
}

.qe-content__subscribe-form-checkbox label {
    flex: 1;
    color: var(--qe-color-white);
    font-size: 0.875rem;
    line-height: 1.4;
    cursor: pointer;
}

.qe-content__subscribe-form-checkbox a {
    color: var(--qe-color-nova-cyan);
    text-decoration: none;
}

.qe-content__subscribe-form-checkbox a:hover {
    text-decoration: underline;
}

.qe-content__subscribe-form-submit {
    width: 100%;
    background: linear-gradient(90deg, var(--qe-color-nova-cyan), var(--qe-color-white));
    color: var(--qe-color-deep-space);
    border: none;
    border-radius: 2rem;
    padding: 1rem;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--qe-transition-smooth);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.qe-content__subscribe-form-submit:hover:not(:disabled) {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.qe-content__subscribe-form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.qe-content__subscribe-success {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    text-align: center;
}

.qe-content__subscribe-success i {
    font-size: 3rem;
    color: var(--qe-color-nova-cyan);
    margin-bottom: 1rem;
}

.qe-content__subscribe-success h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--qe-color-white);
}

.qe-content__subscribe-success p {
    color: var(--qe-color-gray-light);
    margin-bottom: 1.5rem;
}

.qe-content__subscribe-success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.qe-content__subscribe-success-unsubscribe,
.qe-content__subscribe-success-change {
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    border: 1px solid var(--qe-color-nova-cyan);
    background: transparent;
    color: var(--qe-color-nova-cyan);
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: var(--qe-transition-smooth);
}

.qe-content__subscribe-success-unsubscribe:hover,
.qe-content__subscribe-success-change:hover {
    background: var(--qe-color-nova-cyan);
    color: var(--qe-color-deep-space);
}

.qe-content__subscribe-decoration {
    flex: 0 0 100%;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.qe-content__subscribe-animation {
    width: 100%;
    height: 200px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 212, 255, 0.1), 
        transparent);
    animation: qe-shimmer 3s infinite;
}

@keyframes qe-shimmer {
    0% { transform: translateY(-100%); }
    100% { transform: translatY(100%); }
}

.qe-content__faq {
    margin-bottom: 4rem;
}

.qe-content__faq h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--qe-color-white);
}

.qe-content__faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.qe-content__faq-column {
    flex: 1;
    min-width: 270px;
    max-width: 500px;
}

.qe-content__faq-column h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--qe-color-white);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--qe-color-nova-cyan);
}

.qe-content__faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--qe-transition-smooth);
}

.qe-content__faq-item:hover {
    border-color: var(--qe-color-nova-cyan);
}

.qe-content__faq-question {
    width: 100%;
    background: rgba(61, 43, 92, 0.3);
    border: none;
    padding: 1rem 0.5rem;
    text-align: left;
    color: var(--qe-color-white);
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    transition: var(--qe-transition-smooth);
    min-height: 3.5rem;
}

.qe-content__faq-question:hover {
    background: rgba(61, 43, 92, 0.5);
}

.qe-content__faq-question i {
    transition: transform 0.3s ease;
}

.qe-content__faq-question.active i {
    transform: rotate(180deg);
}

.qe-content__faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(26, 43, 74, 0.5);
}

.qe-content__faq-answer p {
    padding: 1.5rem;
    color: var(--qe-color-gray-light);
    line-height: 1.6;
}

.qe-content__faq-answer.active {
    max-height: 300px;
    padding: 0;
}

.qe-content__faq-contact {
    display: block;
    text-align: center;
    margin-top: 3rem;
    color: var(--qe-color-nova-cyan);
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    transition: var(--qe-transition-smooth);
}

.qe-content__faq-contact:hover {
    transform: translateY(-2px);
    text-decoration: underline;
}

.qe-content__reviews {
    margin-bottom: 4rem;
}

.qe-content__reviews h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--qe-color-white);
}

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

.qe-content__reviews-card {
    background: linear-gradient(135deg, var(--qe-color-nebula-blue), var(--qe-color-stellar-purple));
    border-radius: 20px;
    padding: 1.5rem;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    border: 1px solid rgba(138, 43, 122, 0.3);
    transition: var(--qe-transition-smooth);
}

.qe-content__reviews-card:hover {
    transform: translateY(-8px);
    border-color: var(--qe-color-quasar-pink);
    box-shadow: var(--qe-shadow-glowing);
}

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

.qe-content__reviews-card-avatar {
    width: 100%;
    max-width: 60px;
    height: 100%;
    max-height: 60px;
    border-radius: 50%;
    border: 2px solid var(--qe-color-nova-cyan);
}

.qe-content__reviews-card-info {
    flex: 1;
}

.qe-content__reviews-card-name {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    color: var(--qe-color-white);
    display: block;
    margin-bottom: 0.25rem;
}

.qe-content__reviews-card-rating {
    display: flex;
    flex-wrap: wrap;
    gap: 0.125rem;
}

.qe-content__reviews-card-rating i {
    color: #FFD700;
    font-size: 1rem;
}

.qe-content__reviews-card-header i:last-child {
    color: var(--qe-color-nova-cyan);
    font-size: 1.5rem;
    opacity: 0.7;
}

.qe-content__reviews-card-text {
    color: var(--qe-color-gray-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    min-height: 4rem;
    font-style: italic;
}

.qe-content__reviews-card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    color: var(--qe-color-gray-light);
    font-size: 0.875rem;
}

.qe-content__feedback {
    margin-bottom: 4rem;
    position: relative;
}

.qe-content__feedback-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: qe-pulse 4s ease-in-out infinite;
}

@keyframes qe-pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.05); }
}

.qe-content__feedback-container {
    background: rgba(11, 18, 30, 0.9);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--qe-color-nova-cyan);
    box-shadow: var(--qe-shadow-glowing);
    position: relative;
    z-index: 1;
}

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

.qe-content__feedback-intro h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--qe-color-white);
}

.qe-content__feedback-intro p {
    color: var(--qe-color-gray-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
}

.qe-content__feedback-form {
    margin-bottom: 3rem;
}

.qe-content__feedback-form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.qe-content__feedback-form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--qe-color-nova-cyan);
    font-size: 1.25rem;
    z-index: 1;
}

.qe-content__feedback-form-group input,
.qe-content__feedback-form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1rem 1rem 1rem 3.5rem;
    font-size: 1rem;
    color: var(--qe-color-white);
    font-family: 'Inter Tight', sans-serif;
    transition: var(--qe-transition-smooth);
    min-height: 3.5rem;
}

.qe-content__feedback-form-group textarea {
    min-height: 120px;
    resize: vertical;
    padding-top: 1rem;
}

.qe-content__feedback-form-group input:focus,
.qe-content__feedback-form-group textarea:focus {
    outline: none;
    border-color: var(--qe-color-nova-cyan);
    background: rgba(255, 255, 255, 0.1);
}

.qe-content__feedback-form-group label {
    position: absolute;
    left: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--qe-color-gray-light);
    pointer-events: none;
    transition: var(--qe-transition-smooth);
    background: transparent;
    padding: 0 0.25rem;
}

.qe-content__feedback-form-group textarea + label {
    top: 1rem;
    transform: none;
}

.qe-content__feedback-form-group input:focus + label,
.qe-content__feedback-form-group input:not(:placeholder-shown) + label,
.qe-content__feedback-form-group textarea:focus + label,
.qe-content__feedback-form-group textarea:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-50%) scale(0.9);
    color: var(--qe-color-nova-cyan);
    background: var(--qe-color-deep-space);
}

.qe-content__feedback-form-error {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 1.25rem;
    display: none;
}

.qe-content__feedback-form-checkbox {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.75rem;
    position: relative;
}

.qe-content__feedback-form-checkbox input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.25rem;
    cursor: pointer;
}

.qe-content__feedback-form-checkbox label {
    flex: 1;
    color: var(--qe-color-white);
    font-size: 0.875rem;
    line-height: 1.4;
    cursor: pointer;
}

.qe-content__feedback-form-checkbox a {
    color: var(--qe-color-nova-cyan);
    text-decoration: none;
}

.qe-content__feedback-form-checkbox a:hover {
    text-decoration: underline;
}

.qe-content__feedback-form-submit {
    width: 100%;
    background: linear-gradient(90deg, var(--qe-color-nova-cyan), var(--qe-color-quasar-pink));
    color: var(--qe-color-white);
    border: none;
    border-radius: 2rem;
    padding: 1rem;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--qe-transition-smooth);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.qe-content__feedback-form-submit:hover:not(:disabled) {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.qe-content__feedback-form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.qe-content__feedback-info {
    background: rgba(61, 43, 92, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.qe-content__feedback-info h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--qe-color-white);
}

.qe-content__feedback-info p {
    color: var(--qe-color-gray-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.qe-content__feedback-info p i {
    color: var(--qe-color-nova-cyan);
    margin-right: 0.5rem;
}

.qe-content__feedback-responsible {
    background: rgba(26, 43, 74, 0.5);
    border-radius: 16px;
    padding: 1.5rem;
    border-left: 4px solid var(--qe-color-nova-cyan);
}

.qe-content__feedback-responsible h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--qe-color-white);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.qe-content__feedback-responsible h3 i {
    color: var(--qe-color-nova-cyan);
}

.qe-content__feedback-responsible p {
    color: var(--qe-color-gray-light);
    line-height: 1.6;
}

.qe-content__responsible {
    margin-bottom: 4rem;
}

.qe-content__responsible h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--qe-color-white);
}

.qe-content__responsible-content {
    background: rgba(26, 43, 74, 0.5);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.qe-content__responsible-content p {
    color: var(--qe-color-gray-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.125rem;
}

.qe-content__responsible-content a {
    color: var(--qe-color-nova-cyan);
    text-decoration: none;
}

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

.qe-content__responsible-link {
    display: inline-block;
    background: transparent;
    color: var(--qe-color-nova-cyan);
    border: 1px solid var(--qe-color-nova-cyan);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    transition: var(--qe-transition-smooth);
}

.qe-content__responsible-link:hover {
    background: var(--qe-color-nova-cyan);
    color: var(--qe-color-deep-space);
}

.qe-content__responsible-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.qe-content__responsible-partner {
    background: rgba(255, 255, 255, 0.219);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    transition: var(--qe-transition-smooth);
    border: 1px solid transparent;
}

.qe-content__responsible-partner:hover {
    border-color: var(--qe-color-nova-cyan);
    transform: translateY(-4px);
}

.qe-content__responsible-age {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--qe-color-white);
    background: var(--qe-color-quasar-pink);
    width: 60px;
    height: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.qe-content__responsible-partner img {
    width: 120px;
    height: 60px;
    object-fit: contain;
}

.qe-bottom {
    background: rgba(11, 18, 30, 0.95);
    border-top: 1px solid var(--qe-color-nebula-blue);
    padding: 2rem 0;
    backdrop-filter: blur(10px);
}

.qe-bottom__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.qe-bottom__main {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.qe-bottom__logo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--qe-color-white);
    transition: var(--qe-transition-smooth);
}

.qe-bottom__logo:hover {
    transform: translateY(-2px);
}

.qe-bottom__logo-image {
    width: 100%;
    max-width: 60px;
    height: 100%;
    max-height: 60px;
    border-radius: 12px;
}

.qe-bottom__logo-text {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    background: linear-gradient(90deg, var(--qe-color-nova-cyan), var(--qe-color-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.qe-bottom__links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.qe-bottom__links-column {
    flex: 1;
    min-width: 150px;
}

.qe-bottom__links-column h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--qe-color-white);
}

.qe-bottom__link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    color: var(--qe-color-gray-light);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    transition: var(--qe-transition-smooth);
}

.qe-bottom__link:hover {
    color: var(--qe-color-nova-cyan);
    transform: translateX(4px);
}

.qe-bottom__link i {
    font-size: 1rem;
}

.qe-bottom__contact {
    flex: 1;
    min-width: 200px;
}

.qe-bottom__contact h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--qe-color-white);
}

.qe-bottom__contact-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    color: var(--qe-color-gray-light);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--qe-transition-smooth);
}

.qe-bottom__contact-link:hover {
    color: var(--qe-color-nova-cyan);
}

.qe-bottom__copyright {
    text-align: center;
    color: var(--qe-color-gray-light);
    font-size: 0.875rem;
    padding-top: 1rem;
}

.qe-cookie-notification-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--qe-color-nebula-blue);
    padding: 1rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 1px solid var(--qe-color-nova-cyan);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

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

.qe-cookie-notification-bar__content {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.qe-cookie-notification-bar__content p {
    flex: 1;
    min-width: 270px;
    color: var(--qe-color-white);
    font-size: 0.875rem;
}

.qe-cookie-notification-bar__content a {
    color: var(--qe-color-nova-cyan);
    text-decoration: none;
}

.qe-cookie-notification-bar__content a:hover {
    text-decoration: underline;
}

.qe-cookie-notification-bar__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.qe-cookie-notification-bar__accept,
.qe-cookie-notification-bar__reject {
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    border: none;
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: var(--qe-transition-smooth);
    min-height: 2.5rem;
}

.qe-cookie-notification-bar__accept {
    background: var(--qe-color-nova-cyan);
    color: var(--qe-color-deep-space);
}

.qe-cookie-notification-bar__reject {
    background: transparent;
    color: var(--qe-color-white);
    border: 1px solid var(--qe-color-white);
}

.qe-cookie-notification-bar__accept:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.qe-cookie-notification-bar__reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.qe-age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 18, 30, 0.999);
    z-index: 10001;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.qe-age-confirmation-dialog {
    background: linear-gradient(135deg, var(--qe-color-nebula-blue), var(--qe-color-stellar-purple));
    border-radius: 24px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 1px solid var(--qe-color-nova-cyan);
    box-shadow: var(--qe-shadow-glowing);
    animation: qe-dialog-appear 0.5s ease;
}

@keyframes qe-dialog-appear {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.qe-age-confirmation-dialog h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--qe-color-white);
}

.qe-age-confirmation-dialog p {
    color: var(--qe-color-gray-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.qe-age-confirmation-dialog__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.qe-age-confirmation-dialog__confirm,
.qe-age-confirmation-dialog__decline {
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    border: none;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: var(--qe-transition-smooth);
    min-width: 120px;
}

.qe-age-confirmation-dialog__confirm {
    background: linear-gradient(90deg, var(--qe-color-nova-cyan), var(--qe-color-quasar-pink));
    color: var(--qe-color-white);
}

.qe-age-confirmation-dialog__decline {
    background: transparent;
    color: var(--qe-color-white);
    border: 1px solid var(--qe-color-white);
}

.qe-age-confirmation-dialog__confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.qe-age-confirmation-dialog__decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.qe-contact-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 18, 30, 0.95);
    z-index: 10002;
    display: none;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.qe-contact-form-overlay.active {
    display: flex;
}

.qe-feedback-modal-window {
    background: linear-gradient(135deg, var(--qe-color-stellar-purple), var(--qe-color-quasar-pink));
    border-radius: 24px;
    padding: 3rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    border: 1px solid var(--qe-color-nova-cyan);
    box-shadow: var(--qe-shadow-glowing);
    position: relative;
    animation: qe-modal-appear 0.4s ease;
}

@keyframes qe-modal-appear {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.qe-feedback-modal-window__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--qe-color-white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    transition: var(--qe-transition-smooth);
}

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

.qe-feedback-modal-window__success i {
    font-size: 3rem;
    color: var(--qe-color-nova-cyan);
    margin-bottom: 1rem;
}

.qe-feedback-modal-window__success h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--qe-color-white);
}

.qe-feedback-modal-window__success p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.qe-feedback-modal-window__success-close {
    background: var(--qe-color-nova-cyan);
    color: var(--qe-color-deep-space);
    border: none;
    border-radius: 2rem;
    padding: 0.75rem 2rem;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: var(--qe-transition-smooth);
}

.qe-feedback-modal-window__success-close:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

@media (max-width: 1024px) {
    .qe-content__welcome h1 {
        font-size: 2.5rem;
    }
    
    .qe-content__about-container,
    .qe-content__about-container--reverse {
        gap: 2rem;
    }
    
    .qe-content__subscribe-container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .qe-top__nav {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--qe-color-deep-space);
        padding: 1rem;
        display: none;
        flex-wrap: wrap;
        flex-direction: column;
        gap: 1rem;
        border-top: 1px solid var(--qe-color-nebula-blue);
    }
    
    .qe-top__nav.active {
        display: flex;
        top: calc(100% - 1px);
    }
    
    .qe-top__menu-toggle {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    
    .qe-content__welcome h1 {
        font-size: 2rem;
    }
    
    .qe-content__welcome-subtitle {
        font-size: 1.125rem;
    }
    
    .qe-content__welcome-inner,
    .qe-content__subscribe-container {
        padding: 2rem 0.3rem;
    }
    
    .qe-bottom__links {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .qe-progress-navigator {
        transform: none !important;
    }
    
    .qe-content__welcome h1 {
        font-size: 1.75rem;
    }
    
    .qe-content__welcome-card,
    .qe-content__games-item,
    .qe-content__features-item,
    .qe-content__reviews-card {
        min-width: 100%;
    }
    
    .qe-content__welcome-inner,
    .qe-content__subscribe-container,
    .qe-content__feedback-container,
    .qe-age-confirmation-dialog,
    .qe-feedback-modal-window {
        padding: 0.1rem;
    }
    
    .qe-content__about-highlight {
        min-width: calc(46% - 0.1rem);
    }

    .qe-content__games-item-image {
        max-width: 100%;
    }
    
    .qe-bottom__links-column {
        min-width: 100%;
    }
    
    .qe-cookie-notification-bar__content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .qe-cookie-notification-bar__content p {
        min-width: 100%;
    }
}

@media (max-width: 320px) {
    .qe-content {
        padding: 1rem 0.1rem;
    }
    
    .qe-content__welcome h1 {
        font-size: 1.5rem;
    }
    
    .qe-content__about-highlight {
        min-width: 100%;
    }
    
    .qe-age-confirmation-dialog__actions {
        flex-direction: column;
    }
    
    .qe-age-confirmation-dialog__confirm,
    .qe-age-confirmation-dialog__decline {
        width: 100%;
    }
}

.qepage-privacy {
    background: linear-gradient(135deg, #0b121e, #1a2b4a);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.qepage-privacy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/qe-engine/qe-image/privacy-pattern.webp') center/cover no-repeat;
    opacity: 0.05;
    pointer-events: none;
}

.qepage-privacy__hero {
    background: linear-gradient(135deg, #3d2b5c, #1a2b4a);
    padding: 4rem 1rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.qepage-privacy__hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    animation: qepage-shimmer 8s infinite;
}

@keyframes qepage-shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.qepage-privacy__hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.qepage-privacy h1 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.qepage-privacy__hero-subtitle {
    font-size: 1.25rem;
    color: #a0aec0;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

.qepage-privacy__hero-decoration {
    margin-top: 2rem;
    animation: qepage-float 6s ease-in-out infinite;
}

.qepage-privacy__hero-decoration i {
    font-size: 4rem;
    color: #00d4ff;
    opacity: 0.8;
}

@keyframes qepage-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.qepage-privacy__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
    position: relative;
}

.qepage-privacy__container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 3rem;
}

.qepage-privacy__intro {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
}

.qepage-privacy__intro p {
    flex: 1;
    min-width: 300px;
    color: #a0aec0;
    font-size: 1.125rem;
    line-height: 1.8;
}

.qepage-privacy__last-update {
    background: rgba(61, 43, 92, 0.5);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    color: #00d4ff;
    font-family: 'Sora', sans-serif;
    font-weight: 400;
}

.qepage-privacy__last-update i {
    font-size: 1.25rem;
}

.qepage-privacy__sections {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.qepage-privacy__section {
    background: linear-gradient(135deg, rgba(26, 43, 74, 0.8), rgba(61, 43, 92, 0.8));
    border-radius: 20px;
    overflow: hidden;
    flex: 1;
    min-width: 300px;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.qepage-privacy__section:hover {
    transform: translateY(-8px);
    border-color: #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.qepage-privacy__section-header {
    background: linear-gradient(90deg, #8a2b7a, #3d2b5c);
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

.qepage-privacy__section-header i {
    font-size: 2rem;
    color: #00d4ff;
}

.qepage-privacy__section-header h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: #ffffff;
    flex: 1;
}

.qepage-privacy__section-content {
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.qepage-privacy__section-content p {
    color: #a0aec0;
    line-height: 1.7;
    font-size: 1rem;
}

.qepage-privacy__contact-request {
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid #00d4ff;
}

.qepage-privacy__contact-request i {
    font-size: 1.5rem;
    color: #00d4ff;
}

.qepage-privacy__contact-request p {
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.qepage-privacy__contact-request a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 500;
}

.qepage-privacy__contact-request a:hover {
    text-decoration: underline;
}

.qepage-privacy__update-notice {
    background: rgba(138, 43, 122, 0.1);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(138, 43, 122, 0.3);
}

.qepage-privacy__update-notice i {
    font-size: 1.25rem;
    color: #8a2b7a;
}

.qepage-privacy__update-notice span {
    color: #a0aec0;
    font-size: 0.875rem;
}

.qepage-privacy__contact {
    background: linear-gradient(135deg, #1a2b4a, #0b121e);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.3);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.qepage-privacy__contact h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.75rem;
    color: #ffffff;
    margin: 0;
}

.qepage-privacy__contact p {
    color: #a0aec0;
    max-width: 600px;
    line-height: 1.6;
    margin: 0;
}

.qepage-privacy__contact-details {
    margin-top: 1rem;
}

.qepage-privacy__contact-email {
    background: linear-gradient(90deg, #00d4ff, #3d2b5c);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.qepage-privacy__contact-email:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.qepage-privacy__contact-email i {
    font-size: 1.25rem;
}

@media (max-width: 1024px) {
    .qepage-privacy h1 {
        font-size: 2.5rem;
    }
    
    .qepage-privacy__hero {
        padding: 3rem 1rem;
    }
    
    .qepage-privacy__content {
        padding: 3rem 1rem;
    }
}

@media (max-width: 768px) {
    .qepage-privacy h1 {
        font-size: 2rem;
    }
    
    .qepage-privacy__hero-subtitle {
        font-size: 1.125rem;
    }
    
    .qepage-privacy__intro {
        flex-direction: column;
    }
    
    .qepage-privacy__intro p {
        min-width: 100%;
    }
    
    .qepage-privacy__section {
        min-width: 100%;
    }
    
    .qepage-privacy__contact {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .qepage-privacy h1 {
        font-size: 1.75rem;
    }
    
    .qepage-privacy__hero {
        padding: 2rem 0.3rem;
    }
    
    .qepage-privacy__content {
        padding: 2rem 0.3rem;
    }
    
    .qepage-privacy__intro,
    .qepage-privacy__section,
    .qepage-privacy__contact {
        padding: 1.5rem 0.5rem;
    }
    
    .qepage-privacy__contact-email {
        font-size: 0.85rem;
        padding: 0.75rem 1.5rem;
    }
    
    .qepage-privacy__section-header {
        padding: 1rem 0.5rem;
    }
    
    .qepage-privacy__section-header h2 {
        font-size: 1.25rem;
    }
    
    .qepage-privacy__section-content {
        padding: 1.5rem 0.5rem;
    }
}

@media (max-width: 320px) {
    .qepage-privacy h1 {
        font-size: 1.5rem;
    }
    
    .qepage-privacy__hero-subtitle {
        font-size: 1rem;
    }
    
    .qepage-privacy__contact-email {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

.qepage-terms {
    background: linear-gradient(135deg, #0f1729, #1e2b4a);
    min-height: 100vh;
    position: relative;
}

.qepage-terms::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(61, 43, 92, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(138, 43, 122, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.qepage-terms__header {
    background: linear-gradient(135deg, #2d1b47, #1a2b4a);
    padding: 4rem 1rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.qepage-terms__header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(0, 212, 255, 0.05) 10px,
            rgba(0, 212, 255, 0.05) 20px
        );
    animation: qepage-terms-shift 20s linear infinite;
}

@keyframes qepage-terms-shift {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

.qepage-terms__header-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.qepage-terms h1 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 3rem;
    margin: 0;
    background: linear-gradient(90deg, #ffffff, #8a2b7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.qepage-terms__header-subtitle {
    font-size: 1.25rem;
    color: #a0aec0;
    max-width: 600px;
    line-height: 1.6;
    margin: 0;
}

.qepage-terms__header-visual {
    margin-top: 1rem;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.qepage-terms__header-visual i {
    font-size: 5rem;
    color: #00d4ff;
    position: relative;
    z-index: 2;
    animation: qepage-terms-pulse 4s ease-in-out infinite;
}

@keyframes qepage-terms-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.1);
        opacity: 1;
    }
}

.qepage-terms__header-animation {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.3);
    animation: qepage-terms-rotate 10s linear infinite;
}

@keyframes qepage-terms-rotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.qepage-terms__notice {
    background: linear-gradient(90deg, #3d2b5c, #2d1b47);
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.qepage-terms__notice-container {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
}

.qepage-terms__notice-container i {
    font-size: 2rem;
    color: #00d4ff;
    flex-shrink: 0;
}

.qepage-terms__notice-container p {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.6;
    flex: 1;
}

.qepage-terms__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
    position: relative;
    z-index: 1;
}

.qepage-terms__container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 3rem;
}

.qepage-terms__sections {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.qepage-terms__section {
    background: linear-gradient(135deg, rgba(26, 43, 74, 0.9), rgba(45, 27, 71, 0.9));
    border-radius: 20px;
    overflow: hidden;
    flex: 1;
    min-width: 300px;
    border: 1px solid rgba(138, 43, 122, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.qepage-terms__section:hover {
    transform: translateY(-5px) rotateX(2deg);
    border-color: #8a2b7a;
    box-shadow: 0 15px 35px rgba(138, 43, 122, 0.2);
}

.qepage-terms__section-title {
    background: linear-gradient(90deg, #1a2b4a, #3d2b5c);
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.qepage-terms__section-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #00d4ff, #8a2b7a);
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qepage-terms__section-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.qepage-terms__section-title h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.qepage-terms__section-body {
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.qepage-terms__section-body p {
    color: #a0aec0;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.qepage-terms__highlight {
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    border-left: 4px solid #00d4ff;
}

.qepage-terms__highlight i {
    font-size: 1.25rem;
    color: #00d4ff;
}

.qepage-terms__highlight span {
    color: #ffffff;
    font-size: 0.875rem;
    flex: 1;
}

.qepage-terms__list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;
}

.qepage-terms__list li {
    color: #a0aec0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.qepage-terms__list i {
    color: #00d4ff;
    font-size: 1.125rem;
}

.qepage-terms__notice-box {
    background: rgba(61, 43, 92, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    border: 1px solid rgba(138, 43, 122, 0.2);
}

.qepage-terms__notice-box p {
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.qepage-terms__warning {
    background: rgba(138, 43, 122, 0.1);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid rgba(138, 43, 122, 0.3);
}

.qepage-terms__warning i {
    font-size: 1.5rem;
    color: #8a2b7a;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.qepage-terms__warning p {
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.qepage-terms__process {
    background: rgba(26, 43, 74, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.qepage-terms__process h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.qepage-terms__process p {
    color: #a0aec0;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.qepage-terms__process a {
    color: #00d4ff;
    text-decoration: none;
}

.qepage-terms__process a:hover {
    text-decoration: underline;
}

.qepage-terms__version {
    background: linear-gradient(90deg, rgba(26, 43, 74, 0.5), rgba(61, 43, 92, 0.5));
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.qepage-terms__version-current,
.qepage-terms__version-check {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
}

.qepage-terms__version-current {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.qepage-terms__version-check {
    background: rgba(138, 43, 122, 0.1);
    border: 1px solid rgba(138, 43, 122, 0.3);
}

.qepage-terms__version-current i {
    color: #00d4ff;
    font-size: 1.25rem;
}

.qepage-terms__version-check i {
    color: #8a2b7a;
    font-size: 1.25rem;
}

.qepage-terms__version-current span,
.qepage-terms__version-check span {
    color: #ffffff;
    font-size: 0.875rem;
}

.qepage-terms__acceptance {
    background: linear-gradient(135deg, #1a2b4a, #0f1729);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 2px solid rgba(0, 212, 255, 0.3);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.qepage-terms__acceptance-content {
    max-width: 600px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.qepage-terms__acceptance h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 2rem;
    color: #ffffff;
    margin: 0;
}

.qepage-terms__acceptance p {
    color: #a0aec0;
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
}

.qepage-terms__acceptance-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.qepage-terms__contact-button,
.qepage-terms__home-button {
    padding: 0.875rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.qepage-terms__contact-button {
    background: linear-gradient(90deg, #00d4ff, #3d2b5c);
    color: #ffffff;
}

.qepage-terms__home-button {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.qepage-terms__contact-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.qepage-terms__home-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .qepage-terms h1 {
        font-size: 2.5rem;
    }
    
    .qepage-terms__header {
        padding: 3rem 1rem;
    }
    
    .qepage-terms__content {
        padding: 3rem 1rem;
    }
    
    .qepage-terms__acceptance {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .qepage-terms h1 {
        font-size: 2rem;
    }
    
    .qepage-terms__header-subtitle {
        font-size: 1.125rem;
    }
    
    .qepage-terms__notice-container {
        flex-direction: column;
        text-align: center;
    }
    
    .qepage-terms__section {
        min-width: 100%;
    }
    
    .qepage-terms__version {
        flex-direction: column;
    }
    
    .qepage-terms__version-current,
    .qepage-terms__version-check {
        min-width: 100%;
    }
    
    .qepage-terms__acceptance-contact {
        flex-direction: column;
    }
    
    .qepage-terms__contact-button,
    .qepage-terms__home-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .qepage-terms h1 {
        font-size: 1.75rem;
    }
    
    .qepage-terms__header {
        padding: 2rem 0.3rem;
    }
    
    .qepage-terms__notice {
        padding: 1rem 0.3rem;
    }
    
    .qepage-terms__notice-container p {
        font-size: 1rem;
    }
    
    .qepage-terms__content {
        padding: 2rem 0.3rem;
    }
    
    .qepage-terms__section-title {
        padding: 1rem 0.5rem;
    }
    
    .qepage-terms__section-title h2 {
        font-size: 1.25rem;
    }
    
    .qepage-terms__section-body {
        padding: 1.5rem 0.5rem;
    }
    
    .qepage-terms__acceptance {
        padding: 1.5rem 0.5rem;
    }
    
    .qepage-terms__acceptance h3 {
        font-size: 1.5rem;
    }
    
    .qepage-terms__acceptance p {
        font-size: 1rem;
    }
    
    .qepage-terms__contact-button,
    .qepage-terms__home-button {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 320px) {
    .qepage-terms h1 {
        font-size: 1.5rem;
    }
    
    .qepage-terms__header-subtitle {
        font-size: 1rem;
    }
    
    .qepage-terms__notice-container i {
        font-size: 1.5rem;
    }
    
    .qepage-terms__section-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .qepage-terms__section-icon i {
        font-size: 1.25rem;
    }
}

.qepage-cookies {
    background: linear-gradient(135deg, #0b121e, #1a2b4a);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.qepage-cookies::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(61, 43, 92, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(138, 43, 122, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.qepage-cookies__header {
    background: linear-gradient(135deg, #3d2b5c, #1a2b4a);
    padding: 4rem 1rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.qepage-cookies__header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 15px,
            rgba(0, 212, 255, 0.05) 15px,
            rgba(0, 212, 255, 0.05) 30px
        );
    animation: qepage-cookies-grid 20s linear infinite;
}

@keyframes qepage-cookies-grid {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.qepage-cookies__header-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.qepage-cookies h1 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 3rem;
    margin: 0;
    background: linear-gradient(90deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.qepage-cookies__header-subtitle {
    font-size: 1.25rem;
    color: #a0aec0;
    max-width: 700px;
    line-height: 1.6;
    margin: 0;
}

.qepage-cookies__header-animation {
    position: relative;
    width: 200px;
    height: 200px;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.qepage-cookies__header-animation i {
    font-size: 5rem;
    color: #00d4ff;
    position: relative;
    z-index: 3;
    animation: qepage-cookies-spin 20s linear infinite;
}

@keyframes qepage-cookies-spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.qepage-cookies__header-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #00d4ff;
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(2px);
}

.qepage-cookies__header-particle--1 {
    top: 20%;
    left: 20%;
    animation: qepage-cookies-particle-1 8s ease-in-out infinite;
}

.qepage-cookies__header-particle--2 {
    top: 60%;
    right: 20%;
    animation: qepage-cookies-particle-2 10s ease-in-out infinite;
}

.qepage-cookies__header-particle--3 {
    bottom: 30%;
    left: 40%;
    animation: qepage-cookies-particle-3 12s ease-in-out infinite;
}

@keyframes qepage-cookies-particle-1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(40px, -20px) scale(1.5); opacity: 0.8; }
}

@keyframes qepage-cookies-particle-2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(-30px, 30px) scale(1.3); opacity: 0.8; }
}

@keyframes qepage-cookies-particle-3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(20px, 40px) scale(1.4); opacity: 0.8; }
}

.qepage-cookies__summary {
    background: linear-gradient(90deg, #2d1b47, #3d2b5c);
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.qepage-cookies__summary-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.qepage-cookies__summary-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.qepage-cookies__summary-box i {
    font-size: 3rem;
    color: #00d4ff;
}

.qepage-cookies__summary-box h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0;
}

.qepage-cookies__summary-box p {
    color: #a0aec0;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.qepage-cookies__summary-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.qepage-cookies__summary-accept,
.qepage-cookies__summary-manage {
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    border: none;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.qepage-cookies__summary-accept {
    background: linear-gradient(90deg, #00d4ff, #3d2b5c);
    color: #ffffff;
}

.qepage-cookies__summary-manage {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.qepage-cookies__summary-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.qepage-cookies__summary-manage:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.qepage-cookies__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
    position: relative;
    z-index: 1;
}

.qepage-cookies__container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 3rem;
}

.qepage-cookies__info {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1rem;
}

.qepage-cookies__info h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 2rem;
    color: #ffffff;
    margin: 0;
}

.qepage-cookies__info p {
    color: #a0aec0;
    line-height: 1.8;
    margin: 0;
    font-size: 1.125rem;
}

.qepage-cookies__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.qepage-cookies__category {
    background: linear-gradient(135deg, rgba(26, 43, 74, 0.9), rgba(45, 27, 71, 0.9));
    border-radius: 20px;
    overflow: hidden;
    flex: 1;
    min-width: 300px;
    border: 1px solid rgba(138, 43, 122, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.qepage-cookies__category:hover {
    transform: translateY(-8px);
    border-color: #8a2b7a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.qepage-cookies__category-header {
    background: linear-gradient(90deg, #1a2b4a, #3d2b5c);
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
}

.qepage-cookies__category-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #00d4ff, #8a2b7a);
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qepage-cookies__category-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.qepage-cookies__category-header h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    color: #ffffff;
    min-height: 75px;
    margin: 0;
    flex: 1;
}

.qepage-cookies__category-status {
    background: #00d4ff;
    color: #0b121e;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.qepage-cookies__category-status--optional {
    background: #8a2b7a;
    color: #ffffff;
}

.qepage-cookies__category-body {
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.qepage-cookies__category-body p {
    color: #a0aec0;
    line-height: 1.7;
    font-size: 0.875rem;
    margin: 0;
}

.qepage-cookies__category-details {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.qepage-cookies__detail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.qepage-cookies__detail i {
    color: #00d4ff;
    font-size: 1.125rem;
}

.qepage-cookies__detail span {
    color: #ffffff;
    font-size: 0.875rem;
    flex: 1;
}

.qepage-cookies__category-note {
    background: rgba(61, 43, 92, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    border-left: 3px solid #8a2b7a;
}

.qepage-cookies__duration {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.qepage-cookies__duration-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.qepage-cookies__duration-label {
    color: #ffffff;
    font-size: 0.875rem;
    width: 100px;
    flex-shrink: 0;
}

.qepage-cookies__duration-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.qepage-cookies__duration-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #8a2b7a);
    border-radius: 4px;
    animation: qepage-cookies-fill 2s ease-out;
}

@keyframes qepage-cookies-fill {
    from { width: 0%; }
    to { width: var(--target-width); }
}

.qepage-cookies__duration-time {
    color: #a0aec0;
    font-size: 0.75rem;
    width: 80px;
    text-align: right;
    flex-shrink: 0;
}

.qepage-cookies__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}

.qepage-cookies__control {
    flex: 1;
    min-width: 200px;
    background: rgba(26, 43, 74, 0.5);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.qepage-cookies__control h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.qepage-cookies__control p {
    color: #a0aec0;
    font-size: 0.75rem;
    line-height: 1.6;
    margin: 0;
}

.qepage-cookies__management-contact {
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid #00d4ff;
}

.qepage-cookies__management-contact i {
    font-size: 1.5rem;
    color: #00d4ff;
    flex-shrink: 0;
}

.qepage-cookies__management-contact p {
    color: #ffffff;
    font-size: 0.875rem;
    margin: 0;
    flex: 1;
}

.qepage-cookies__management-contact a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 500;
}

.qepage-cookies__management-contact a:hover {
    text-decoration: underline;
}

.qepage-cookies__management {
    background: linear-gradient(135deg, #1a2b4a, #0b121e);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 2rem;
}

.qepage-cookies__management h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 2rem;
    color: #ffffff;
    margin: 0;
    text-align: center;
}

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

.qepage-cookies__management-item {
    flex: 1;
    min-width: 250px;
    background: rgba(61, 43, 92, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.qepage-cookies__management-item:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.qepage-cookies__management-item i {
    font-size: 3rem;
    color: #00d4ff;
}

.qepage-cookies__management-item h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    color: #ffffff;
    margin: 0;
}

.qepage-cookies__management-item p {
    color: #a0aec0;
    line-height: 1.6;
    margin: 0;
    font-size: 0.875rem;
    min-height: 90px;
}

.qepage-cookies__management-button {
    background: linear-gradient(90deg, #00d4ff, #3d2b5c);
    color: #ffffff;
    border: none;
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.qepage-cookies__management-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.qepage-cookies__updates {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: stretch;
}

.qepage-cookies__updates-content {
    flex: 2;
    min-width: 250px;
    background: rgba(26, 43, 74, 0.5);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(138, 43, 122, 0.3);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1rem;
}

.qepage-cookies__updates-content i {
    font-size: 3rem;
    color: #8a2b7a;
}

.qepage-cookies__updates-content h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0;
}

.qepage-cookies__updates-content p {
    color: #a0aec0;
    line-height: 1.6;
    margin: 0;
    font-size: 0.875rem;
}

.qepage-cookies__updates-date {
    background: rgba(138, 43, 122, 0.1);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(138, 43, 122, 0.3);
}

.qepage-cookies__updates-date i {
    font-size: 1.25rem;
    color: #8a2b7a;
}

.qepage-cookies__updates-date span {
    color: #ffffff;
    font-size: 0.875rem;
}

.qepage-cookies__contact {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(135deg, #3d2b5c, #2d1b47);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.3);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.qepage-cookies__contact h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0;
}

.qepage-cookies__contact p {
    color: #a0aec0;
    line-height: 1.6;
    margin: 0;
    font-size: 0.875rem;
}

.qepage-cookies__contact-link {
    background: linear-gradient(90deg, #00d4ff, #3d2b5c);
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.qepage-cookies__contact-link:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.qepage-cookies__contact-link i {
    font-size: 1.25rem;
}

.qepage-cookies-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 18, 30, 0.95);
    z-index: 10004;
    display: none;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.qepage-cookies-modal-overlay.active {
    display: flex;
}

.qepage-cookies-modal-window {
    background: linear-gradient(135deg, #3d2b5c, #1a2b4a);
    border-radius: 24px;
    padding: 3rem;
    max-width: 400px;
    width: 90%;
    display: none;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: qepage-cookies-modal-appear 0.4s ease;
}

@keyframes qepage-cookies-modal-appear {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.qepage-cookies-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.qepage-cookies-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.qepage-cookies-modal-content i {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.qepage-cookies-modal-content h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.75rem;
    padding-top: 1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.qepage-cookies-modal-content p {
    color: #a0aec0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.qepage-cookies-modal-button {
    background: linear-gradient(90deg, #00d4ff, #3d2b5c);
    color: #ffffff;
    border: none;
    border-radius: 2rem;
    padding: 0.75rem 2rem;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.qepage-cookies-modal-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

@media (max-width: 1024px) {
    .qepage-cookies h1 {
        font-size: 2.5rem;
    }
    
    .qepage-cookies__header {
        padding: 3rem 1rem;
    }
    
    .qepage-cookies__content {
        padding: 3rem 1rem;
    }
    
    .qepage-cookies__updates {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .qepage-cookies h1 {
        font-size: 2rem;
    }
    
    .qepage-cookies__header-subtitle {
        font-size: 1.125rem;
    }
    
    .qepage-cookies__summary-buttons {
        flex-direction: column;
    }
    
    .qepage-cookies__summary-accept,
    .qepage-cookies__summary-manage {
        width: 100%;
    }
    
    .qepage-cookies__category {
        min-width: 100%;
    }
    
    .qepage-cookies__management-grid {
        flex-direction: column;
    }
    
    .qepage-cookies__management-item {
        min-width: 100%;
    }
    
    .qepage-cookies__controls {
        flex-direction: column;
    }
    
    .qepage-cookies__control {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .qepage-cookies h1 {
        font-size: 1.75rem;
    }
    
    .qepage-cookies__header {
        padding: 2rem 0.3rem;
    }
    
    .qepage-cookies__header-subtitle {
        font-size: 1rem;
    }
    
    .qepage-cookies__header-animation {
        width: 150px;
        height: 150px;
    }
    
    .qepage-cookies__header-animation i {
        font-size: 3rem;
    }
    
    .qepage-cookies__summary {
        padding: 1.5rem 0.3rem;
    }
    
    .qepage-cookies__summary-box {
        padding: 1.5rem 0.5rem;
    }
    
    .qepage-cookies__content {
        padding: 2rem 0.3rem;
    }
    
    .qepage-cookies__info {
        padding: 1.5rem 0.5rem;
    }
    
    .qepage-cookies__info h2 {
        font-size: 1.5rem;
    }
    
    .qepage-cookies__category-header {
        padding: 1rem 0.5rem;
    }
    
    .qepage-cookies__category-header h3 {
        font-size: 1.125rem;
    }
    
    .qepage-cookies__category-body {
        padding: 1.5rem 0.5rem;
    }
    
    .qepage-cookies__management {
        padding: 2rem 0.5rem;
    }
    
    .qepage-cookies__management h2 {
        font-size: 1.5rem;
    }
    
    .qepage-cookies__management-item {
        padding: 1.5rem 0.5rem;
    }
    
    .qepage-cookies__updates-content,
    .qepage-cookies__contact {
        padding: 1.5rem 0.5rem;
    }
    
    .qepage-cookies__contact-link {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .qepage-cookies-modal-window {
        padding: 2rem 1rem;
    }
    
    .qepage-cookies-modal-content h3 {
        font-size: 1.5rem;
    }
    
    .qepage-cookies-modal-content p {
        font-size: 0.875rem;
    }
}

@media (max-width: 320px) {
    .qepage-cookies h1 {
        font-size: 1.5rem;
    }
    
    .qepage-cookies__header-subtitle {
        font-size: 0.875rem;
    }
    
    .qepage-cookies__category-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .qepage-cookies__category-icon i {
        font-size: 1.25rem;
    }
    
    .qepage-cookies__management-item i {
        font-size: 2rem;
    }
    
    .qepage-cookies__contact-link {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
}

.qepage-responsible {
    background: linear-gradient(135deg, #0b121e, #162238);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.qepage-responsible::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(138, 43, 122, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.qepage-responsible__hero {
    background: linear-gradient(135deg, #1a2b4a, #2d1b47);
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.qepage-responsible__hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    animation: qepage-responsible-shift 30s linear infinite;
}

@keyframes qepage-responsible-shift {
    0% { background-position: 0 0; }
    100% { background-position: 0 100px; }
}

.qepage-responsible__hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.qepage-responsible h1 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 3.25rem;
    margin: 0;
    background: linear-gradient(90deg, #ffffff, #00d4ff, #8a2b7a);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: qepage-responsible-gradient 5s ease infinite;
    text-align: center;
}

@keyframes qepage-responsible-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.qepage-responsible__hero-subtitle {
    font-size: 1.375rem;
    color: #a0aec0;
    max-width: 700px;
    line-height: 1.6;
    margin: 0;
}

.qepage-responsible__hero-visual {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.qepage-responsible__hero-visual i {
    font-size: 6rem;
    color: #00d4ff;
    position: relative;
    z-index: 3;
    animation: qepage-responsible-float 6s ease-in-out infinite;
}

@keyframes qepage-responsible-float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
    }
    33% { 
        transform: translateY(-15px) rotate(5deg);
        filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.7));
    }
    66% { 
        transform: translateY(10px) rotate(-5deg);
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.9));
    }
}

.qepage-responsible__hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.6;
}

.qepage-responsible__hero-orb--1 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #00d4ff, transparent 70%);
    top: 20%;
    left: 10%;
    animation: qepage-responsible-orb-1 8s ease-in-out infinite;
}

.qepage-responsible__hero-orb--2 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #8a2b7a, transparent 70%);
    bottom: 20%;
    right: 10%;
    animation: qepage-responsible-orb-2 10s ease-in-out infinite;
}

.qepage-responsible__hero-orb--3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #3d2b5c, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: qepage-responsible-orb-3 12s ease-in-out infinite;
}

@keyframes qepage-responsible-orb-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.2); }
}

@keyframes qepage-responsible-orb-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 30px) scale(1.1); }
}

@keyframes qepage-responsible-orb-3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.3); }
}

.qepage-responsible__intro {
    background: linear-gradient(90deg, #1a2b4a, #0b121e);
    padding: 3rem 1rem;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

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

.qepage-responsible__intro-text {
    flex: 2;
    min-width: 260px;
}

.qepage-responsible__intro-text h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.qepage-responsible__intro-text p {
    color: #a0aec0;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.qepage-responsible__intro-icon {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.qepage-responsible__intro-icon i {
    font-size: 8rem;
    color: rgba(138, 43, 122, 0.3);
    animation: qepage-responsible-heartbeat 4s ease-in-out infinite;
}

@keyframes qepage-responsible-heartbeat {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.qepage-responsible__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
    position: relative;
    z-index: 1;
}

.qepage-responsible__container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 4rem;
}

.qepage-responsible__sections {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.qepage-responsible__section {
    background: linear-gradient(135deg, rgba(26, 43, 74, 0.9), rgba(45, 27, 71, 0.9));
    border-radius: 25px;
    overflow: hidden;
    flex: 1;
    min-width: 270px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    position: relative;
}

.qepage-responsible__section:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #00d4ff;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 212, 255, 0.2);
}

.qepage-responsible__section-header {
    background: linear-gradient(90deg, #3d2b5c, #1a2b4a);
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    border-bottom: 2px solid rgba(138, 43, 122, 0.3);
    position: relative;
}

.qepage-responsible__section-number {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: rgba(0, 212, 255, 0.3);
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.qepage-responsible__section-header h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.qepage-responsible__section-header i {
    font-size: 2rem;
    color: #00d4ff;
}

.qepage-responsible__section-body {
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.qepage-responsible__section-body p {
    color: #a0aec0;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.qepage-responsible__tip {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.1), rgba(61, 43, 92, 0.1));
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    border-left: 4px solid #00d4ff;
}

.qepage-responsible__tip i {
    font-size: 1.5rem;
    color: #00d4ff;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.qepage-responsible__tip span {
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.6;
    flex: 1;
}

.qepage-responsible__warning {
    background: linear-gradient(90deg, rgba(138, 43, 122, 0.1), rgba(61, 43, 92, 0.1));
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid rgba(138, 43, 122, 0.3);
}

.qepage-responsible__warning i {
    font-size: 1.5rem;
    color: #8a2b7a;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.qepage-responsible__warning p {
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.qepage-responsible__list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.75rem;
}

.qepage-responsible__list li {
    color: #a0aec0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.qepage-responsible__list i {
    color: #00d4ff;
    font-size: 1.125rem;
}

.qepage-responsible__questions {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.qepage-responsible__question {
    background: rgba(61, 43, 92, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    border-left: 3px solid #8a2b7a;
}

.qepage-responsible__question i {
    color: #8a2b7a;
    font-size: 1.125rem;
}

.qepage-responsible__question span {
    color: #ffffff;
    font-size: 0.875rem;
    flex: 1;
}

.qepage-responsible__feature {
    background: rgba(26, 43, 74, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.qepage-responsible__feature h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.qepage-responsible__feature-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.qepage-responsible__feature-item {
    flex: 1;
    min-width: 120px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.qepage-responsible__feature-item i {
    font-size: 1.5rem;
    color: #00d4ff;
}

.qepage-responsible__feature-item span {
    color: #ffffff;
    font-size: 0.75rem;
}

.qepage-responsible__resources {
    background: rgba(26, 43, 74, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    border: 1px solid rgba(138, 43, 122, 0.3);
}

.qepage-responsible__resources h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.qepage-responsible__resource-links {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.75rem;
}

.qepage-responsible__resource-link {
    background: rgba(138, 43, 122, 0.1);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.qepage-responsible__resource-link:hover {
    background: rgba(138, 43, 122, 0.2);
    border-color: #8a2b7a;
    transform: translateX(5px);
}

.qepage-responsible__resource-link i {
    font-size: 1.25rem;
    color: #8a2b7a;
}

.qepage-responsible__resource-link span {
    flex: 1;
    font-size: 0.875rem;
}

.qepage-responsible__contact {
    background: linear-gradient(135deg, #1a2b4a, #0b121e);
    border-radius: 25px;
    padding: 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.qepage-responsible__contact-content {
    flex: 2;
    min-width: 265px;
}

.qepage-responsible__contact h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.qepage-responsible__contact p {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.qepage-responsible__contact-details {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;
}

.qepage-responsible__contact-email {
    background: linear-gradient(90deg, #00d4ff, #3d2b5c);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.qepage-responsible__contact-email:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.qepage-responsible__contact-email i {
    font-size: 1.25rem;
}

.qepage-responsible__contact-note {
    color: #a0aec0;
    font-size: 0.875rem;
    margin: 0;
}

.qepage-responsible__age-restriction {
    flex: 1;
    min-width: 200px;
    background: linear-gradient(135deg, #3d2b5c, #2d1b47);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    border: 1px solid rgba(138, 43, 122, 0.3);
}

.qepage-responsible__age-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8a2b7a, #3d2b5c);
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(138, 43, 122, 0.3);
}

.qepage-responsible__age-restriction p {
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .qepage-responsible h1 {
        font-size: 2.75rem;
    }
    
    .qepage-responsible__hero {
        padding: 4rem 1rem;
    }
    
    .qepage-responsible__intro {
        padding: 2rem 1rem;
    }
    
    .qepage-responsible__content {
        padding: 3rem 1rem;
    }
    
    .qepage-responsible__contact {
        flex-direction: column;
        text-align: center;
    }
    
    .qepage-responsible__contact-email {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .qepage-responsible h1 {
        font-size: 2.25rem;
    }
    
    .qepage-responsible__hero-subtitle {
        font-size: 1.25rem;
    }
    
    .qepage-responsible__intro-container {
        flex-direction: column;
        text-align: center;
    }
    
    .qepage-responsible__intro-icon i {
        font-size: 6rem;
    }
    
    .qepage-responsible__section {
        min-width: 100%;
    }
    
    .qepage-responsible__feature-items {
        flex-direction: column;
    }
    
    .qepage-responsible__feature-item {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .qepage-responsible h1 {
        font-size: 1.75rem;
    }
    
    .qepage-responsible__hero {
        padding: 3rem 0.3rem;
    }
    
    .qepage-responsible__hero-subtitle {
        font-size: 1.125rem;
    }
    
    .qepage-responsible__hero-visual {
        width: 200px;
        height: 200px;
    }
    
    .qepage-responsible__hero-visual i {
        font-size: 4rem;
    }
    
    .qepage-responsible__intro {
        padding: 1.5rem 0.3rem;
    }
    
    .qepage-responsible__intro-text h2 {
        font-size: 1.5rem;
    }
    
    .qepage-responsible__content {
        padding: 2rem 0.3rem;
    }
    
    .qepage-responsible__section-header {
        padding: 1rem 0.5rem;
    }
    
    .qepage-responsible__section-header h2 {
        font-size: 1.25rem;
    }
    
    .qepage-responsible__section-body {
        padding: 1.5rem 0.5rem;
    }
    
    .qepage-responsible__contact {
        padding: 2rem 0.5rem;
    }
    
    .qepage-responsible__contact h3 {
        font-size: 1.5rem;
    }
    
    .qepage-responsible__contact-email {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
        justify-content: center;
    }
    
    .qepage-responsible__age-restriction {
        padding: 1.5rem 0.5rem;
    }
}

@media (max-width: 320px) {
    .qepage-responsible h1 {
        font-size: 1.5rem;
    }
    
    .qepage-responsible__hero-subtitle {
        font-size: 1rem;
    }
    
    .qepage-responsible__section-header i {
        font-size: 1.5rem;
    }
    
    .qepage-responsible__section-number {
        font-size: 1.5rem;
    }
    
    .qepage-responsible__age-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

.qepage-notfound {
    background: linear-gradient(135deg, #0b121e, #1a2b4a);
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 1rem;
}

.qepage-notfound__container {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.qepage-notfound__content {
    background: linear-gradient(135deg, rgba(26, 43, 74, 0.9), rgba(45, 27, 71, 0.9));
    border-radius: 30px;
    padding: 3rem;
    width: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(138, 43, 122, 0.1);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.qepage-notfound__visual {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 300px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.qepage-notfound__number {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.qepage-notfound__digit {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 12rem;
    color: transparent;
    text-shadow: 
        0 0 30px #00d4ff,
        0 0 60px #00d4ff,
        0 0 90px #00d4ff;
    animation: qepage-notfound-glow 3s ease-in-out infinite;
    line-height: 1;
}

.qepage-notfound__digit--4:nth-child(1) {
    animation-delay: 0s;
}

.qepage-notfound__digit--4:nth-child(3) {
    animation-delay: 1.5s;
}

@keyframes qepage-notfound-glow {
    0%, 100% { 
        text-shadow: 
            0 0 30px #00d4ff,
            0 0 60px #00d4ff,
            0 0 90px #00d4ff;
        transform: translateY(0);
    }
    50% { 
        text-shadow: 
            0 0 40px #00d4ff,
            0 0 80px #00d4ff,
            0 0 120px #00d4ff;
        transform: translateY(-10px);
    }
}

.qepage-notfound__orb {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #8a2b7a, #3d2b5c);
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    animation: qepage-notfound-orb-float 4s ease-in-out infinite;
    box-shadow: 
        0 0 40px rgba(138, 43, 122, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 3;
}

@keyframes qepage-notfound-orb-float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        box-shadow: 
            0 0 40px rgba(138, 43, 122, 0.6),
            inset 0 0 20px rgba(255, 255, 255, 0.2);
    }
    33% { 
        transform: translateY(-20px) rotate(120deg);
        box-shadow: 
            0 0 50px rgba(138, 43, 122, 0.8),
            inset 0 0 30px rgba(255, 255, 255, 0.3);
    }
    66% { 
        transform: translateY(10px) rotate(240deg);
        box-shadow: 
            0 0 60px rgba(138, 43, 122, 1),
            inset 0 0 40px rgba(255, 255, 255, 0.4);
    }
}

.qepage-notfound__orb i {
    font-size: 4rem;
    color: #ffffff;
    animation: qepage-notfound-orb-spin 10s linear infinite;
}

@keyframes qepage-notfound-orb-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.qepage-notfound__particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.qepage-notfound__particle {
    position: absolute;
    background: #00d4ff;
    border-radius: 50%;
    filter: blur(3px);
    opacity: 0.7;
}

.qepage-notfound__particle--1 {
    width: 15px;
    height: 15px;
    top: 20%;
    left: 10%;
    animation: qepage-notfound-particle-1 8s linear infinite;
}

.qepage-notfound__particle--2 {
    width: 10px;
    height: 10px;
    top: 40%;
    right: 15%;
    animation: qepage-notfound-particle-2 12s linear infinite;
}

.qepage-notfound__particle--3 {
    width: 8px;
    height: 8px;
    bottom: 30%;
    left: 20%;
    animation: qepage-notfound-particle-3 10s linear infinite;
}

.qepage-notfound__particle--4 {
    width: 12px;
    height: 12px;
    bottom: 20%;
    right: 25%;
    animation: qepage-notfound-particle-4 14s linear infinite;
}

.qepage-notfound__particle--5 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 40%;
    animation: qepage-notfound-particle-5 9s linear infinite;
}

@keyframes qepage-notfound-particle-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.5); }
}

@keyframes qepage-notfound-particle-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 20px) scale(1.3); }
}

@keyframes qepage-notfound-particle-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 40px) scale(1.4); }
}

@keyframes qepage-notfound-particle-4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -40px) scale(1.2); }
}

@keyframes qepage-notfound-particle-5 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 30px) scale(1.6); }
}

.qepage-notfound__text {
    width: 100%;
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.qepage-notfound h1 {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 3rem;
    color: #ffffff;
    margin: 0;
    background: linear-gradient(90deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.qepage-notfound__description {
    color: #a0aec0;
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0;
}

.qepage-notfound__suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
    justify-content: center;
}

.qepage-notfound__suggestion {
    flex: 1;
    min-width: 250px;
    background: rgba(61, 43, 92, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(138, 43, 122, 0.3);
    transition: all 0.3s ease;
}

.qepage-notfound__suggestion:hover {
    transform: translateY(-5px);
    border-color: #8a2b7a;
    box-shadow: 0 10px 30px rgba(138, 43, 122, 0.2);
}

.qepage-notfound__suggestion i {
    font-size: 2.5rem;
    color: #00d4ff;
}

.qepage-notfound__suggestion h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    color: #ffffff;
    margin: 0;
}

.qepage-notfound__suggestion p {
    color: #a0aec0;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.qepage-notfound__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.qepage-notfound__button {
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.qepage-notfound__button--home {
    background: linear-gradient(90deg, #00d4ff, #3d2b5c);
    color: #ffffff;
}

.qepage-notfound__button--contact {
    background: transparent;
    color: #ffffff;
    border: 2px solid #8a2b7a;
}

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

.qepage-notfound__button--contact:hover {
    background: rgba(138, 43, 122, 0.1);
    box-shadow: 0 10px 25px rgba(138, 43, 122, 0.3);
}

.qepage-notfound__search {
    width: 100%;
    max-width: 600px;
    margin-top: 1rem;
}

.qepage-notfound__search-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    padding: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.qepage-notfound__search-container:focus-within {
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.qepage-notfound__search-container i {
    font-size: 1.5rem;
    color: #00d4ff;
    margin-left: 1rem;
}

.qepage-notfound__search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: 'Inter Tight', sans-serif;
    font-size: 1rem;
    padding: 0.5rem;
    min-width: 200px;
}

.qepage-notfound__search-input:focus {
    outline: none;
}

.qepage-notfound__search-input::placeholder {
    color: #a0aec0;
}

.qepage-notfound__search-button {
    background: linear-gradient(90deg, #00d4ff, #3d2b5c);
    color: #ffffff;
    border: none;
    border-radius: 1.5rem;
    padding: 0.75rem 1.5rem;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qepage-notfound__search-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.qepage-notfound__search-note {
    color: #a0aec0;
    font-size: 0.875rem;
    text-align: center;
    margin: 0.5rem 0 0 0;
}

.qepage-notfound__navigation {
    width: 100%;
    max-width: 800px;
    margin-top: 1rem;
}

.qepage-notfound__navigation h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0 0 1rem 0;
    text-align: center;
}

.qepage-notfound__navigation-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.qepage-notfound__navigation-link {
    background: rgba(26, 43, 74, 0.5);
    border-radius: 1rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.qepage-notfound__navigation-link:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    transform: translateY(-3px);
}

.qepage-notfound__navigation-link i {
    font-size: 1.25rem;
    color: #00d4ff;
}

.qepage-notfound__navigation-link span {
    font-size: 0.875rem;
}

.qepage-notfound__technical {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    padding: 1rem;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid rgba(138, 43, 122, 0.3);
    margin-top: 1rem;
}

.qepage-notfound__technical-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.qepage-notfound__technical-info i {
    font-size: 1.5rem;
    color: #8a2b7a;
}

.qepage-notfound__technical-info h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
}

.qepage-notfound__technical-info p {
    color: #a0aec0;
    font-size: 0.75rem;
    margin: 0;
}

.qepage-notfound__technical-details {
    background: transparent;
    color: #00d4ff;
    border: 1px solid #00d4ff;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    font-family: 'Sora', sans-serif;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qepage-notfound__technical-details:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: scale(1.05);
}

.qepage-notfound__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.qepage-notfound__background-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
}

.qepage-notfound__background-element--1 {
    width: 500px;
    height: 500px;
    background: #00d4ff;
    top: -200px;
    right: -200px;
    animation: qepage-notfound-bg-float-1 20s ease-in-out infinite;
}

.qepage-notfound__background-element--2 {
    width: 400px;
    height: 400px;
    background: #8a2b7a;
    bottom: -150px;
    left: -150px;
    animation: qepage-notfound-bg-float-2 25s ease-in-out infinite;
}

.qepage-notfound__background-element--3 {
    width: 300px;
    height: 300px;
    background: #3d2b5c;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: qepage-notfound-bg-float-3 30s ease-in-out infinite;
}

.qepage-notfound-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 18, 30, 0.95);
    z-index: 10004;
    display: none;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.qepage-notfound-modal-overlay.active {
    display: flex;
}

.qepage-notfound-modal-window {
    background: linear-gradient(135deg, #3d2b5c, #1a2b4a);
    border-radius: 24px;
    padding: 3rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: qepage-notfound-modal-appear 0.4s ease;
}

@keyframes qepage-notfound-modal-appear {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.qepage-notfound-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.qepage-notfound-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.qepage-notfound-modal-content i {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.qepage-notfound-modal-content h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.qepage-notfound-modal-content p {
    color: #a0aec0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.qepage-notfound-modal-button {
    background: linear-gradient(90deg, #00d4ff, #3d2b5c);
    color: #ffffff;
    border: none;
    border-radius: 2rem;
    padding: 0.75rem 2rem;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.qepage-notfound-modal-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

@keyframes qepage-notfound-bg-float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, -50px) scale(1.2); }
}

@keyframes qepage-notfound-bg-float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-80px, 60px) scale(1.1); }
}

@keyframes qepage-notfound-bg-float-3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.3); }
}

@media (max-width: 1024px) {
    .qepage-notfound__digit {
        font-size: 10rem;
    }
    
    .qepage-notfound__orb {
        width: 100px;
        height: 100px;
    }
    
    .qepage-notfound__orb i {
        font-size: 3rem;
    }
    
    .qepage-notfound h1 {
        font-size: 2.5rem;
    }
    
    .qepage-notfound__content {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .qepage-notfound__digit {
        font-size: 8rem;
    }
    
    .qepage-notfound__orb {
        width: 80px;
        height: 80px;
    }
    
    .qepage-notfound__orb i {
        font-size: 2.5rem;
    }
    
    .qepage-notfound h1 {
        font-size: 2rem;
    }
    
    .qepage-notfound__description {
        font-size: 1.125rem;
    }
    
    .qepage-notfound__content {
        padding: 2rem;
        gap: 2rem;
    }
    
    .qepage-notfound__visual {
        height: 250px;
    }
    
    .qepage-notfound__number {
        gap: 1.5rem;
    }
    
    .qepage-notfound__actions {
        flex-direction: column;
    }
    
    .qepage-notfound__button {
        width: 100%;
    }
    
    .qepage-notfound__technical {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .qepage-notfound {
        padding: 1rem 0.3rem;
    }
    
    .qepage-notfound__digit {
        font-size: 6rem;
    }
    
    .qepage-notfound__orb {
        width: 60px;
        height: 60px;
    }
    
    .qepage-notfound__orb i {
        font-size: 2rem;
    }
    
    .qepage-notfound h1 {
        font-size: 1.75rem;
    }
    
    .qepage-notfound__description {
        font-size: 1rem;
    }
    
    .qepage-notfound__content {
        padding: 1.5rem 0.5rem;
        gap: 1.5rem;
    }
    
    .qepage-notfound__visual {
        height: 200px;
    }
    
    .qepage-notfound__number {
        gap: 1rem;
    }
    
    .qepage-notfound__suggestion {
        min-width: 100%;
    }
    
    .qepage-notfound__search-input {
        min-width: 150px;
        font-size: 0.9rem;
    }
    
    .qepage-notfound__search-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .qepage-notfound__navigation-links {
        flex-direction: column;
    }
    
    .qepage-notfound__navigation-link {
        justify-content: center;
    }
    
    .qepage-notfound__technical-details {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .qepage-notfound-modal-window {
        padding: 2rem 1rem;
    }
    
    .qepage-notfound-modal-content h3 {
        font-size: 1.5rem;
    }
    
    .qepage-notfound-modal-content p {
        font-size: 0.875rem;
    }
}

@media (max-width: 320px) {
    .qepage-notfound__digit {
        font-size: 4.5rem;
    }
    
    .qepage-notfound__orb {
        width: 50px;
        height: 50px;
    }
    
    .qepage-notfound__orb i {
        font-size: 1.5rem;
    }
    
    .qepage-notfound h1 {
        font-size: 1.5rem;
    }
    
    .qepage-notfound__description {
        font-size: 0.875rem;
    }
    
    .qepage-notfound__suggestion h3 {
        font-size: 1.125rem;
    }
    
    .qepage-notfound__button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .qepage-notfound__search-container {
        flex-direction: column;
        border-radius: 1rem;
        padding: 1rem;
    }
    
    .qepage-notfound__search-input {
        width: 100%;
        text-align: center;
    }
}