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

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    overflow: hidden;
    position: relative;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 450px;
    margin: 0 auto;
}

.BG {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
}

.price {
    position: absolute;
    top: 18%;
    left: 66%;
    transform: translate(-50%, -50%);
    width: 35%;
    max-width: 180px;
    height: auto;
    cursor: pointer;
    object-fit: contain;
    z-index: 2;
}

.telegram {
    position: absolute;
    top: 33%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    max-width: 280px;
    height: auto;
    cursor: pointer;
    object-fit: contain;
    z-index: 3;
}

.telegram img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile Responsive Styles */

@media (max-width: 428px) {
    .container {
        max-width: 100%;
    }

    .BG {
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }

    .price {
        top: 18%;
        width: 42%;
        max-width: 150px;
    }

    .telegram {
        top: 33%;
        width: 75%;
        max-width: 240px;
    }
}

@media (max-width: 390px) {
    .price {
        top: 18%;
        width: 45%;
        max-width: 140px;
    }

    .telegram {
        top: 33%;
        width: 80%;
        max-width: 220px;
    }
}

@media (max-width: 360px) {
    .price {
        top: 18%;
        width: 48%;
        max-width: 130px;
    }

    .telegram {
        top: 33%;
        width: 85%;
        max-width: 200px;
    }
}