.content,
.hero {
    padding: var(--spacing-xl) var(--spacing-lg)
}

.cards,
nav ul {
    gap: var(--spacing-lg)
}

.logo,
nav a,
nav a:hover {
    color: var(--text-color)
}

.content h2,
.hero,
.hero-description,
.hero-section h1,
footer {
    text-align: center
}

.features-row--first .feature-card:nth-child(2),
.features-row--second .feature-card:nth-child(2) {
    margin-top: 15px
}

.feature-header h3,
.hero-section h1,
.why-us-header h2 {
    font-weight: 600;
    color: #fff
}

.footer-link,
.logo,
.nav-link,
nav a {
    text-decoration: none
}

.admin-card select,
.panel-sort select {
    font-family: Unbounded, sans-serif;
    transition: .3s
}

header {
    background-color: var(--primary-color);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm)
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center
}

nav a {
    font-weight: 700;
    transition: color .3s
}

.hero {
    background-color: var(--light-gray)
}

.hero h1 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 2.5rem
}

.content h2 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xl)
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    padding: var(--spacing-md)
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm)
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: var(--spacing-lg);
    margin-top: var(--spacing-xl)
}

.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px 0 24px;
    background: rgba(10, 10, 11, .5);
    z-index: 1000;
    height: 58px;
    width: calc(100% - 32px);
    max-width: 1298px;
    box-sizing: border-box;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, .05);
    backdrop-filter: blur(50.0px) brightness(80%) saturate(80.0%);
    -webkit-backdrop-filter: blur(50.0px) brightness(80%) saturate(80.0%);
}

.logo,
.navbar-left,
.navbar-right {
    display: flex;
    align-items: center
}

.logo {
    gap: .5rem
}

.nav-link,
.nav-links {
    align-items: center;
    display: flex
}

.logo-img {
    height: 24px;
    width: auto
}

.version {
    font-size: .75rem;
    padding: .15rem .3rem;
    background: color-mix(in srgb, var(--primary-color), transparent 60%);
    border-radius: 4px;
    color: var(--primary-color);
    margin-left: .5rem
}

.nav-links {
    gap: 2rem
}

.nav-link {
    gap: .5rem;
    color: var(--text-color);
    opacity: .7;
    transition: opacity .3s;
    font-size: .9rem
}

.nav-link:hover,
.toggle-password:hover {
    opacity: 1
}

.nav-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor
}

.button-primary {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 28px;
    border: none;
    cursor: pointer;
    transition: .2s;
    font-size: .95rem;
    font-weight: 500;
    position: relative;
    box-shadow: 0 0 20px color-mix(in srgb, var(--primary-color), transparent 80%)
}

.hero-description,
.why-us-header .subtitle {
    color: rgba(255, 255, 255, .7);
    line-height: 1.6
}

.button-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .15) 0, rgba(255, 255, 255, 0) 100%);
    border-radius: inherit;
    pointer-events: none
}

.button-primary:hover {
    transform: translateY(-1px);
    background: var(--secondary-color);
    box-shadow: 0 0 25px color-mix(in srgb, var(--primary-color), transparent 75%)
}

.button-primary svg,
.button-secondary svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2
}

.button-primary span {
    position: relative;
    z-index: 1;
    letter-spacing: .2px
}

.main-content {
    padding-top: 0
}

.hero-section {
    position: relative;
    height: calc(100vh - 32px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 160px 20px 24px;
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto
}

.hero-section h1 {
    font-size: 48px;
    margin: 0
}

.hero-description {
    font-size: 18px;
    max-width: 800px;
    margin: 0
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 0
}

.button-secondary {
    display: flex;
    align-items: center;
    gap: .75rem;
    border: 1px solid rgba(255, 255, 255, .1);
    cursor: pointer;
    font-size: .95rem;
    font-weight: 500;
    backdrop-filter: blur(50.0px) brightness(85%) saturate(85.0%);
    -webkit-backdrop-filter: blur(50.0px) brightness(85%) saturate(85.0%);
}

.button-secondary:hover {
    border-color: rgba(255, 255, 255, .15)
}

.features-preview {
    width: 100%;
    flex: 1;
    margin: 0;
    background: rgba(255, 255, 255, .02);
    border-radius: 24px;
    position: relative;
    backdrop-filter: blur(20px);
    overflow: hidden;
    padding: 0
}

.activation-promocodes-container,
.admin-container,
.auth-container,
.feature-card,
.modal-content,
.notification,
.panel-container,
.shop-card {
    backdrop-filter: blur(50.0px) brightness(80%) saturate(80.0%);
    -webkit-backdrop-filter: blur(50.0px) brightness(80%) saturate(80.0%);
}

.screenshots-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 24px
}

.screenshots-swaper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 24px
}

.screenshots-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .45s ease;
    will-change: transform;
    touch-action: pan-y;
    cursor: grab
}

.screenshots-track.dragging {
    transition: none;
    cursor: grabbing
}

.screenshot-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%
}

.screenshots-slider img,
.screenshot-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none
}

.scroll-down-button,
.scroll-up-button {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10
}

.auth-tab,
.profile-header,
.video-container {
    position: relative
}

.scroll-down-button svg,
.scroll-up-button svg {
    stroke: white;
    width: 20px;
    height: 20px;
    opacity: .7;
    transition: .2s
}

.scroll-down-button:hover svg,
.scroll-up-button:hover svg {
    stroke: var(--primary-color);
    opacity: 1
}

.scroll-down-button,
.scroll-up-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    cursor: pointer;
    transition: .2s;
    margin-top: 40px
}

.feature-card,
.stat-card {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    transition: .3s;
    backdrop-filter: blur(50.0px) brightness(80%) saturate(80.0%);
    -webkit-backdrop-filter: blur(50.0px) brightness(80%) saturate(80.0%);
}

.scroll-down-button:hover,
.scroll-up-button:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .15)
}

.why-us {
    min-height: 90vh;
    padding: 140px 20px 80px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    scroll-margin-top: 320px
}

.why-us-header {
    text-align: left;
    margin-bottom: 60px;
    max-width: 600px
}

.why-us-header h2 {
    font-size: 56px;
    margin-bottom: 20px
}

.why-us-header .subtitle {
    font-size: 16px;
    margin: 0
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.features-row {
    display: flex;
    gap: 30px
}

.features-row--first,
.features-row--second {
    justify-content: flex-start
}

.features-row--first .feature-card:first-child {
    margin-left: 0
}

.features-row--second .feature-card:first-child {
    margin-left: 20px
}

.features-row--second .feature-card:nth-child(3) {
    margin-top: 30px
}

.feature-card {
    border-radius: 24px;
    padding: 20px;
    width: 100%;
    max-width: 500px
}

.feature-card:hover {
    background: rgba(255, 255, 255, .03);
    border-color: rgba(255, 255, 255, .08);
    transform: translateY(-2px)
}

.feature-header {
    margin-bottom: 16px
}

.feature-header h3 {
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 8px
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .7)
}

.demo-section {
    padding: 120px 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto
}

.activation-promocodes-header,
.demo-header,
.shop-header {
    text-align: center;
    margin-bottom: 48px
}

.activation-promocodes-header h2,
.admin-container h2,
.demo-header h2,
.panel-container h2,
.shop-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px
}

.video-container {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    background: rgba(255, 255, 255, .02);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 12px
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none
}

.video-caption {
    color: rgba(255, 255, 255, .5);
    font-size: 14px;
    text-align: right;
    margin-bottom: 64px
}

.video-placeholder svg {
    width: 64px;
    height: 64px;
    color: rgba(255, 255, 255, .7);
    transition: .2s
}

.video-placeholder:hover svg {
    color: var(--primary-color);
    transform: scale(1.1)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.stat-card {
    border-radius: 24px;
    padding: 32px;
    text-align: center
}

.shop-card:hover,
.stat-card:hover {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .1);
    transform: translateY(-2px);
    backdrop-filter: blur(50.0px) brightness(90%) saturate(80.0%);
    -webkit-backdrop-filter: blur(50.0px) brightness(90%) saturate(80.0%);
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.stat-label {
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    line-height: 1.4
}

.footer {
    background-color: var(--background-color);
    padding: var(--spacing-xl) var(--spacing-lg);
    color: var(--text-color);
    opacity: 0.8;
    backdrop-filter: blur(50.0px) brightness(70%) saturate(70.0%);
    -webkit-backdrop-filter: blur(50.0px) brightness(70%) saturate(70.0%);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.footer-column--logo {
    align-items: flex-start
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    margin-top: 8px
}

.auth-tab,
.checkbox-label,
.footer-link,
.forgot-password,
.form-switch,
.info-label {
    color: rgba(255, 255, 255, .7)
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-link {
    font-size: 14px;
    transition: color .3s
}

.footer-link:hover,
.forgot-password:hover {
    color: var(--primary-color)
}

.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto
}

.auth-container {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 400px
}

.auth-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px
}

.auth-tab {
    background: 0 0;
    border: none;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 16px;
    cursor: pointer;
    transition: color .3s
}

.button-logout,
.info-value {
    font-weight: 500;
    color: #fff
}

.auth-tab.active,
.auth-tab:hover,
.form-switch a:hover,
.modal-close:hover,
.notification-close:hover {
    color: #fff
}

.auth-tab::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: width .3s
}

.auth-tab.active::after {
    width: 60%
}

.auth-form {
    display: none
}

.auth-form.active {
    display: block
}

.form-group {
    margin-bottom: 20px
}

#passwordModal .form-group input,
.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    transition: border-color .3s
}

.checkbox-label a,
.form-switch a {
    color: var(--primary-color)
}

.forgot-password,
.form-switch a {
    text-decoration: none;
    transition: color .3s
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, .5)
}

#passwordModal .form-group input:focus,
.activation-navigate-form input:focus,
.admin-card input:focus,
.admin-card select:focus,
.form-group input:focus,
.page-form input:focus,
.panel-search input:focus,
.promo-code input:focus {
    outline: 0;
    border-color: var(--primary-color)
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px
}

.checkbox-label {
    display: inline-block;
    align-items: center;
    word-break: break-all;
    gap: 8px;
    font-size: 14px;
    padding: 5px;
    margin-bottom: 3px
}

.checkbox-label input,
.payment-icon {
    width: 16px;
    height: 16px
}

.checkbox-label a {
    text-decoration: none;
    font-weight: 500
}

.forgot-password {
    font-size: 14px
}

.auth-form .button-primary {
    width: 100%;
    justify-content: center;
    margin-bottom: 16px
}

.form-switch {
    text-align: center;
    font-size: 14px
}

@media (max-width:768px) {
    .navbar {
        width: calc(100% - 32px);
        padding: 0 6px 0 16px
    }

    .hero-description br,
    .nav-link span,
    .version {
        display: none
    }

    .nav-links {
        gap: 1rem
    }

    .hero-section {
        height: calc(100vh - 16px);
        padding: 140px 20px 20px
    }

    .features-preview {
        height: 35vh
    }

    .screenshots-slider::before {
        box-shadow: inset 0 0 30px 15px rgba(10, 10, 11, .8);
        filter: blur(8px)
    }

    .hero-section h1 {
        font-size: 36px
    }

    .auth-tab,
    .hero-description {
        font-size: 16px
    }

    .why-us {
        padding: 120px 20px 60px;
        min-height: auto
    }

    .why-us-header {
        margin-bottom: 40px
    }

    .why-us-header h2 {
        font-size: 40px
    }

    .why-us-header .subtitle {
        font-size: 14px
    }

    .features-grid {
        gap: 20px
    }

    .features-row {
        flex-direction: column;
        gap: 16px
    }

    .features-row--first .feature-card,
    .features-row--second .feature-card {
        margin-left: 0;
        margin-top: 0;
        max-width: 100%
    }

    .feature-card,
    .stat-card {
        padding: 24px
    }

    .feature-header h3 {
        font-size: 20px
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .stat-value {
        font-size: 32px
    }

    .footer-container {
        flex-direction: column;
        gap: 32px
    }

    .footer-column {
        align-items: center;
        text-align: center
    }

    .footer-column--logo {
        align-items: center
    }

    .auth-section {
        padding: 120px 20px 60px
    }

    .auth-container {
        padding: 32px;
        max-width: 350px
    }
}

.profile-section,
.promocodes-section,
.shop-section {
    min-height: 100vh;
    padding: 140px 20px 80px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center
}

.profile-header,
.profile-info {
    margin-bottom: 32px
}

.footer-container,
.info-row {
    justify-content: space-between
}

.profile-container,
.promocodes-container {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 1200px;
    backdrop-filter: blur(50.0px) brightness(80%) saturate(80.0%);
    -webkit-backdrop-filter: blur(50.0px) brightness(80%) saturate(80.0%);
}

.profile-avatar {
    position: absolute;
    bottom: -40px;
    left: 24px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(108, 92, 231, .3);
    z-index: 3
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.profile-background {
    width: 100%;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, .1)
}

.background-blur,
.background-overlay {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0
}

.background-blur {
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    filter: blur(2px);
    z-index: 1
}

.background-overlay {
    background: rgba(0, 0, 0, .5);
    z-index: 2
}

.profile-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .7
}

.profile-container h2 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-top: 48px;
    margin-bottom: 24px
}

.info-row {
    display: flex;
    padding: 12px 0;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    align-items: flex-start;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    white-space: normal;
}

.info-label,
.info-value {
    font-size: 14px;
    max-width: 80%;
    margin-left: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    white-space: normal;
}

.profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center
}

.profile-actions .button-logout,
.profile-actions .button-primary,
.profile-actions .button-secondary {
    flex: 1;
    min-width: 150px;
    justify-content: center
}

.button-logout {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: #e74c3c;
    padding: 10px 20px;
    border-radius: 28px;
    border: none;
    cursor: pointer;
    transition: .2s;
    font-size: .95rem;
    box-shadow: 0 0 20px rgba(231, 76, 60, .2)
}

.button-logout:hover {
    transform: translateY(-1px);
    background: #f15a29;
    box-shadow: 0 0 25px rgba(231, 76, 60, .25)
}

.shop-container {
    width: 100%;
    max-width: 1200px
}

.shop-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .7);
    max-width: 600px;
    margin: 0 auto
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 64px
}

.shop-card {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 24px;
    transition: .3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 350px
}

.shop-image-placeholder {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    margin-bottom: 16px;
    padding: 10%;
    box-sizing: border-box
}

.shop-image-placeholder img {
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain
}

.modal-product-details h4,
.shop-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px
}

#modalProductPrice,
.shop-price {
    font-size: 16px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 16px
}

#modalProductPrice {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 0;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    color: #fff
}

.modal-body,
.modal-header,
.promocodes-container h2 {
    margin-bottom: 24px
}

#modalProductOldPrice,
.old-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, .4);
    margin-left: 8px
}

#modalProductOldPrice {
    margin-left: 0;
    font-size: 16px;
    font-weight: 500
}

.modal-close,
.modal-header h3,
.payment-label {
    color: rgba(255, 255, 255, .7)
}

.typetex-label {
    display: block;
    margin-bottom: 8px;
    color: #fff
}

#selectTexwork {
    width: 100%;
    padding: 12px 36px 12px 16px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-family: Unbounded, sans-serif;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: border-color .3s, box-shadow .3s
}

#selectTexwork:focus {
    outline: 0;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px color-mix(in srgb, var(--primary-color) 20%, transparent)
}

#selectTexwork option {
    background: #0a0a0b;
    color: #fff
}

.shop-button.button-primary {
    width: 100%;
    justify-content: center;
    margin-top: auto
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(0, 0, 0, .7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box
}

.modal-content {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 32px;
    width: 100%;
    max-width: 800px;
    margin: 0;
    position: relative;
    max-height: calc(100dvh - 32px);
    overflow-y: hidden;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: 0 0;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: color .3s
}

.modal.active {
    display: flex
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 600
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.modal-product-info {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 20px;
    align-items: flex-start
}

.modal-product-info .shop-image-placeholder {
    width: 160px;
    height: 160px
}

.modal-product-info .shop-image-placeholder img {
    max-width: 72%;
    max-height: 72%
}

.modal-product-details {
    min-width: 0
}

.price-summary {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient(180deg, rgba(255, 136, 0, .12), rgba(255, 255, 255, .03))
}

.price-summary-label,
.payment-label {
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55)
}

.price-summary-duration,
.modal-product-description {
    font-size: 14px;
    color: rgba(255, 255, 255, .72);
    margin: 0
}

.modal-product-description {
    margin-top: 14px
}

.payment-flow {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.payment-options {
    display: grid;
    gap: 12px
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .04);
    cursor: pointer;
    transition: border-color .3s, background .3s, transform .3s
}

.payment-option:hover {
    border-color: rgba(255, 136, 0, .4);
    background: rgba(255, 255, 255, .06);
    transform: translateY(-1px)
}

.payment-option input {
    margin: 0;
    accent-color: var(--primary-color);
}

.payment-option-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #fff
}

.payment-option-title {
    font-size: 16px;
    font-weight: 600
}

.payment-option-meta {
    font-size: 14px;
    color: rgba(255, 255, 255, .65)
}

.payment-option.is-selected {
    border-color: rgba(255, 136, 0, .55);
    background: rgba(255, 136, 0, .12);
    box-shadow: 0 0 0 1px rgba(255, 136, 0, .18)
}

.promo-code-block {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.promo-code-toggle {
    padding: 0;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    text-align: left;
    cursor: pointer
}

.promo-code-toggle:hover {
    color: #fff
}

.promo-code {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch
}

.promo-code input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    transition: border-color .3s;
    background: rgba(255, 255, 255, .05);
    font-size: 14px;
    color: #fff
}

.promo-code input::placeholder {
    color: rgba(255, 255, 255, .5)
}

.promo-code-button {
    width: 100%;
    padding: 10px 16px;
    font-size: 14px
}

.modal-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center
}

.modal-continue {
    width: 100%;
    justify-content: center
}

.modal-fupay {
    width: 100%;
    color: rgba(255, 255, 255, .78);
    text-align: center;
    text-decoration: none
}

.modal-fupay:hover {
    color: #fff
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    padding: 12px 16px;
    font-size: 14px
}

#passwordModal .modal-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px
}

#passwordModal .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px
}

#passwordModal .form-group input::placeholder {
    color: rgba(255, 255, 255, .5)
}

.promocodes-container h2 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    text-align: center
}

.activation-promocodes-table,
.promocodes-table {
    width: 100%;
    margin-bottom: 32px
}

.table-header {
    background: rgba(255, 255, 255, .05);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-weight: 600;
    color: rgba(255, 255, 255, .7)
}

.activation-table-body,
.table-body {
    max-height: 400px;
    overflow-y: auto
}

.table-body::-webkit-scrollbar {
    width: 6px
}

.table-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .05);
    border-radius: 3px
}

.table-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .2);
    border-radius: 3px
}

.table-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, .3)
}

.table-row {
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    color: #fff
}

.activation-table-row:hover,
.panel-table tr:hover,
.table-row:hover {
    background: rgba(255, 255, 255, .03)
}

.activation-table-row span:nth-child(6),
.table-row span:first-child {
    font-weight: 500;
    color: var(--primary-color)
}

.promocodes-actions {
    display: flex;
    justify-content: center;
    gap: 16px
}

.promocodes-actions .button-primary {
    min-width: 200px;
    justify-content: center
}

#notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end
}

.notification {
    position: relative;
    background: rgba(255, 255, 255, .02);
    border: 1px solid color-mix(in srgb, var(--primary-color), transparent 50%);
    border-radius: 24px;
    padding: 16px 24px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
    max-width: 400px;
    animation: .6s cubic-bezier(.2, .8, .4, 1) forwards fade-in;
    overflow: hidden;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal
}

.notification.closing {
    animation: .6s cubic-bezier(.6, 0, .8, .2) forwards fade-out
}

.notification::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: 0 0;
    animation: 5s linear forwards shrink;
    transform-origin: left
}

@keyframes shrink {
    from {
        width: 100%
    }

    to {
        width: 0
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateX(100%) scale(.95)
    }

    80% {
        transform: translateX(0) scale(1.01)
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1)
    }
}

@keyframes fade-out {
    from {
        opacity: 1;
        transform: translateX(0) scale(1)
    }

    to {
        opacity: 0;
        transform: translateX(100%) scale(.95)
    }
}

.notification-close {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background: 0 0;
    border: none;
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    cursor: pointer;
    transition: color .3s
}

.podval-penis-block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    padding: 160px 20px 24px;
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto
}

.admin-section,
.panel-section {
    min-height: 100vh;
    padding: 140px 20px 80px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    user-select: all !important
}

.admin-container,
.panel-container {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 40px;
    text-align: center
}

.admin-card,
.admin-card select {
    background: rgba(255, 255, 255, .05)
}

.admin-description,
.panel-description {
    font-size: 16px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 32px
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 10px
}

.admin-card {
    border-radius: 16px;
    padding: 20px;
    text-align: left
}

.admin-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px
}

.admin-card input,
.admin-card select {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px
}

.info-block {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px
}

.info-block p {
    font-size: 14px;
    color: rgba(255, 255, 255, .7)
}

.info-block span:first-child {
    color: #fff;
    font-weight: 550
}

.button-secondary {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, .1);
    border-radius: 28px;
    color: #fff;
    text-decoration: none;
    transition: .3s
}

.admin-card select,
.panel-search input {
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff
}

.button-secondary:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-2px)
}

.footer-container {
    display: flex;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .7)
}

.footer-right {
    display: flex;
    gap: 16px
}

#generatedKeysList {
    max-height: 100px;
    overflow-y: auto;
    margin-bottom: 12px;
    padding-left: 20px;
    color: rgba(255, 255, 255, .7);
    user-select: all !important
}

.admin-card select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 12px 36px 12px 16px;
    margin-bottom: 12px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    background-repeat: no-repeat;
    background-position: right 16px center
}

.panel-search input,
.panel-table {
    background: rgba(255, 255, 255, .05)
}

.admin-card select:focus,
.panel-sort select:focus {
    outline: 0;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px color-mix(in srgb, var(--primary-color) 20%, transparent)
}

.admin-card select option,
.panel-sort select option {
    background: #0a0a0b;
    color: #fff;
    font-size: 14px;
    padding: 8px
}

.admin-card select::-ms-expand {
    display: none
}

.panel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap
}

.panel-search input {
    width: 300px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px
}

.panel-sort {
    display: flex;
    gap: 16px;
    align-items: center
}

.panel-sort select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 12px 36px 12px 16px;
    background: right 16px center no-repeat rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    cursor: pointer
}

.panel-sort select::-ms-expand {
    display: none
}

.panel-table {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .1)
}

.panel-table table {
    width: 100%;
    border-collapse: collapse
}

.panel-table td,
.panel-table th {
    padding: 16px;
    text-align: left;
    font-size: 14px;
    color: rgba(255, 255, 255, .7)
}

.panel-table th {
    background: rgba(255, 255, 255, .02);
    font-weight: 600;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.panel-table td {
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.panel-table tr:last-child td {
    border-bottom: none
}

.user-info {
    display: flex;
    align-items: center;
    gap: 8px
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover
}

.panel-table .button-primary,
.panel-table .button-secondary {
    margin: 4px;
    padding: 8px 16px;
    font-size: 12px
}

.panel-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    gap: 16px;
    flex-wrap: wrap
}

.activation-navigate-form,
.page-form {
    display: flex;
    gap: 8px
}

.page-form input {
    width: 100px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px
}

.activation-promocodes-section {
    min-height: 100vh;
    padding: 140px 20px 80px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center
}

.activation-promocodes-container {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 40px;
    width: 100%
}

.activation-promocodes-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 24px
}

.activation-button-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-color);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background .3s, transform .1s
}

.activation-button-logout,
.activation-button-secondary {
    display: flex;
    padding: 8px 16px;
    background: rgba(255, 255, 255, .05);
    font-weight: 500;
    gap: 8px;
    cursor: pointer
}

.activation-button-primary:hover {
    background: #d43f27;
    transform: translateY(-1px)
}

.activation-button-logout:active,
.activation-button-primary:active,
.activation-button-secondary:active {
    transform: translateY(0)
}

.activation-promocodes-header .activation-button-primary {
    justify-content: center;
    min-width: 200px
}

.activation-button-secondary {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    transition: background .3s, border-color .3s, transform .1s
}

.activation-button-secondary:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .15);
    transform: translateY(-1px)
}

.activation-button-logout {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 14px;
    transition: background .3s, border-color .3s, color .3s, transform .1s
}

.activation-table-header,
.activation-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 2fr 1fr 1fr 2fr;
    padding: 12px 16px;
    font-size: 14px
}

.activation-button-logout:hover {
    background: rgba(255, 255, 255, .08);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-1px)
}

.activation-table-header {
    background: rgba(255, 255, 255, .05);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-weight: 600;
    color: rgba(255, 255, 255, .7);
    border-radius: 16px 16px 0 0
}

.activation-table-body::-webkit-scrollbar {
    width: 6px
}

.activation-table-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .05);
    border-radius: 3px
}

.activation-table-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .2);
    border-radius: 3px
}

.activation-table-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, .3)
}

.activation-table-row {
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    color: #fff;
    transition: background .3s;
    align-items: start
}

.activation-table-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end
}

.activation-promocodes-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.activation-navigate-form input {
    width: 120px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    transition: border-color .3s
}

.activation-navigate-form input::placeholder {
    color: rgba(255, 255, 255, .5)
}

.activation-navigate-form .activation-button-primary {
    padding: 10px 20px
}

@media (max-width:768px) {
    .profile-avatar {
        width: 60px;
        height: 60px;
        bottom: -30px;
        left: 20px;
        border-width: 2px
    }

    .profile-background {
        height: 100px
    }

    .activation-promocodes-section,
    .promocodes-section,
    .shop-section {
        padding: 120px 20px 60px
    }

    .activation-promocodes-header h2,
    .shop-header h2 {
        font-size: 28px
    }

    .shop-description {
        font-size: 14px
    }

    .shop-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px
    }

    .shop-card {
        padding: 20px;
        min-height: 300px
    }

    .shop-image-placeholder {
        height: 120px
    }

    .modal-content {
        padding: 24px;
        max-width: 500px
    }

    .modal-body,
    .panel-navigation {
        flex-direction: column
    }

    .modal-product-info {
        grid-template-columns: 120px minmax(0, 1fr)
    }

    .modal-product-info .shop-image-placeholder {
        width: 120px;
        height: 120px
    }

    .activation-promocodes-container,
    .promocodes-container {
        padding: 32px
    }

    .table-header,
    .table-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
        font-size: 12px;
        padding: 10px 12px
    }

    .podval-penis-block {
        padding: 140px 20px 20px
    }

    .admin-card select {
        font-size: 12px;
        padding: 10px 14px
    }

    .panel-controls {
        flex-direction: column;
        align-items: stretch
    }

    .panel-search input {
        width: 100%
    }

    .panel-sort select {
        font-size: 12px;
        padding: 10px 30px 10px 14px
    }

    .panel-table td,
    .panel-table th {
        font-size: 12px;
        padding: 12px
    }

    .activation-table-header,
    .activation-table-row {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1.5fr 1fr 1fr 2fr;
        font-size: 12px;
        padding: 10px 12px
    }

    .activation-navigate-form input {
        width: 100px
    }
}

@media (max-width:480px) {
    .navbar {
        top: 8px;
        padding: 0 6px 0 12px
    }

    .logo-img {
        height: 20px
    }

    .hero-section {
        padding: 120px 16px 16px
    }

    .features-preview {
        height: 30vh
    }

    .screenshots-slider::before {
        box-shadow: inset 0 0 20px 10px rgba(10, 10, 11, .8);
        filter: blur(6px)
    }

    .hero-section h1,
    .stat-value {
        font-size: 28px
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px
    }

    .activation-promocodes-section,
    .auth-section,
    .promocodes-section,
    .shop-section,
    .why-us {
        padding: 100px 16px 40px
    }

    .why-us-header h2 {
        font-size: 32px
    }

    .activation-promocodes-subtitle,
    .auth-tab,
    .footer-column h4,
    .shop-price,
    .why-us-header .subtitle {
        font-size: 14px
    }

    #modalProductPrice {
        font-size: 28px
    }

    .features-grid {
        gap: 16px
    }

    .feature-card,
    .stat-card {
        padding: 20px
    }

    .feature-header h3 {
        font-size: 18px
    }

    .demo-section {
        padding: 80px 16px
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .footer {
        padding: var(--spacing-lg) var(--spacing-md)
    }

    .checkbox-label,
    .footer-copyright,
    .footer-link,
    .forgot-password,
    .form-switch,
    .shop-description {
        font-size: 12px
    }

    .auth-container {
        padding: 24px;
        max-width: 300px
    }

    .form-group input {
        font-size: 12px;
        padding: 10px 12px
    }

    .profile-container {
        padding: 24px;
        max-width: 350px
    }

    .profile-avatar {
        width: 50px;
        height: 50px;
        bottom: -25px;
        left: 16px;
        border-width: 2px
    }

    .profile-background {
        height: 80px
    }

    .activation-promocodes-header h2,
    .shop-header h2 {
        font-size: 24px
    }

    .shop-grid {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .shop-card {
        padding: 16px;
        min-height: 280px
    }

    .shop-image-placeholder {
        height: 100px
    }

    .activation-table-row span:nth-child(6),
    .modal-header h3,
    .modal-product-details h4,
    .shop-card h3,
    .table-row span:first-child {
        font-size: 16px
    }

    .modal-content {
        padding: 16px;
        max-width: 360px
    }

    .modal-product-info {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .modal-product-info .shop-image-placeholder {
        width: 100px;
        height: 100px;
        justify-self: center
    }

    .promo-code input,
    .promo-code-button {
        width: 100%
    }

    .payment-option {
        padding: 14px 16px
    }

    .activation-promocodes-navigation,
    .modal-footer {
        flex-direction: column
    }

    .modal-continue,
    .modal-fupay {
        width: 100%;
        min-width: unset
    }

    .activation-promocodes-container,
    .promocodes-container {
        padding: 24px
    }

    .promocodes-container h2 {
        font-size: 20px
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 8px
    }

    .table-header span,
    .table-row span {
        padding: 8px 0
    }

    #notification-container {
        bottom: 10px;
        right: 10px
    }

    .notification {
        max-width: 250px;
        font-size: 12px;
        padding: 12px 20px
    }

    .activation-table-header,
    .activation-table-row {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 12px
    }

    .activation-table-header span,
    .activation-table-row span {
        padding: 4px 0
    }

    .activation-table-actions {
        justify-content: center;
        margin-top: 8px
    }

    .activation-navigate-form {
        width: 100%;
        justify-content: center
    }

    .activation-navigate-form input {
        width: 80px
    }
}

.form-group {
    position: relative
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #fff;
    opacity: .7;
    transition: opacity .3s
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex: 1;
}

.progress-bar.active {
    background: var(--primary-color);
}

.progress-bar:hover {
    background: rgba(255, 136, 0, 0.5);
}

.progress-bars {
    display: flex;
    gap: 8px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    z-index: 3;
}

/* Анимации появления элементов */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Задержки для анимации карточек */
.feature-card:nth-child(1) {
    transition-delay: 0.1s;
}

.feature-card:nth-child(2) {
    transition-delay: 0.2s;
}

.feature-card:nth-child(3) {
    transition-delay: 0.3s;
}

.feature-card:nth-child(4) {
    transition-delay: 0.4s;
}

.feature-card:nth-child(5) {
    transition-delay: 0.5s;
}

.stat-card:nth-child(1) {
    transition-delay: 0.1s;
}

.stat-card:nth-child(2) {
    transition-delay: 0.2s;
}

.stat-card:nth-child(3) {
    transition-delay: 0.3s;
}

.stat-card:nth-child(4) {
    transition-delay: 0.4s;
}

/* Стили для кнопки скролла */
.scroll-down-button {
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    margin-top: 40px;
}

.scroll-down-button:hover {
    transform: translateX(-50%) translateY(-3px);
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .15);
}

.scroll-down-button svg {
    stroke: white;
    width: 20px;
    height: 20px;
    opacity: .7;
    transition: all 0.3s ease;
}

.scroll-down-button:hover svg {
    stroke: var(--primary-color);
    opacity: 1;
    transform: translateY(2px);
}

/* Анимация статистики */
.stat-card .stat-value {
    transition: color 0.3s ease, transform 0.3s ease;
}

.stat-card.animated .stat-value {
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Дополнительные стили для слайдера */
.screenshots-slider {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.screenshots-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    transform: scale(1.02);
}

.screenshots-slider img.active {
    opacity: 1;
    transform: scale(1);
}

/* Анимация для навигации */
.nav-link,
.button-primary,
.button-secondary {
    transition: all 0.3s ease;
}

/* Эффект пульсации для привлечения внимания */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 136, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 136, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 136, 0, 0);
    }
}

.button-primary.pulse {
    animation: pulse 2s infinite;
}

/* Анимация загрузки */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Адаптивные стили для слайдера */
@media (max-width: 768px) {
    .progress-bars {
        width: 60px;
        bottom: 15px;
    }

    .progress-bar {
        height: 3px;
    }

    .scroll-down-button {
        width: 36px;
        height: 36px;
        bottom: 15px;
    }

    .scroll-down-button svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .progress-bars {
        width: 50px;
        bottom: 10px;
    }

    .progress-bar {
        height: 2px;
    }

    .scroll-down-button {
        width: 32px;
        height: 32px;
        bottom: 10px;
    }

    .scroll-down-button svg {
        width: 16px;
        height: 16px;
    }
}

/* Стили для состояний загрузки */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: inherit;
    z-index: 1;
}

/* Анимация для появления модальных окон */
.modal-content {
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Анимация для уведомлений */
.notification {
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.alert-error {
    background-color: #ffebee;
    border: 1px solid #f44336;
    color: #c62828;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form .form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.auth-form .form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.auth-form .form-group input.error {
    border-color: #f44336;
}

/* Slider overrides: horizontal swipe without vignette */
.screenshots-slider {
    border-radius: 24px;
}

.screenshots-slider::before {
    content: none !important;
}

.screenshots-swaper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
}

.screenshots-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .45s ease;
    will-change: transform;
    touch-action: pan-y;
    cursor: grab;
}

.screenshots-track.dragging {
    transition: none;
    cursor: grabbing;
}

.screenshot-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.screenshots-slider img,
.screenshot-slide img {
    position: static !important;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 24px;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    cursor: pointer;
    z-index: 4;
    backdrop-filter: blur(50.0px) brightness(80%) saturate(80.0%);
    -webkit-backdrop-filter: blur(50.0px) brightness(80%) saturate(80.0%);
    transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.slider-arrow:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.slider-arrow:active {
    background: rgba(255, 255, 255, 0.14);
}

.slider-arrow:focus,
.slider-arrow:focus-visible {
    outline: none;
}

.slider-arrow-left {
    left: 18px;
}

.slider-arrow-right {
    right: 18px;
}

.slider-arrow svg {
    pointer-events: none;
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 44px;
        height: 44px;
    }

    .slider-arrow-left {
        left: 12px;
    }

    .slider-arrow-right {
        right: 12px;
    }
}

@media (max-width: 480px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
}
