.mobile-block {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #14171a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transform: scale(100%);
    overflow-x: hidden;
    overflow-y: hidden;
}

.img-content {
  border-radius: 10px;
  background: #fff;
  padding: 20px;
}

.block-content {
    background: #1e2225;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.block-content h1 {
    font-family: "Roboto", sans-serif;
    color: #9145ff;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 28px;
}

.block-content p {
    font-family: "Roboto", sans-serif;
    color: #88919d;
    margin-bottom: 25px;
    font-size: 16px;
    text-align: center;
}

.close-button {
    background: #9145ff;
    border: none;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.close-button:hover {
   background-color: #c9302c;
}
.close-button:active {
   transform: scale(0.98);
}

/* Медиа-запрос: показываем заглушку только на мобильных устройствах */
@media (min-width: 1030px) {
    .mobile-block {
        display: none;
    }
}