::selection {
    background: var(--white);
    color: var(--black);
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--white);
    opacity: 0.25;
    animation: float-particle 20s linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

header.hidden {
    transform: translateY(-100%);
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.3em;
    color: var(--white);
    text-decoration: none;
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--white);
}

nav a:hover::after {
    width: 100%;
}

.parallax-letter:hover {
    transform: translateY(-12px);
    text-shadow: 
        0 1px 0 #ddd,
        0 2px 0 #d0d0d0,
        0 3px 0 #ccc,
        0 4px 0 #c9c9c9,
        0 5px 0 #bbb,
        0 6px 0 #b0b0b0,
        0 7px 0 #aaa,
        0 8px 0 #a0a0a0,
        0 9px 0 #909090,
        0 10px 0 #808080,
        0 12px 0 #707070,
        0 14px 0 #606060,
        0 18px 20px rgba(0,0,0,0.5),
        0 25px 35px rgba(0,0,0,0.4);
}

.badge-item.flicker {
    animation: neonFlicker 0.15s ease;
}

@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    25% { opacity: 0.4; }
    50% { opacity: 0.8; }
    75% { opacity: 0.2; }
}

section {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    letter-spacing: 0.2em;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    text-shadow: 
        0 1px 0 #ccc,
        0 2px 0 #c9c9c9,
        0 3px 0 #bbb,
        0 4px 0 #b9b9b9,
        0 5px 0 #aaa,
        0 6px 0 #a0a0a0,
        0 7px 10px rgba(0,0,0,0.4),
        0 10px 20px rgba(0,0,0,0.3);
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--white), transparent);
    transition: width 0.8s ease 0.3s;
}

.section-title.visible::after {
    width: 100px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 2;
}

.about-text p {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.about-text p.visible {
    opacity: 1;
    transform: translateX(0);
}

.specs {
    border: 1px solid var(--border);
    padding: 40px;
    background: linear-gradient(135deg, rgba(26,26,26,0.5), transparent);
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease 0.2s;
}

.specs.visible {
    opacity: 1;
    transform: translateX(0);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-item .label {
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.spec-item .value {
    color: var(--white);
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.feature-item {
    background: var(--black);
    padding: 40px 30px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    counter-increment: feature;
    opacity: 0;
    transform: translateY(40px);
    text-align: center;
}

.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-item::before {
    content: counter(feature, decimal-leading-zero);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--border);
    position: absolute;
    top: 20px;
    right: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--dark-gray);
    transform: translateY(-5px) scale(1.02);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.feature-item:hover::before {
    color: var(--gray);
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    fill: var(--gray);
    transition: fill 0.3s ease;
    display: block;
}

.feature-item:hover .feature-icon {
    fill: var(--white);
}

.feature-item h3 {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    text-shadow: 
        0 1px 0 rgba(255,255,255,0.1),
        0 2px 0 rgba(255,255,255,0.08),
        0 3px 5px rgba(0,0,0,0.3);
}

.feature-item:hover h3 {
    color: var(--white);
    text-shadow: 
        0 1px 0 rgba(255,255,255,0.2),
        0 2px 0 rgba(255,255,255,0.15),
        0 3px 8px rgba(255,255,255,0.2);
}

.feature-item p {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.9;
}

.compatibility-section {
    margin-top: 80px;
    padding: 60px;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(26,26,26,0.3), transparent);
}

.compatibility-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 
        0 1px 0 #ccc,
        0 2px 0 #bbb,
        0 3px 0 #aaa,
        0 4px 8px rgba(0,0,0,0.4);
}

.compatibility-text {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 2;
}

.vendor-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.vendor-badge {
    padding: 10px 20px;
    border: 1px solid var(--border);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--gray);
    transition: all 0.4s ease;
    cursor: default;
}

.vendor-badge:hover,
.vendor-badge.active {
    border-color: var(--white);
    color: var(--white);
    text-shadow: 0 0 8px rgba(255,255,255,0.4);
    box-shadow: 0 0 15px rgba(255,255,255,0.1);
}

.vendor-badge.flicker {
    animation: vendorFlicker 0.15s ease;
}

@keyframes vendorFlicker {
    0%, 100% { opacity: 1; }
    25% { opacity: 0.3; }
    50% { opacity: 0.7; }
    75% { opacity: 0.2; }
}

.screenshots-section {
    margin-top: 100px;
    padding-top: 40px;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.slider {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--dark-gray);
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--dark-gray);
    border-color: var(--white);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.slider-dot {
    width: 18px;
    height: 18px;
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    border-color: var(--gray);
}

.slider-dot.active {
    background: var(--white);
    border-color: var(--white);
}

.slider-dot.video-dot {
    position: relative;
}

.slider-dot.video-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-left: 6px solid var(--gray);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    transition: border-color 0.3s ease;
}

.slider-dot.video-dot:hover::after,
.slider-dot.video-dot.active::after {
    border-left-color: var(--black);
}

.slide-video {
    cursor: pointer;
}

.video-preview {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--black);
}

.video-preview video {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.6);
    transition: all 0.3s ease;
    z-index: 10;
}

.play-btn svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
    transition: all 0.3s ease;
}

.slide-video:hover .play-btn {
    background: rgba(10, 10, 10, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
    border-color: var(--white);
    box-shadow: 0 0 30px rgba(255,255,255,0.2);
}

.slide-video:hover .play-btn svg {
    fill: var(--white);
}

#lightbox-video {
    display: none;
    max-width: 90%;
    max-height: 90%;
    outline: none;
    background: var(--black);
}

.lightbox.video-mode #lightbox-img {
    display: none;
}

.lightbox.video-mode #lightbox-video {
    display: block;
}

.slider-fullscreen {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-fullscreen:hover {
    background: var(--dark-gray);
    border-color: var(--white);
}

.slider-fullscreen svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.97);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    fill: var(--white);
    transition: transform 0.3s ease;
    background: rgba(10,10,10,0.5);
    padding: 12px;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(10, 10, 10, 0.5);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(10, 10, 10, 0.8);
}

.lightbox-nav svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }

.purchase-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.purchase-header {
    border: 1px solid var(--border);
    padding: 25px 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.purchase-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.bot-image {
    width: 80px;
    height: 80px;
    justify-self: start;
}

.bot-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.9);
    transition: all 0.3s ease;
}

.purchase-header:hover .bot-image img {
    filter: brightness(1);
}

.price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    letter-spacing: 0.08em;
    line-height: 1;
    text-shadow: 
        0 1px 0 #ccc,
        0 2px 0 #bbb,
        0 3px 5px rgba(0,0,0,0.4);
    justify-self: center;
}

.price-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--gray);
    text-transform: uppercase;
    justify-self: center;
    text-align: center;
    line-height: 1.8;
}

.price-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.price-option {
    text-align: center;
}

.price-option .price {
    font-size: 3rem;
}

.price-desc {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--gray);
    text-transform: uppercase;
    margin-top: 5px;
}

.price-divider {
    width: 1px;
    height: 60px;
    background: var(--border);
}

.purchase-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
    border: 1px solid var(--border);
    padding: 10px 30px;
}

.purchase-steps.visible {
    opacity: 1;
    transform: translateY(0);
}

.purchase-step {
    padding: 30px 0;
    position: relative;
    background: var(--black);
    text-align: center;
}

.purchase-step:first-child { padding-top: 20px; }
.purchase-step:last-child { padding-bottom: 20px; }

.step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 25px;
}

.step-header::before,
.step-header::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    color: var(--gray);
    letter-spacing: 0.25em;
    padding: 0 20px;
    white-space: nowrap;
}

.step-number::before {
    content: 'STEP ';
}

.step-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
    margin-bottom: 12px;
    text-shadow: 
        0 1px 0 #ccc,
        0 2px 0 #bbb,
        0 3px 0 #aaa,
        0 4px 6px rgba(0,0,0,0.4);
}

.step-content {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.8;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.crypto-wallets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    align-items: center;
}

.wallet-item {
    display: grid;
    grid-template-columns: 55px 1fr 24px;
    align-items: center;
    gap: 15px;
    padding: 12px 16px;
    background: var(--dark-gray);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 480px;
    max-width: 100%;
}

.wallet-item:hover {
    border-color: var(--gray);
}

.wallet-item.active {
    border-color: var(--white);
}

.wallet-name {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--white);
    text-align: left;
    font-weight: 700;
}

.wallet-address {
    font-size: 0.65rem;
    color: var(--gray);
    font-family: 'Space Mono', monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
}

.wallet-copy {
    fill: var(--gray);
    width: 18px;
    height: 18px;
    transition: fill 0.3s ease;
    flex-shrink: 0;
}

.wallet-item:hover .wallet-copy {
    fill: var(--white);
}

.telegram-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 35px;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.telegram-contact:hover {
    border-color: var(--white);
}

.telegram-contact svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.contacts-section {
    text-align: center;
}

.contacts-section .section-title {
    display: block;
    text-align: left;
}

.forums-block {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.forums-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.forums-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--gray);
    margin-bottom: 25px;
}

.forums-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.forum-badge {
    padding: 14px 28px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--gray);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.forum-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.5s ease;
}

.forum-badge:hover::before {
    left: 100%;
}

.forum-badge:hover {
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.forum-sub {
    font-size: 0.65rem;
    color: var(--gray);
    opacity: 0.7;
}

.forum-badge:hover .forum-sub {
    color: var(--white);
    opacity: 0.8;
}

.contacts-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.contact-block {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 35px;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(26,26,26,0.3), transparent);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.contact-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-block:hover {
    border-color: var(--gray);
    transform: translateY(-3px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--gray);
    transition: fill 0.3s ease;
}

.contact-block:hover .contact-icon {
    border-color: var(--white);
}

.contact-block:hover .contact-icon svg {
    fill: var(--white);
}

.tox-icon svg {
    fill: none;
    stroke: var(--gray);
}

.contact-block:hover .tox-icon svg {
    stroke: var(--gray);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.contact-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--gray);
    text-transform: uppercase;
}

.copy-hint {
    font-size: 0.55rem;
    opacity: 0.6;
    letter-spacing: 0.1em;
}

.contact-link {
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.3s ease;
}

.contact-link:hover::after {
    width: 100%;
}

.contact-tox {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    color: var(--white);
    letter-spacing: 0.05em;
}

.tox-block {
    cursor: pointer;
    padding-right: 25px;
    position: relative;
}

.tox-block .copy-icon {
    width: 20px;
    height: 20px;
    fill: var(--gray);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tox-block:hover .copy-icon {
    fill: var(--white);
}

.tox-block.copied {
    border-color: #4ade80;
}

.tox-block.copied .contact-tox {
    color: #4ade80;
}

.tox-block.copied .copy-icon {
    fill: #4ade80;
}

.support-note {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--gray);
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.support-note.visible {
    opacity: 1;
    transform: translateY(0);
}

.pulse {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    position: relative;
}

.pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .contacts-row {
        flex-direction: column;
        align-items: stretch;
        padding: 0 10px;
    }

    .contact-block {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        gap: 15px;
    }

    .tox-block {
        flex-wrap: wrap;
        padding-right: 20px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-tox {
        font-size: 0.7rem;
        word-break: break-all;
    }

    .contact-label {
        font-size: 0.6rem;
    }

    .copy-hint {
        display: none;
    }

    .tox-block .copy-icon {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .forum-badge {
        padding: 12px 20px;
        font-size: 0.7rem;
    }

    .forums-list {
        padding: 0 10px;
    }

    .support-note {
        font-size: 0.6rem;
        padding: 12px 20px;
        letter-spacing: 0.15em;
    }
}

.parallax-section {
    position: relative;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    nav {
        display: none;
    }

    section {
        padding: 80px 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .parallax-letter {
        font-size: clamp(3rem, 12vw, 8rem);
    }

    .section-title {
        font-size: 2.5rem;
    }

    .compatibility-section {
        padding: 40px 20px;
    }

    .slider-container {
        padding: 0 50px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn svg {
        width: 20px;
        height: 20px;
    }

    .purchase-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .bot-image,
    .price,
    .price-label {
        justify-self: center;
    }

    .price-label {
        text-align: center;
    }

    .price-options {
        flex-direction: column;
        gap: 20px;
    }

    .price-divider {
        width: 80px;
        height: 1px;
    }

    .price-option .price {
        font-size: 2.5rem;
    }
}
