body {
    margin: 0;
    font-family: 'Arial Black', sans-serif;
    background-color: transparent;
    color: #1bff00; /* Pink */
}


.headline {
    font-size: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.headline.small {
    font-size: 1.5em;
}

.subtext {
    font-size: 1.2em;
    margin: 0;
}

.notice-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1em;
    line-height: 1.6;
}

.black-text {
    color: black;
}

.footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 30px 20px;
}


.footer-note {
    margin-top: 15px;
    font-size: 0.9em;
    color: gray;
}

.section-img {
    height: 30vh;
    max-width: 100%;
    width: auto;
    display: block;
    margin: 0 auto 12px auto;
    object-fit: cover;
}

@media (min-width: 941px) {

    #pointer-container {
        position: absolute;
        right: 15%;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        pointer-events: none;
    }
    #pointer-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        padding: 0.5em 2em 0.5em 1.5em;
        border-radius: 2em;
        font-size: 3rem;
        color: #39ff14;
        text-shadow:
                0 0 10px #39ff14,
                0 0 20px #39ff14,
                0 0 40px #39ff14,
                0 0 80px #39ff14;
        box-shadow: 0 0 40px 10px #39ff1440;
        animation: bounce-horizontal 1s infinite;
        position: relative;
    }

    .arrow-symbol {
        font-size: 3.5rem;
        margin-right: 0.7em;
        filter: drop-shadow(0 0 10px #39ff14);
    }

    .arrow-text {
        font-size: 1.5rem;
        color: #fff;
        text-shadow:
                0 0 10px #39ff14,
                0 0 20px #39ff14;
        font-weight: bold;
        letter-spacing: 0.05em;
    }
    @keyframes bounce-horizontal {
        0%, 100% { transform: translateX(0);}
        50% { transform: translateX(30px);}
    }

    #overlay-content {
        position: fixed;
        top: 20%;
        right: 0;
        width: 50%;
        height: 100vh;
        background: rgba(0, 0, 0, 0);
        color: #1bff00; /* Pink */
        z-index: 20;
        overflow: auto;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

}

@media (max-width: 940px) {

    #pointer-container {
        position: absolute;
        left: 50%;
        top: 40%;
        transform: translate(-50%, -50%);
        z-index: 10;
        pointer-events: none;
    }

    #pointer-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        padding: 0.5em 2em 0.5em 1.5em;
        border-radius: 2em;
        font-size: 2.5rem;
        color: #39ff14;
        text-shadow:
                0 0 10px #39ff14,
                0 0 20px #39ff14,
                0 0 40px #39ff14,
                0 0 80px #39ff14;
        box-shadow: 0 0 40px 10px #39ff1440;
        animation: bounce-vertical 1s infinite;
        position: relative;
    }

    .arrow-symbol {
        font-size: 3rem;
        margin-right: 0.7em;
        filter: drop-shadow(0 0 10px #39ff14);
        /* For mobile, use a down arrow */
    }

    .arrow-text {
        font-size: 1.2rem;
        color: #fff;
        text-shadow:
                0 0 10px #39ff14,
                0 0 20px #39ff14;
        font-weight: bold;
        letter-spacing: 0.05em;
    }

    @keyframes bounce-vertical {
        0%, 100% { transform: translateY(0);}
        50% { transform: translateY(20px);}
    }
    .notice-text {
        max-width: 700px;
        margin: 0 auto;
        font-size: 0.8em;
        line-height: 1.6;
        color: #1bff00; /* Pink */
        text-align: justify;
    }
    .section-img {
        height: 15vh;
        max-width: 90vw;
        width: auto;
        display: block;
        margin: 0 auto 12px auto;
        object-fit: cover;
    }
    #overlay-content {
        height: 100vh;
        align-items: flex-start; /* Stick to the top vertically */
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        justify-content: center; /* Центр по горизонтали */
        align-items: flex-start; /* Прилепить вверх по вертикали */
        padding-top: 10px; /* Отступ сверху */
        text-align: center;
        background: rgba(0, 0, 0, 0);
        z-index: 20;
        overflow: auto;
        box-sizing: border-box;
    }

}

.artist-footer {
    display: flex;
    justify-content: center;
    gap: 2em;
    margin: 2em 0 1em 0;
}
.footer-link {
    color: #39ff14;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 1.1em;
    transition: color 0.2s;
}
.footer-link:hover {
    color: #fff;
}