@keyframes neon-pulse {
    0% {
        /* Начало: легкое свечение, нормальный размер */
        text-shadow: 0 0 10px rgba(79, 255, 255, 0.3);
        transform: scale(1);
    }

    50% {
        /* Середина: яркое широкое свечение, легкое увеличение */
        text-shadow: 0 0 20px rgba(79, 255, 255, 0.8),
            0 0 40px rgba(0, 77, 102, 0.6);
        transform: scale(1.02);
        /* Увеличиваем на 2% */
    }

    100% {
        /* Конец: возврат к началу */
        text-shadow: 0 0 10px rgba(79, 255, 255, 0.3);
        transform: scale(1);
    }
}


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

body {
    font-family: 'Outfit', sans-serif;
    color: white;
    background-color: #0b0c10;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#fractal-canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    pointer-events: none;
    max-width: 800px;
    padding: 0 30px;
}

.title {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #4fffff, #006680);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    letter-spacing: -2px;
    /* animation: neon-pulse 3s ease-in-out infinite; */
}

.subtitle {
    font-size: 1.5rem;
    color: #8daab6;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.buttons {
    pointer-events: auto;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    text-decoration: none;
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn.primary {
    background: #ffffff;
    color: #0b0c10;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cursor {
    display: inline-block;
    margin-left: 2px;
    font-weight: 100;
    animation: blink 1s step-end infinite;
    /* Ensure cursor is visible despite parent text color settings if needed, 
       but for gradient text we might want it to inherit or be a specific color.
       Let's try making it white or matching the theme. */
    color: #4fffff;
    -webkit-text-fill-color: #4fffff;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}