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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    padding: 40px 20px;
    border-bottom: 2px solid #333;
    margin-bottom: 40px;
}

.logo h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
}

.glitch-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-section {
    margin-bottom: 50px;
}

.video-section h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

.glitch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 136, 204, 0.1) 25%,
        transparent 50%,
        rgba(255, 0, 255, 0.1) 75%,
        transparent 100%
    );
    background-size: 200% 100%;
    z-index: 3;
    pointer-events: none;
    mix-blend-mode: screen;
    animation: glitch-scan 3s infinite linear;
    opacity: 0.8;
}

.glitch-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        0deg,
        transparent 0%,
        rgba(0, 255, 255, 0.05) 50%,
        transparent 100%
    );
    animation: glitch-vertical 2s infinite;
}

.glitch-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1) 0px,
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    animation: glitch-flicker 0.15s infinite;
    opacity: 0.3;
}

.glitch-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 255, 255, 0.1) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(255, 0, 255, 0.1) 50%, transparent 100%);
    background-size: 200% 200%;
    animation: glitch-move 4s infinite;
    mix-blend-mode: difference;
    opacity: 0.4;
}

.glitch-lines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 255, 255, 0.5);
    animation: glitch-line-scan 3s infinite;
    box-shadow: 0 50% 0 rgba(255, 0, 255, 0.5),
                0 100% 0 rgba(0, 255, 255, 0.3);
}

@keyframes glitch-scan {
    0% {
        background-position: 0% 0%;
        opacity: 0.8;
    }
    50% {
        background-position: 100% 0%;
        opacity: 0.6;
    }
    51% {
        opacity: 0.3;
    }
    52% {
        opacity: 0.9;
    }
    100% {
        background-position: 200% 0%;
        opacity: 0.8;
    }
}

@keyframes glitch-vertical {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.05;
    }
    25% {
        transform: translateY(-2px);
        opacity: 0.1;
    }
    50% {
        transform: translateY(0);
        opacity: 0.05;
    }
    75% {
        transform: translateY(2px);
        opacity: 0.1;
    }
}

@keyframes glitch-flicker {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.1;
    }
}

@keyframes glitch-move {
    0%, 100% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 50% 100%;
    }
    75% {
        background-position: 0% 50%;
    }
}

@keyframes glitch-line-scan {
    0% {
        top: 0;
        opacity: 0.5;
    }
    50% {
        top: 50%;
        opacity: 0.8;
    }
    100% {
        top: 100%;
        opacity: 0.5;
    }
}

.video-wrapper:hover .glitch-overlay {
    animation-duration: 1.5s;
    opacity: 0.9;
}

.video-wrapper:hover .glitch-lines {
    opacity: 0.6;
    animation-duration: 2s;
}

.status-badge {
    text-align: center;
    margin: 30px 0;
}

.beta,
.active {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px solid #444;
    border-radius: 25px;
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.active {
    background: linear-gradient(135deg, #1a4a2a 0%, #0f2a1a 100%);
    border-color: #2a7a3a;
    color: #4aff7a;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.features {
    margin-bottom: 50px;
}

.features h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.features-block {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.feature-item {
    padding: 25px;
    background: linear-gradient(135deg, #0f0f0f 0%, #0a0a0a 100%);
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid #444;
    margin-bottom: 20px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item:hover {
    transform: translateY(-3px);
    border-color: #555;
    border-left-color: #0088cc;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #151515 0%, #0f0f0f 100%);
}

.feature-item h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.feature-item p {
    color: #c0c0c0;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.specs {
    margin-bottom: 50px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.specs-text {
    text-align: center;
}

.specs-text p {
    color: #c0c0c0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.additional-features {
    margin-bottom: 50px;
}

.additional-features h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.customization {
    margin-bottom: 50px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.customization h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.customization-content {
    text-align: center;
}

.customization-content p {
    color: #c0c0c0;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.telegram-section {
    text-align: center;
    margin: 40px 0;
}

.telegram-button {
    display: inline-block;
    color: #0088cc;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 0;
    border-bottom: 1px solid transparent;
}

.telegram-button:hover {
    color: #00aaff;
    border-bottom-color: #00aaff;
}

.contact-section {
    margin-bottom: 50px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.contact-section h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.contact-content {
    color: #c0c0c0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.telegram-link {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.telegram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.5);
    background: linear-gradient(135deg, #00aaff 0%, #0088cc 100%);
}

#purchaseLink {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

#purchaseLink:hover {
    background: linear-gradient(135deg, #34d97a 0%, #2ecc71 100%);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.5);
}

.footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 2px solid #333;
    margin-top: 50px;
    color: #888;
    font-size: 0.9rem;
    position: relative;
}

.seo-keywords {
    display: none;
    visibility: hidden;
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.seo-keywords span {
    display: inline;
    color: transparent;
    font-size: 1px;
    line-height: 1px;
}

.seo-content-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
}

.seo-content-hidden p {
    font-size: 1px;
    line-height: 1px;
    color: transparent;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .header {
        padding: 30px 15px;
    }

    .image-section {
        margin-bottom: 30px;
    }

    .glitch-img {
        max-width: 100%;
    }

    .logo h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .status-text {
        font-size: 0.9rem;
    }

    .video-section {
        margin-bottom: 30px;
    }

    .video-section h2 {
        font-size: 1.5rem;
    }

    .telegram-button {
        padding: 15px 25px;
        font-size: 1rem;
        flex-direction: column;
        gap: 8px;
    }

    .telegram-text {
        white-space: normal;
    }

    .features-block {
        padding: 25px;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-item h3 {
        font-size: 1.2rem;
    }

    .feature-item p {
        font-size: 0.95rem;
    }

    .specs-text p {
        font-size: 1rem;
    }

    .contact-section {
        padding: 20px;
    }

    .contact-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .header {
        padding: 20px 10px;
    }

    .image-section {
        margin-bottom: 20px;
    }

    .logo h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .status-text {
        font-size: 0.85rem;
    }

    .features h2,
    .specs h2,
    .customization h2,
    .video-section h2,
    .contact-section h2,
    .additional-features h2 {
        font-size: 1.5rem;
    }

    .features-block {
        padding: 20px;
    }

    .feature-item {
        margin-bottom: 15px;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-item h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .feature-item p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .telegram-button {
        font-size: 1.1rem;
    }

    .specs,
    .customization,
    .contact-section {
        padding: 20px 15px;
    }

    .status-badge {
        margin: 20px 0;
    }

    .active {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    .telegram-button,
    .telegram-link {
        min-height: 44px;
        min-width: 44px;
    }

    .feature-card {
        padding: 20px;
    }
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444;
}

.floating-emoji {
    position: fixed;
    font-size: 2rem;
    z-index: 9999;
    pointer-events: none;
    user-select: none;
    opacity: 0.7;
    transition: transform 0.1s linear, opacity 0.3s ease;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.3);
    will-change: transform, opacity;
}

.floating-emoji::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 30%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    box-shadow: none;
    animation: none;
}

.floating-emoji.portal-opening::before {
    animation: portalOpen 0.6s ease-out forwards;
    opacity: 1;
}

.floating-emoji.portal-closing::before {
    animation: portalClose 0.6s ease-in forwards;
}

.floating-emoji:not(.portal-opening):not(.portal-closing)::before {
    animation: none !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    box-shadow: none !important;
}

@keyframes portalOpen {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
    50% {
        width: 80px;
        height: 80px;
        opacity: 0.8;
        box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0.6), 0 0 40px 20px rgba(255, 255, 255, 0.3);
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 1;
        box-shadow: 0 0 30px 15px rgba(255, 255, 255, 0.8), 0 0 60px 30px rgba(255, 255, 255, 0.4);
    }
}

@keyframes portalClose {
    0% {
        width: 100px;
        height: 100px;
        opacity: 1;
        box-shadow: 0 0 30px 15px rgba(255, 255, 255, 0.8), 0 0 60px 30px rgba(255, 255, 255, 0.4);
    }
    50% {
        width: 80px;
        height: 80px;
        opacity: 0.8;
        box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0.6), 0 0 40px 20px rgba(255, 255, 255, 0.3);
    }
    100% {
        width: 0;
        height: 0;
        opacity: 0;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes teleport {
    0% {
        opacity: 0.7;
        transform: scale(1) rotate(0deg);
        filter: blur(0px);
    }
    25% {
        opacity: 0.4;
        transform: scale(0.8) rotate(90deg);
        filter: blur(2px);
    }
    50% {
        opacity: 0;
        transform: scale(0.3) rotate(180deg);
        filter: blur(8px);
    }
    75% {
        opacity: 0;
        transform: scale(0.3) rotate(270deg);
        filter: blur(8px);
    }
    100% {
        opacity: 0.7;
        transform: scale(1) rotate(360deg);
        filter: blur(0px);
    }
}

