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

:root {
    --lwv-color-primary: #6366f1;
    --lwv-color-primary-light: #818cf8;
    --lwv-color-primary-dark: #4f46e5;
    --lwv-color-secondary: #10b981;
    --lwv-color-secondary-light: #34d399;
    --lwv-color-accent: #f59e0b;
    --lwv-color-accent-light: #fbbf24;
    --lwv-color-background: #f8fafc;
    --lwv-color-surface: #ffffff;
    --lwv-color-text: #334155;
    --lwv-color-text-light: #64748b;
    --lwv-color-border: #e2e8f0;
    --lwv-color-success: #10b981;
    --lwv-color-warning: #f59e0b;
    --lwv-color-error: #ef4444;
    --lwv-shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
    --lwv-shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --lwv-shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --lwv-border-radius-small: 0.375rem;
    --lwv-border-radius-medium: 0.5rem;
    --lwv-border-radius-large: 1rem;
    --lwv-transition-fast: 150ms ease;
    --lwv-transition-medium: 300ms ease;
    --lwv-transition-slow: 500ms ease;
}

body {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    color: var(--lwv-color-text);
    background-color: var(--lwv-color-background);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--lwv-color-text);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--lwv-transition-fast);
}

button {
    font-family: 'Manrope', sans-serif;
    border: none;
    background: none;
    cursor: pointer;
    transition: all var(--lwv-transition-fast);
}

.lwv_legal-notification {
    background: linear-gradient(135deg, var(--lwv-color-primary) 0%, var(--lwv-color-primary-light) 100%);
    color: white;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.lwv_legal-notification__inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    gap: 0.75rem;
}

.lwv_legal-notification__icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.lwv_legal-notification__text {
    flex: 1;
    text-align: center;
}

.lwv_site-header {
    background-color: var(--lwv-color-surface);
    box-shadow: var(--lwv-shadow-small);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.lwv_site-header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    flex-wrap: wrap;
}

.lwv_site-header__menu-trigger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    padding: 0;
}

.lwv_site-header__menu-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--lwv-color-text);
    transition: all var(--lwv-transition-medium);
    border-radius: 1px;
}

.lwv_site-header__menu-line--top {
    transform-origin: top left;
}

.lwv_site-header__menu-line--middle {
    opacity: 1;
}

.lwv_site-header__menu-line--bottom {
    transform-origin: bottom left;
}

.lwv_site-header__navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    flex-wrap: wrap;
}

.lwv_site-header__nav-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.lwv_site-header__logo-area {
    margin: 0 2rem;
}

.lwv_site-header__logo-link {
    display: inline-block;
}

.lwv_site-header__logo-image {
    width: 100%;
    height: 100%;
    max-width: 180px;
    max-height: 60px;
}

.lwv_site-header__nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--lwv-border-radius-medium);
    font-weight: 500;
    transition: all var(--lwv-transition-fast);
}

.lwv_site-header__nav-link:hover {
    background-color: var(--lwv-color-background);
    color: var(--lwv-color-primary);
}

.lwv_site-header__nav-icon {
    font-size: 1.25rem;
}

.lwv_content-container {
    width: 100%;
    margin: 0 auto;
}

.lwv_welcome-section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.lwv_welcome-section__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/lwv-core/lwv-images/welcome-background.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.lwv_welcome-section__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.lwv_welcome-section__title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--lwv-color-primary-dark);
}

.lwv_welcome-section__description {
    font-size: 1.125rem;
    color: var(--lwv-color-text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.lwv_welcome-section__card {
    background-color: var(--lwv-color-surface);
    border-radius: var(--lwv-border-radius-large);
    padding: 2rem;
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    box-shadow: var(--lwv-shadow-medium);
    transition: transform var(--lwv-transition-medium), box-shadow var(--lwv-transition-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lwv_welcome-section__card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--lwv-shadow-large);
}

.lwv_welcome-section__card-icon {
    font-size: 2.5rem;
    color: var(--lwv-color-primary);
    margin-bottom: 1rem;
}

.lwv_welcome-section__card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--lwv-color-text);
}

.lwv_welcome-section__card-text {
    color: var(--lwv-color-text-light);
    margin-bottom: 1.5rem;
    flex: 1;
}

.lwv_welcome-section__card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--lwv-color-primary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--lwv-border-radius-medium);
    background-color: rgba(99, 102, 241, 0.1);
    transition: all var(--lwv-transition-fast);
}

.lwv_welcome-section__card-link:hover {
    background-color: var(--lwv-color-primary);
    color: white;
}

.lwv_about-section {
    padding: 4rem 0;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.lwv_about-section__block {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.lwv_about-section__block--first {
    flex-direction: row;
}

.lwv_about-section__block--second {
    flex-direction: row-reverse;
}

.lwv_about-section__block--third {
    flex-direction: column;
    text-align: center;
}

.lwv_about-section__image-container {
    flex: 1;
    min-width: 230px;
}

.lwv_about-section__image {
    width: 100%;
    height: 100%;
    max-width: 400px;
    max-height: 400px;
    border-radius: var(--lwv-border-radius-large);
    box-shadow: var(--lwv-shadow-large);
}

.lwv_about-section__text-content {
    flex: 1;
    min-width: 230px;
}

.lwv_about-section__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--lwv-color-primary-dark);
}

.lwv_about-section__subtitle {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--lwv-color-primary);
}

.lwv_about-section__description {
    font-size: 1.125rem;
    color: var(--lwv-color-text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.lwv_about-section__highlights {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.lwv_about-section__highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(99, 102, 241, 0.1);
    border-radius: var(--lwv-border-radius-medium);
    font-size: 0.875rem;
}

.lwv_about-section__highlight-icon {
    color: var(--lwv-color-primary);
}

.lwv_about-section__milestones {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.lwv_about-section__milestone {
    text-align: center;
}

.lwv_about-section__milestone-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lwv-color-primary);
    margin-bottom: 0.25rem;
}

.lwv_about-section__milestone-label {
    font-size: 0.875rem;
    color: var(--lwv-color-text-light);
}

.lwv_about-section__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--lwv-color-primary) 0%, var(--lwv-color-primary-light) 100%);
    color: white;
    border-radius: var(--lwv-border-radius-medium);
    font-weight: 500;
    transition: transform var(--lwv-transition-fast);
}

.lwv_about-section__cta:hover {
    transform: scale(1.05);
}

.lwv_about-section__section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--lwv-color-primary-dark);
}

.lwv_about-section__features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.lwv_about-section__feature {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem;
    background-color: var(--lwv-color-surface);
    border-radius: var(--lwv-border-radius-large);
    box-shadow: var(--lwv-shadow-medium);
    text-align: center;
}

.lwv_about-section__feature-icon {
    font-size: 2.5rem;
    color: var(--lwv-color-primary);
    margin-bottom: 1rem;
}

.lwv_about-section__feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--lwv-color-text);
}

.lwv_about-section__feature-text {
    color: var(--lwv-color-text-light);
    line-height: 1.6;
}

.lwv_features-section {
    position: relative;
    padding: 4rem 0;
    background-color: var(--lwv-color-primary-dark);
    color: white;
    overflow: hidden;
}

.lwv_features-section__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/lwv-core/lwv-images/features-background.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.lwv_features-section__content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.lwv_features-section__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

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

.lwv_features-section__card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--lwv-border-radius-large);
    padding: 2rem;
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform var(--lwv-transition-medium), background-color var(--lwv-transition-medium);
}

.lwv_features-section__card:hover {
    transform: translateY(-0.5rem);
    background-color: rgba(255, 255, 255, 0.15);
}

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

.lwv_features-section__card-icon {
    font-size: 2rem;
    color: var(--lwv-color-accent-light);
}

.lwv_features-section__card-title {
    font-size: 1.25rem;
    color: white;
}

.lwv_features-section__card-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.lwv_games-section {
    padding: 4rem 0;
}

.lwv_games-section__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--lwv-color-primary-dark);
}

.lwv_games-section__subtitle {
    text-align: center;
    color: var(--lwv-color-text-light);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.lwv_games-section__grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.lwv_games-section__card {
    background-color: var(--lwv-color-surface);
    border-radius: var(--lwv-border-radius-large);
    overflow: hidden;
    box-shadow: var(--lwv-shadow-medium);
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    transition: transform var(--lwv-transition-medium), box-shadow var(--lwv-transition-medium);
    position: relative;
}

.lwv_games-section__card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--lwv-shadow-large);
}

.lwv_games-section__card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background-color: var(--lwv-color-primary);
    color: white;
    border-radius: var(--lwv-border-radius-small);
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 1;
}

.lwv_games-section__card-badge--new {
    background-color: var(--lwv-color-accent);
}

.lwv_games-section__card-image-container {
    height: 200px;
    overflow: hidden;
}

.lwv_games-section__card-image {
    width: 100%;
    height: 100%;
    max-width: 300px;
    max-height: 200px;
    transition: transform var(--lwv-transition-slow);
}

.lwv_games-section__card:hover .lwv_games-section__card-image {
    transform: scale(1.05);
}

.lwv_games-section__card-content {
    padding: 1.5rem;
}

.lwv_games-section__card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--lwv-color-text);
}

.lwv_games-section__card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.lwv_games-section__card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--lwv-color-text-light);
}

.lwv_games-section__card-description {
    color: var(--lwv-color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    min-height: 4.5rem;
}

.lwv_games-section__card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--lwv-color-secondary);
    color: white;
    border-radius: var(--lwv-border-radius-medium);
    font-weight: 500;
    transition: background-color var(--lwv-transition-fast);
}

.lwv_games-section__card-link:hover {
    background-color: var(--lwv-color-secondary-light);
}

.lwv_faq-section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.lwv_faq-section__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/lwv-core/lwv-images/faq-background.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
}

.lwv_faq-section__content {
    max-width: 1000px;
    margin: 0 auto;
}

.lwv_faq-section__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--lwv-color-primary-dark);
}

.lwv_faq-section__categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lwv_faq-section__category {
    background-color: var(--lwv-color-surface);
    border-radius: var(--lwv-border-radius-large);
    padding: 2rem;
    box-shadow: var(--lwv-shadow-medium);
}

.lwv_faq-section__category-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--lwv-color-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lwv_faq-section__questions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lwv_faq-section__question {
    border-bottom: 1px solid var(--lwv-color-border);
}

.lwv_faq-section__question:last-child {
    border-bottom: none;
}

.lwv_faq-section__question-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    text-align: left;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    color: var(--lwv-color-text);
    transition: color var(--lwv-transition-fast);
}

.lwv_faq-section__question-button:hover {
    color: var(--lwv-color-primary);
}

.lwv_faq-section__question-icon {
    font-size: 1.25rem;
    transition: transform var(--lwv-transition-medium);
}

.lwv_faq-section__question.active .lwv_faq-section__question-icon {
    transform: rotate(45deg);
}

.lwv_faq-section__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--lwv-transition-medium) ease;
}

.lwv_faq-section__answer p {
    padding-bottom: 1rem;
    color: var(--lwv-color-text-light);
    line-height: 1.6;
}

.lwv_faq-section__contact {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--lwv-color-surface);
    border-radius: var(--lwv-border-radius-large);
    box-shadow: var(--lwv-shadow-medium);
}

.lwv_faq-section__contact-text {
    font-size: 1.125rem;
    color: var(--lwv-color-text-light);
    margin-bottom: 1.5rem;
}

.lwv_faq-section__contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--lwv-color-primary) 0%, var(--lwv-color-primary-light) 100%);
    color: white;
    border-radius: var(--lwv-border-radius-medium);
    font-weight: 500;
    transition: transform var(--lwv-transition-fast);
}

.lwv_faq-section__contact-button:hover {
    transform: scale(1.05);
}

.lwv_reviews-section {
    padding: 4rem 0;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.lwv_reviews-section__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--lwv-color-primary-dark);
}

.lwv_reviews-section__subtitle {
    text-align: center;
    color: var(--lwv-color-text-light);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.lwv_reviews-section__grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.lwv_reviews-section__card {
    background-color: var(--lwv-color-surface);
    border-radius: var(--lwv-border-radius-large);
    padding: 2rem;
    flex: 1;
    min-width: 230px;
    max-width: 350px;
    box-shadow: var(--lwv-shadow-medium);
    transition: transform var(--lwv-transition-medium);
}

.lwv_reviews-section__card:hover {
    transform: translateY(-0.5rem);
}

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

.lwv_reviews-section__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.lwv_reviews-section__avatar-image {
    width: 100%;
    height: 100%;
    max-width: 80px;
    max-height: 80px;
}

.lwv_reviews-section__user-info {
    flex: 1;
}

.lwv_reviews-section__user-name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--lwv-color-text);
}

.lwv_reviews-section__user-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--lwv-color-text-light);
}

.lwv_reviews-section__rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--lwv-color-accent);
}

.lwv_reviews-section__text {
    color: var(--lwv-color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    min-height: 7rem;
}

.lwv_reviews-section__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--lwv-color-text-light);
}

.lwv_responsible-section {
    padding: 4rem 0;
    background-color: var(--lwv-color-background);
    border-radius: var(--lwv-border-radius-large);
    margin: 2rem 0;
}

.lwv_responsible-section__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--lwv-color-primary-dark);
}

.lwv_responsible-section__content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.lwv_responsible-section__text-block {
    text-align: center;
}

.lwv_responsible-section__description {
    color: var(--lwv-color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.125rem;
}

.lwv_responsible-section__link {
    color: var(--lwv-color-primary);
    font-weight: 500;
    transition: color var(--lwv-transition-fast);
}

.lwv_responsible-section__link:hover {
    color: var(--lwv-color-primary-dark);
    text-decoration: underline;
}

.lwv_responsible-section__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--lwv-color-secondary);
    color: white;
    border-radius: var(--lwv-border-radius-medium);
    font-weight: 500;
    margin-top: 1rem;
    transition: background-color var(--lwv-transition-fast);
}

.lwv_responsible-section__cta:hover {
    background-color: var(--lwv-color-secondary-light);
}

.lwv_responsible-section__partners {
    text-align: center;
}

.lwv_responsible-section__partners-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--lwv-color-primary);
}

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

.lwv_responsible-section__partner-link {
    display: inline-block;
    background: var(--lwv-color-primary-dark);
    border-radius: var(--lwv-border-radius-small);
    padding: 0.5rem 0.8rem;
    transition: transform var(--lwv-transition-fast);
}

.lwv_responsible-section__partner-link:hover {
    transform: scale(1.05);
}

.lwv_responsible-section__partner-image {
    width: 150px;
    height: 60px;
    object-fit: contain;
}

.lwv_responsible-section__age-restriction {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.lwv_responsible-section__age-image {
    width: 80px;
    height: 80px;
}

.lwv_responsible-section__age-text {
    font-size: 0.875rem;
    color: var(--lwv-color-text-light);
    font-weight: 500;
}

.lwv_site-footer {
    position: relative;
    background-color: var(--lwv-color-primary-dark);
    color: white;
    overflow: hidden;
}

.lwv_site-footer__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/lwv-core/lwv-images/footer-background.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.lwv_site-footer__content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem 2rem;
}

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

.lwv_site-footer__brand {
    flex: 1;
    min-width: 230px;
}

.lwv_site-footer__logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.lwv_site-footer__logo-image {
    width: 100%;
    height: 100%;
    max-width: 200px;
    max-height: 70px;
}

.lwv_site-footer__tagline {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.lwv_site-footer__contact {
    margin-top: 1.5rem;
}

.lwv_site-footer__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--lwv-transition-fast);
}

.lwv_site-footer__contact-link:hover {
    color: white;
}

.lwv_site-footer__links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.lwv_site-footer__link-group {
    min-width: 200px;
}

.lwv_site-footer__link-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lwv_site-footer__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    transition: color var(--lwv-transition-fast);
}

.lwv_site-footer__link:hover {
    color: white;
}

.lwv_site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.lwv_site-footer__copyright {
    margin-bottom: 1rem;
}

.lwv_site-footer__copyright-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
}

.lwv_site-footer__legal {
    margin-top: 1rem;
}

.lwv_site-footer__legal-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    line-height: 1.6;
}

.lwv_scroll-indicator {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 999;
    background-color: var(--lwv-color-surface);
    border-radius: var(--lwv-border-radius-large);
    padding: 0.75rem;
    box-shadow: var(--lwv-shadow-medium);
}

.lwv_scroll-indicator__button {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--lwv-color-primary);
    color: white;
    border-radius: 50%;
    transition: background-color var(--lwv-transition-fast);
}

.lwv_scroll-indicator__button:hover {
    background-color: var(--lwv-color-primary-dark);
}

.lwv_scroll-indicator__progress {
    width: 2.5rem;
    height: 6rem;
    background-color: var(--lwv-color-background);
    border-radius: var(--lwv-border-radius-large);
    position: relative;
    overflow: hidden;
}

.lwv_scroll-indicator__progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--lwv-color-primary) 0%, var(--lwv-color-primary-light) 100%);
    height: 0%;
    transition: height var(--lwv-transition-fast);
}

.lwv_scroll-indicator__percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--lwv-color-text);
    z-index: 1;
}

.lwv_age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.lwv_age-confirmation-dialog {
    background-color: var(--lwv-color-surface);
    border-radius: var(--lwv-border-radius-large);
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: var(--lwv-shadow-large);
}

.lwv_age-confirmation-dialog__header {
    margin-bottom: 2rem;
}

.lwv_age-confirmation-dialog__icon {
    font-size: 3rem;
    color: var(--lwv-color-primary);
    margin-bottom: 1rem;
}

.lwv_age-confirmation-dialog__title {
    font-size: 1.75rem;
    color: var(--lwv-color-text);
    margin-bottom: 1rem;
}

.lwv_age-confirmation-dialog__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lwv_age-confirmation-dialog__text {
    color: var(--lwv-color-text-light);
    line-height: 1.6;
}

.lwv_age-confirmation-dialog__buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lwv_age-confirmation-dialog__button {
    padding: 1rem 2rem;
    border-radius: var(--lwv-border-radius-medium);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all var(--lwv-transition-fast);
}

.lwv_age-confirmation-dialog__button--confirm {
    background-color: var(--lwv-color-primary);
    color: white;
}

.lwv_age-confirmation-dialog__button--confirm:hover {
    background-color: var(--lwv-color-primary-dark);
}

.lwv_age-confirmation-dialog__button--deny {
    background-color: var(--lwv-color-background);
    color: var(--lwv-color-text);
}

.lwv_age-confirmation-dialog__button--deny:hover {
    background-color: var(--lwv-color-border);
}

.lwv_age-confirmation-dialog__disclaimer {
    font-size: 0.75rem;
    color: var(--lwv-color-text-light);
    margin-top: 1rem;
}

.lwv_cookie-notification-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    background-color: var(--lwv-color-surface);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    padding: 1rem;
}

.lwv_cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
}

.lwv_cookie-consent-container__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lwv_cookie-consent-container__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lwv_cookie-consent-container__icon {
    font-size: 1.5rem;
    color: var(--lwv-color-primary);
}

.lwv_cookie-consent-container__title {
    font-size: 1.25rem;
    color: var(--lwv-color-text);
}

.lwv_cookie-consent-container__text {
    color: var(--lwv-color-text-light);
    line-height: 1.6;
}

.lwv_cookie-consent-container__link {
    color: var(--lwv-color-primary);
    font-weight: 500;
}

.lwv_cookie-consent-container__link:hover {
    text-decoration: underline;
}

.lwv_cookie-consent-container__controls {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.lwv_cookie-consent-container__button {
    padding: 0.75rem 1.5rem;
    border-radius: var(--lwv-border-radius-medium);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--lwv-transition-fast);
}

.lwv_cookie-consent-container__button--accept {
    background-color: var(--lwv-color-primary);
    color: white;
}

.lwv_cookie-consent-container__button--accept:hover {
    background-color: var(--lwv-color-primary-dark);
}

.lwv_cookie-consent-container__button--customize {
    background-color: var(--lwv-color-background);
    color: var(--lwv-color-text);
}

.lwv_cookie-consent-container__button--customize:hover {
    background-color: var(--lwv-color-border);
}

.lwv_subscription-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2001;
    padding: 1rem;
}

.lwv_subscription-modal-window {
    background-color: var(--lwv-color-surface);
    border-radius: var(--lwv-border-radius-large);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--lwv-shadow-large);
}

.lwv_subscription-modal-window__container {
    position: relative;
    padding: 2rem;
}

.lwv_subscription-modal-window__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--lwv-color-background);
    border-radius: 50%;
    color: var(--lwv-color-text);
    transition: background-color var(--lwv-transition-fast);
}

.lwv_subscription-modal-window__close:hover {
    background-color: var(--lwv-color-border);
}

.lwv_subscription-modal-window__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lwv_subscription-modal-window__header {
    text-align: center;
}

.lwv_subscription-modal-window__header-icon {
    font-size: 3rem;
    color: var(--lwv-color-primary);
    margin-bottom: 1rem;
}

.lwv_subscription-modal-window__title {
    font-size: 1.75rem;
    color: var(--lwv-color-text);
    margin-bottom: 0.75rem;
}

.lwv_subscription-modal-window__subtitle {
    color: var(--lwv-color-text-light);
    line-height: 1.6;
}

.lwv_subscription-modal-window__benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.lwv_subscription-modal-window__benefit {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--lwv-color-background);
    border-radius: var(--lwv-border-radius-medium);
}

.lwv_subscription-modal-window__benefit-icon {
    font-size: 2rem;
    color: var(--lwv-color-primary);
    margin-bottom: 1rem;
}

.lwv_subscription-modal-window__benefit-title {
    font-size: 1.125rem;
    color: var(--lwv-color-text);
    margin-bottom: 0.5rem;
}

.lwv_subscription-modal-window__benefit-text {
    color: var(--lwv-color-text-light);
    font-size: 0.875rem;
    line-height: 1.6;
}

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

.lwv_subscription-modal-window__form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lwv_subscription-modal-window__input-container {
    position: relative;
}

.lwv_subscription-modal-window__input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lwv-color-text-light);
    font-size: 1.25rem;
}

.lwv_subscription-modal-window__input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 2px solid var(--lwv-color-border);
    border-radius: var(--lwv-border-radius-medium);
    font-size: 1rem;
    font-family: 'Manrope', sans-serif;
    transition: border-color var(--lwv-transition-fast);
}

.lwv_subscription-modal-window__input:focus {
    outline: none;
    border-color: var(--lwv-color-primary);
}

.lwv_subscription-modal-window__input:invalid {
    border-color: var(--lwv-color-error);
}

.lwv_subscription-modal-window__hint {
    font-size: 0.875rem;
    color: var(--lwv-color-error);
    min-height: 1.25rem;
}

.lwv_subscription-modal-window__checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lwv_subscription-modal-window__checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
    padding: 0.5rem;
    border-radius: var(--lwv-border-radius-small);
    transition: background-color var(--lwv-transition-fast);
}

.lwv_subscription-modal-window__checkbox-container:hover {
    background-color: rgba(99, 102, 241, 0.05);
}

.lwv_subscription-modal-window__checkbox {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
}

.lwv_subscription-modal-window__checkbox-custom {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--lwv-color-border);
    border-radius: var(--lwv-border-radius-small);
    flex-shrink: 0;
    margin-top: 0.125rem;
    position: relative;
    transition: all var(--lwv-transition-fast);
    pointer-events: none;
}

.lwv_subscription-modal-window__checkbox:checked + .lwv_subscription-modal-window__checkbox-custom {
    background-color: var(--lwv-color-primary);
    border-color: var(--lwv-color-primary);
}

.lwv_subscription-modal-window__checkbox:checked + .lwv_subscription-modal-window__checkbox-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.5rem;
    height: 0.5rem;
    background-color: white;
    border-radius: 1px;
}

.lwv_subscription-modal-window__checkbox-label {
    flex: 1;
    color: var(--lwv-color-text);
    font-size: 0.875rem;
    line-height: 1.4;
    user-select: none;
    pointer-events: none;
}

.lwv_subscription-modal-window__submit {
    padding: 1rem 2rem;
    background-color: var(--lwv-color-primary);
    color: white;
    border-radius: var(--lwv-border-radius-medium);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: background-color var(--lwv-transition-fast);
}

.lwv_subscription-modal-window__submit:hover:not(:disabled) {
    background-color: var(--lwv-color-primary-dark);
}

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

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

.lwv_subscription-modal-window__success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.lwv_subscription-modal-window__success-icon {
    font-size: 3rem;
    color: var(--lwv-color-success);
}

.lwv_subscription-modal-window__success-title {
    font-size: 1.5rem;
    color: var(--lwv-color-text);
}

.lwv_subscription-modal-window__success-text {
    color: var(--lwv-color-text-light);
    line-height: 1.6;
}

.lwv_subscription-modal-window__success-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.lwv_subscription-modal-window__success-button {
    padding: 0.75rem 1.5rem;
    border-radius: var(--lwv-border-radius-medium);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--lwv-transition-fast);
}

.lwv_subscription-modal-window__success-button {
    background-color: var(--lwv-color-primary);
    color: white;
}

.lwv_subscription-modal-window__success-button:hover {
    background-color: var(--lwv-color-primary-dark);
}

.lwv_subscription-modal-window__success-button--unsubscribe {
    background-color: var(--lwv-color-background);
    color: var(--lwv-color-text);
}

.lwv_subscription-modal-window__success-button--unsubscribe:hover {
    background-color: var(--lwv-color-border);
}

.lwv_subscription-modal-window__unsubscribe-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.lwv_subscription-modal-window__unsubscribe-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.lwv_subscription-modal-window__unsubscribe-icon {
    font-size: 3rem;
    color: var(--lwv-color-success);
}

.lwv_subscription-modal-window__unsubscribe-title {
    font-size: 1.5rem;
    color: var(--lwv-color-text);
}

.lwv_subscription-modal-window__unsubscribe-text {
    color: var(--lwv-color-text-light);
    line-height: 1.6;
}

.lwv_subscription-modal-window__unsubscribe-close {
    padding: 0.75rem 1.5rem;
    background-color: var(--lwv-color-primary);
    color: white;
    border-radius: var(--lwv-border-radius-medium);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: background-color var(--lwv-transition-fast);
}

.lwv_subscription-modal-window__unsubscribe-close:hover {
    background-color: var(--lwv-color-primary-dark);
}

.lwv_contact-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2002;
    padding: 1rem;
}

.lwv_feedback-modal-window {
    background-color: var(--lwv-color-surface);
    border-radius: var(--lwv-border-radius-large);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--lwv-shadow-large);
}

.lwv_feedback-modal-window__container {
    position: relative;
    padding: 2rem;
}

.lwv_feedback-modal-window__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--lwv-color-background);
    border-radius: 50%;
    color: var(--lwv-color-text);
    transition: background-color var(--lwv-transition-fast);
}

.lwv_feedback-modal-window__close:hover {
    background-color: var(--lwv-color-border);
}

.lwv_feedback-modal-window__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lwv_feedback-modal-window__visual {
    display: flex;
    justify-content: center;
}

.lwv_feedback-modal-window__visual-animation {
    position: relative;
    width: 200px;
    height: 200px;
}

.lwv_feedback-modal-window__visual-circle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(99, 102, 241, 0.1);
}

.lwv_feedback-modal-window__visual-circle--1 {
    width: 200px;
    height: 200px;
    animation: pulse 3s ease-in-out infinite;
}

.lwv_feedback-modal-window__visual-circle--2 {
    width: 150px;
    height: 150px;
    top: 25px;
    left: 25px;
    animation: pulse 3s ease-in-out infinite 0.5s;
}

.lwv_feedback-modal-window__visual-circle--3 {
    width: 100px;
    height: 100px;
    top: 50px;
    left: 50px;
    animation: pulse 3s ease-in-out infinite 1s;
}

.lwv_feedback-modal-window__visual-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--lwv-color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.lwv_feedback-modal-window__form-section {
    flex: 1;
}

.lwv_feedback-modal-window__title {
    font-size: 1.75rem;
    color: var(--lwv-color-text);
    margin-bottom: 0.75rem;
    text-align: center;
}

.lwv_feedback-modal-window__description {
    color: var(--lwv-color-text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

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

.lwv_feedback-modal-window__form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.lwv_feedback-modal-window__hint-container {
    min-height: 1.5rem;
}

.lwv_feedback-modal-window__hint {
    font-size: 0.875rem;
    color: var(--lwv-color-error);
    opacity: 0;
    transition: opacity var(--lwv-transition-fast);
}

.lwv_feedback-modal-window__input-container {
    position: relative;
}

.lwv_feedback-modal-window__input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lwv-color-text-light);
    font-size: 1.25rem;
    pointer-events: none;
}

.lwv_feedback-modal-window__input,
.lwv_feedback-modal-window__textarea {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 2px solid var(--lwv-color-border);
    border-radius: var(--lwv-border-radius-medium);
    font-size: 1rem;
    font-family: 'Manrope', sans-serif;
    transition: border-color var(--lwv-transition-fast);
    min-height: 44px;
}

.lwv_feedback-modal-window__textarea {
    resize: vertical;
    min-height: 120px;
    padding-left: 1rem;
}

.lwv_feedback-modal-window__input:focus,
.lwv_feedback-modal-window__textarea:focus {
    outline: none;
    border-color: var(--lwv-color-primary);
}

.lwv_feedback-modal-window__input:invalid,
.lwv_feedback-modal-window__textarea:invalid {
    border-color: var(--lwv-color-error);
}

.lwv_feedback-modal-window__checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.lwv_feedback-modal-window__checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
    padding: 0.5rem;
    border-radius: var(--lwv-border-radius-small);
    transition: background-color var(--lwv-transition-fast);
}

.lwv_feedback-modal-window__checkbox-container:hover {
    background-color: rgba(99, 102, 241, 0.05);
}

.lwv_feedback-modal-window__checkbox {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
}

.lwv_feedback-modal-window__checkbox-custom {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--lwv-color-border);
    border-radius: var(--lwv-border-radius-small);
    flex-shrink: 0;
    margin-top: 0.125rem;
    position: relative;
    transition: all var(--lwv-transition-fast);
    pointer-events: none;
}

.lwv_feedback-modal-window__checkbox:checked + .lwv_feedback-modal-window__checkbox-custom {
    background-color: var(--lwv-color-primary);
    border-color: var(--lwv-color-primary);
}

.lwv_feedback-modal-window__checkbox:checked + .lwv_feedback-modal-window__checkbox-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.5rem;
    height: 0.5rem;
    background-color: white;
    border-radius: 1px;
}

.lwv_feedback-modal-window__checkbox-label {
    flex: 1;
    color: var(--lwv-color-text);
    font-size: 0.875rem;
    line-height: 1.4;
    user-select: none;
    pointer-events: none;
}

.lwv_feedback-modal-window__checkbox-link {
    color: var(--lwv-color-primary);
    font-weight: 500;
    pointer-events: auto;
}

.lwv_feedback-modal-window__checkbox-link:hover {
    text-decoration: underline;
}

.lwv_feedback-modal-window__submit {
    padding: 1rem 2rem;
    background-color: var(--lwv-color-primary);
    color: white;
    border-radius: var(--lwv-border-radius-medium);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: background-color var(--lwv-transition-fast);
    min-height: 44px;
}

.lwv_feedback-modal-window__submit:hover:not(:disabled) {
    background-color: var(--lwv-color-primary-dark);
}

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

.lwv_success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2003;
    padding: 1rem;
}

.lwv_success-notification-dialog {
    background-color: var(--lwv-color-surface);
    border-radius: var(--lwv-border-radius-large);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: var(--lwv-shadow-large);
}

.lwv_success-notification-dialog__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.lwv_success-notification-dialog__icon {
    font-size: 3rem;
    color: var(--lwv-color-success);
}

.lwv_success-notification-dialog__title {
    font-size: 1.5rem;
    color: var(--lwv-color-text);
}

.lwv_success-notification-dialog__text {
    color: var(--lwv-color-text-light);
    line-height: 1.6;
}

.lwv_success-notification-dialog__button {
    padding: 0.75rem 1.5rem;
    background-color: var(--lwv-color-primary);
    color: white;
    border-radius: var(--lwv-border-radius-medium);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: background-color var(--lwv-transition-fast);
}

.lwv_success-notification-dialog__button:hover {
    background-color: var(--lwv-color-primary-dark);
}

@media (max-width: 1024px) {
    .lwv_welcome-section__title {
        font-size: 2.25rem;
    }
    
    .lwv_about-section__block {
        gap: 2rem;
    }
    
    .lwv_features-section__title {
        font-size: 2.25rem;
    }
    
    .lwv_games-section__title {
        font-size: 2.25rem;
    }
    
    .lwv_faq-section__title {
        font-size: 2.25rem;
    }
    
    .lwv_reviews-section__title {
        font-size: 2.25rem;
    }
    
    .lwv_responsible-section__title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .lwv_legal-notification {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .lwv_site-header__top {
        justify-content: center;
        padding-top: 20px;
    }
    
    .lwv_site-header__menu-trigger {
        display: flex;
        order: 1;
    }
    
    .lwv_site-header__navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--lwv-color-surface);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--lwv-shadow-medium);
        gap: 1rem;
    }
    
    .lwv_site-header__navigation.active {
        display: flex;
    }
    
    .lwv_site-header__nav-group {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    
    .lwv_site-header__logo-area {
        order: 0;
        margin: 0;
        flex: 1;
        text-align: center;
    }
    
    .lwv_site-header__logo-image {
        max-width: 150px;
        max-height: 50px;
    }
    
    .lwv_site-header__nav-link {
        width: 100%;
        justify-content: center;
    }
    
    .lwv_welcome-section {
        padding: 3rem 0;
    }
    
    .lwv_welcome-section__title {
        font-size: 2rem;
    }
    
    .lwv_welcome-section__cards {
        gap: 1rem;
    }
    
    .lwv_welcome-section__card {
        min-width: 160px;
        padding: 1.5rem;
    }
    
    .lwv_about-section {
        padding: 3rem 0;
    }
    
    .lwv_about-section__block {
        flex-direction: column !important;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .lwv_about-section__image {
        max-width: 300px;
        max-height: 300px;
    }
    
    .lwv_about-section__title,
    .lwv_about-section__subtitle {
        font-size: 1.75rem;
    }
    
    .lwv_about-section__section-title {
        font-size: 1.75rem;
    }
    
    .lwv_features-section {
        padding: 3rem 0;
    }
    
    .lwv_features-section__title {
        font-size: 2rem;
    }
    
    .lwv_features-section__cards {
        gap: 1rem;
    }
    
    .lwv_features-section__card {
        min-width: 180px;
        padding: 1.5rem;
    }
    
    .lwv_games-section {
        padding: 3rem 0;
    }
    
    .lwv_games-section__title {
        font-size: 2rem;
    }
    
    .lwv_games-section__grid {
        gap: 1.5rem;
    }
    
    .lwv_games-section__card {
        min-width: 280px;
    }
    
    .lwv_faq-section {
        padding: 3rem 0;
    }
    
    .lwv_faq-section__title {
        font-size: 2rem;
    }
    
    .lwv_faq-section__category {
        padding: 1.5rem;
    }
    
    .lwv_faq-section__category-title {
        font-size: 1.25rem;
    }
    
    .lwv_reviews-section {
        padding: 3rem 0;
    }
    
    .lwv_reviews-section__title {
        font-size: 2rem;
    }
    
    .lwv_reviews-section__grid {
        gap: 1.5rem;
    }
    
    .lwv_reviews-section__card {
        min-width: 280px;
    }
    
    .lwv_responsible-section {
        padding: 3rem 1rem;
    }
    
    .lwv_responsible-section__title {
        font-size: 2rem;
    }
    
    .lwv_site-footer__content {
        padding: 3rem 1rem 2rem;
    }
    
    .lwv_site-footer__main {
        flex-direction: column;
        gap: 2rem;
    }
    
    .lwv_site-footer__links {
        width: 100%;
        justify-content: space-between;
    }
    
    .lwv_site-footer__link-group {
        min-width: 180px;
    }
    
    .lwv_age-confirmation-dialog {
        padding: 2rem 1.5rem;
    }
    
    .lwv_cookie-notification-bar {
        padding: 0.75rem;
    }
    
    .lwv_subscription-modal-window__benefits {
        grid-template-columns: 1fr;
    }
    
    .lwv_subscription-modal-window__success-actions {
        flex-direction: column;
    }
    
    .lwv_feedback-modal-window__content {
        flex-direction: column;
    }
    
    .lwv_scroll-indicator {
        right: 1rem;
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .lwv_content-container {
        padding: 0 .1rem;
    }
    
    .lwv_legal-notification {
        padding: 0.3rem 0.5rem;
    }
    
    .lwv_legal-notification__text {
        font-size: 0.7rem;
    }
    
    .lwv_welcome-section {
        padding: 2rem 0;
    }
    
    .lwv_welcome-section__title {
        font-size: 1.75rem;
    }
    
    .lwv_welcome-section__description {
        font-size: 1rem;
    }
    
    .lwv_welcome-section__cards {
        flex-direction: column;
        align-items: center;
    }
    
    .lwv_welcome-section__card {
        max-width: 100%;
        width: 100%;
    }
    
    .lwv_about-section {
        padding: 2rem 0;
    }
    
    .lwv_about-section__image {
        max-width: 250px;
        max-height: 250px;
    }
    
    .lwv_about-section__title,
    .lwv_about-section__subtitle,
    .lwv_about-section__section-title {
        font-size: 1.5rem;
    }
    
    .lwv_about-section__description {
        font-size: 1rem;
    }
    
    .lwv_about-section__highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .lwv_about-section__milestones {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .lwv_about-section__features {
        flex-direction: column;
        align-items: center;
    }
    
    .lwv_about-section__feature {
        width: 100%;
        max-width: 100%;
    }
    
    .lwv_features-section {
        padding: 2rem 0;
    }
    
    .lwv_features-section__title {
        font-size: 1.75rem;
    }
    
    .lwv_features-section__cards {
        flex-direction: column;
        align-items: center;
    }
    
    .lwv_features-section__card {
        max-width: 100%;
        width: 100%;
    }
    
    .lwv_games-section {
        padding: 2rem 0;
    }
    
    .lwv_games-section__title {
        font-size: 1.75rem;
    }
    
    .lwv_games-section__subtitle {
        font-size: 1rem;
    }
    
    .lwv_games-section__grid {
        flex-direction: column;
        align-items: center;
    }
    
    .lwv_games-section__card {
        max-width: 100%;
        width: 100%;
    }
    
    .lwv_faq-section {
        padding: 2rem 0;
    }
    
    .lwv_faq-section__title {
        font-size: 1.75rem;
    }
    
    .lwv_faq-section__category {
        padding: 1rem;
    }
    
    .lwv_faq-section__category-title {
        font-size: 1.125rem;
    }
    
    .lwv_reviews-section {
        padding: 2rem 0;
    }
    
    .lwv_reviews-section__title {
        font-size: 1.75rem;
    }
    
    .lwv_reviews-section__subtitle {
        font-size: 1rem;
    }
    
    .lwv_reviews-section__grid {
        flex-direction: column;
        align-items: center;
    }
    
    .lwv_reviews-section__card {
        max-width: 100%;
        width: 100%;
    }
    
    .lwv_responsible-section {
        padding: 2rem 0.5rem;
    }
    
    .lwv_responsible-section__title {
        font-size: 1.75rem;
    }
    
    .lwv_responsible-section__description {
        font-size: 1rem;
    }
    
    .lwv_responsible-section__partners-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .lwv_site-footer__content {
        padding: 2rem 0.5rem 1rem;
    }
    
    .lwv_site-footer__links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .lwv_site-footer__link-group {
        min-width: 100%;
    }
    
    .lwv_age-confirmation-dialog {
        padding: 1.5rem 1rem;
    }
    
    .lwv_age-confirmation-dialog__title {
        font-size: 1.5rem;
    }
    
    .lwv_cookie-notification-bar {
        padding: 0.5rem;
    }
    
    .lwv_cookie-consent-container__controls {
        flex-direction: column;
    }
    
    .lwv_subscription-modal-window__container {
        padding: 1rem;
    }
    
    .lwv_subscription-modal-window__title {
        font-size: 1.5rem;
    }
    
    .lwv_feedback-modal-window__container {
        padding: 1rem;
    }
    
    .lwv_feedback-modal-window__title {
        font-size: 1.5rem;
    }
    
    .lwv_success-notification-dialog {
        padding: 1.5rem 1rem;
    }
    
    .lwv_success-notification-dialog__title {
        font-size: 1.25rem;
    }
    
    .lwv_scroll-indicator {
        right: 0.5rem;
        bottom: 0.5rem;
        padding: 0.5rem;
    }
    
    .lwv_scroll-indicator__button {
        width: 2rem;
        height: 2rem;
        font-size: 0.875rem;
    }
    
    .lwv_scroll-indicator__progress {
        width: 2rem;
        height: 4rem;
    }
    
    .lwv_scroll-indicator__percentage {
        font-size: 0.625rem;
    }
}

@media (max-width: 320px) {
    .lwv_welcome-section__title {
        font-size: 1.5rem;
    }
    
    .lwv_about-section__title,
    .lwv_about-section__subtitle,
    .lwv_about-section__section-title {
        font-size: 1.25rem;
    }
    
    .lwv_features-section__title {
        font-size: 1.5rem;
    }
    
    .lwv_games-section__title {
        font-size: 1.5rem;
    }
    
    .lwv_faq-section__title {
        font-size: 1.5rem;
    }
    
    .lwv_reviews-section__title {
        font-size: 1.5rem;
    }
    
    .lwv_responsible-section__title {
        font-size: 1.5rem;
    }
    
    .lwv_site-footer__link-title {
        font-size: 1.125rem;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}