      /* АБСОЛЮТНО МИНИМАЛЬНО - ничего лишнего */
        .popup-block {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            max-width: 280px;
            font-family: Arial, sans-serif;
        }

        .popup-block .inner {
            background: #1a1f2f;
            border: 1px solid #ffcc00;
            border-radius: 24px;
            padding: 16px 20px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.7);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* ТЕКСТ */
        .popup-block .text {
            color: white;
            font-size: 22px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            word-break: keep-all;
            line-height: 1.3;
            width: 100%;
        }

        /* КНОПКА */
        .popup-block .btn {
            background: #ffaa00;
            border: none;
            border-radius: 40px;
            padding: 14px 10px;
            width: 100%;
            max-width: 180px;
            font-size: 20px;
            font-weight: 900;
            text-transform: uppercase;
            color: black;
            cursor: pointer;
            border-bottom: 5px solid #b87300;
            transition: 0.05s linear;
            display: block;
            text-align: center;
            text-decoration: none;
            box-sizing: border-box;
            margin: 0 auto;
        }

        .popup-block .btn:active {
            border-bottom-width: 2px;
            transform: translateY(3px);
        }

        /* совсем для телефонов */
        @media (max-width: 500px) {
            .popup-block {
                left: 20px;
                right: 20px;
                max-width: none;
            }
            
            .popup-block .btn {
                max-width: 200px;
            }
        }