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

    .custom-header {
        background-color: #222;
        padding: 10px 20px;
        color: #fff;
    }

    .logo-container {
        display: flex;
        align-items: center;
    }

    .logo {
        width: 60px;
        height: 40px;
        object-fit: contain;
        margin-right: 10px;
    }

    .logo-text {
        font-size: 1.5rem;
        font-weight: bold;
        white-space: nowrap;
    }

    /* Адаптивність */
    @media (max-width: 480px) {
        .logo-text {
            font-size: 1.2rem;
        }

        .logo {
            width: 30px;
            height: 30px;
        }
    }


    body {
        font-family: Geologica, Helvetica, Arial, sans-serif;
        background: #f4f4f4;
    }

    /*  .banner {
      background: #229fff;
      color: #fff;
      padding: 40px 20px;
      text-align: center;
    } */

    .blocks-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(201px, 1fr));
        gap: 20px;
        padding: 20px;
    }

    .block {
        background: #fff;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        position: relative;
        display: inline-block;
        color: steelblue;
        text-align: center;
        padding-bottom: 8rem;
    }

    .block img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .melody-name {
        font-size: 1rem;
        margin: 10px 0;
        color: #229fff;
    }

    .artist-name {
        font-size: 1rem;
        font-weight: 700;
        line-height: 2rem;
        position: relative;
        display: block;
        overflow: hidden;
        max-height: 4rem;
        margin-bottom: .4rem;
        color: #229fff;
    }

    .block h5 {
        font-size: 0.9rem;
        color: #666;
        margin-top: 10px;
    }

    a:link {
        text-decoration: none;
    }

    .block-audio {
        width: 100%;
        height: 30px;
        position: absolute;
        bottom: 0;
        left: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: row-reverse;
        margin-bottom: 6rem;
    }

    .button {
        /*  display: inline-block;
        padding: 10px 20px;
        background-color: #007BFF;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        margin: 10px 0;
        cursor: pointer;
        border: none; */
        font-size: 1rem;
        line-height: 2.5rem;
        display: block;
        width: auto;
        width: calc(100% - 1.6rem);
        cursor: pointer;
        text-align: center;
        color: #229fff;
        border: .2rem solid #229fff;
        border-radius: 3.5rem;
        background: transparent;
        margin-top: 10px;

    }

    .button:hover {
        color: #fff;
        background: #229fff;
    }

    .block a.button {
        font-size: 1rem;
        line-height: 2.5rem;
        display: block;
        width: auto;
        /* width: calc(100% - 1.6rem); */
        cursor: pointer;
        text-align: center;
        color: #229fff;
        border: .2rem solid #229fff;
        border-radius: 3.5rem;
        background: transparent;
        margin-top: 10px;
    }

    .block a.button:hover {
        color: #fff;
        background: #229fff;
    }

    audio {
        width: 95%;
        margin-top: 10px;
    }

    audio::-webkit-media-controls-mute-button,
    audio::-webkit-media-controls-volume-slider {
        display: none;
    }

     audio::-webkit-media-controls-play-button {
        background-image: url(../images/4028535.png);
    }
    audio::-webkit-media-controls-play-button::after {
        background-image: url(../images/2.jpg);
    }

    /* Модальне вікно */
    .modal {
        display: none;
        position: fixed;
        z-index: 10;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background: rgba(0, 0, 0, 0.6);
        justify-content: center;
        align-items: center;
    }

    .modal-content {
        background: white;
        padding: 20px;
        border-radius: 10px;
        max-width: 400px;
        text-align: center;
    }

    .modal .modal-content .block {
        padding-bottom: 30px;
    }

    .close {
        color: #229fff;
        font-size: 50px;
        float: right;
        cursor: pointer;
        background: no-repeat;
        border: none;
    }

    @media (max-width: 600px) {
        .blocks-container {
            grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
        }

        .banner h1 {
            font-size: 1.8rem;
        }

        .block h1 {
            font-size: 1.1rem;
        }

        .block h3 {
            font-size: 1rem;
        }

        .block h5 {
            font-size: 0.8rem;
        }
    }

    .text_modal {
        display: none;
        justify-content: center;
        margin-top: 10px;
    }