.sing-section {
        background: #7a7a7a;
        padding: 90px 40px;
        font-family: 'Wix Madefor Display', sans-serif;
        text-align: center;
    }

    .sing-container {
        max-width: 980px;
        margin: 0 auto;
    }

    .sing-section h2 {
        margin: 0 0 40px 0;
        color: #ffffff;
        font-family: 'Wix Madefor Display', sans-serif;
        font-size: 38px;
        font-weight: 800;
        letter-spacing: 0.01em;
        text-transform: uppercase;
        line-height: 1.2;
    }

    .sing-section p {
        margin: 0 0 22px 0;
        color: #ffffff;
        font-family: 'Wix Madefor Display', sans-serif;
        font-size: 17px;
        font-weight: 600;
        line-height: 1.7;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .sing-section p:last-of-type {
        margin-bottom: 48px;
    }

    .sing-links {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .play-btn {
        display: inline-flex;
        align-items: stretch;
        height: 58px;
        border-radius: 29px;
        overflow: hidden;
        text-decoration: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .play-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
    }

    .play-btn:visited {
        text-decoration: none;
    }

    .flag {
        display: block;
        width: 108px;
        height: 100%;
    }

    .flag svg {
        display: block;
        width: 100%;
        height: 100%;
    }

    .btn-text {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 30px;
        background: #6ec1f7;
        color: #ffffff;
        font-size: 15px;
        font-weight: 800;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    /* Responsive — tablet */
    @media (max-width: 1024px) {
        .sing-section {
            padding: 70px 32px;
        }

        .sing-section h2 {
            font-size: 32px;
        }

        .sing-section p {
            font-size: 16px;
        }
    }

    /* Responsive — mobile */
    @media (max-width: 768px) {
        .sing-section {
            padding: 50px 24px;
        }

        .sing-section h2 {
            font-size: 26px;
            margin-bottom: 28px;
        }

        .sing-section p {
            font-size: 15px;
            margin-bottom: 18px;
        }

        .sing-section p:last-of-type {
            margin-bottom: 34px;
        }

        .sing-links {
            flex-direction: column;
            gap: 16px;
        }

        .play-btn {
            width: 100%;
            max-width: 320px;
            height: 52px;
        }

        .flag {
            width: 92px;
        }

        .btn-text {
            flex: 1;
            padding: 0 20px;
        }
    }

    @media (max-width: 480px) {
        .sing-section h2 {
            font-size: 22px;
        }
    }
