.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    color: white;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.4), 0 0 10px rgba(255, 255, 255, 0.4);
    color: white;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

:root {
    --button-color: #590000FF;
}

.cta-button {
    background-color: var(--button-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease, backdrop-filter 0s ease, box-shadow 0.5s ease;
    max-width: 100%;
    box-sizing: border-box;
}

.cta-button:hover {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    box-shadow: inset 0 0 10px 2px var(--button-color);
    animation: blink-border 2s infinite alternate;
}

@keyframes blink-border {
    0% { box-shadow: inset 0 0 5px 1px var(--button-color); }
    50% { box-shadow: inset 0 0 15px 3px var(--button-color); }
    100% { box-shadow: inset 0 0 10px 2px var(--button-color); }
}

@media (max-width: 768px) {
    /* Герой целиком скрыт: текст + кнопка на странице */
    #hero {
        display: none !important;
    }

    .cta-button {
        display: none !important;
    }
}

#hero,
#hero * {
    user-select: none;
    -webkit-user-select: none;
}
