body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    font-size: 16px;
    cursor: url('image/penis.cur'), auto;
    
}
a {
    text-decoration: none;
    cursor: url('image/penis.cur'), pointer;
}

.video-container {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 80px; 
    padding: 10px;
    flex-wrap: wrap; 
    max-width: 100%; 
    overflow: hidden;
}

.video-container video {
    width: 45%; 
    max-width: 100%; 
    height: auto; 
    border: 5px solid gray; 
    border-radius: 10px; 
    padding: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.video-container video:hover {
    transform: scale(1.03);
}

.image-container-right {
    display: flex; 
    justify-content: center;
    align-items: center;
    width: 45%;
    max-width: 100%;
    position: relative;
}

.image-container-right img {
    width: 90%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container-right img:hover {
    transform: scale(1.05);
}

.header {
    width: 100%;
    box-sizing: border-box; 
    background: rgba(255, 255, 255, 0.997); 
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.button img {
    width: 70px;
    height: auto;
    padding: 0 30px;
    transition: transform 0.2s ease;
}

.button img:hover {
    cursor: url('image/penis.cur'), pointer;
    transform: scale(1.1);
}

.content {
    display: flex;
    padding: 20px;
}

.left-elements, .right-elements {
    flex: 1;
    display: flex;
    margin-top: 1%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.gif {
    width: 150px;
    height: auto;
    border: 5px solid rgb(183, 183, 183);
    border-radius: 10px;
    padding: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.gif:hover {
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    .right-elements {
        display: none; 
    }

    .left-elements {
        order: 2; 
        width: 100%;
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .left-elements .gif {
        width: 45%;
        margin-bottom: 10px;
    }

    .center-content {
        order: 1;
    }
}

.center-content {
    flex: 2;
    text-align: center;
}

.center-content p {
    font-size: 18px;
    line-height: 1.6;
}

.section-with-background {
    background-image: url('image/backzerbra123123.png');
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    min-height: calc(100vh - 140px);
    padding-top: 0px;
    padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .section-with-background {
        background-size: contain;
        background-position: center top;
        min-height: 50vh;
    }
}

.marquee {
    background: black;
    color: white;
    padding: 10px;
    font-size: 20px;
    overflow: hidden;
    white-space: nowrap;
}

.scroll-text {
    animation: marquee 10s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker {
    background: #000000;
    color: #ffffff;
    font-family: system-ui;
    font-size: 24px;
    max-width: 100em;
    overflow: hidden;
}

.ticker__in {
    display: flex;
    width: fit-content;
    animation: ticker 9s linear infinite;
}

.ticker__item {
    padding: .5em .75em;
    white-space: nowrap;
}

.how-to-buy {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    margin-top: 20px;
}

.footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 10px;
}

.image-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px;
}

.gallery-image {
    width: 23%; 
    height: auto;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.03);
}

.code-frame {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    margin-top: 24px;
    flex-wrap: wrap;
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .code-frame {
        font-size: 1.2em;
    }
}

@media screen and (max-width: 768px) {
    .code-frame {
        font-size: 0.9em;
    }
}

@media screen and (max-width: 480px) {
    .code-frame {
        font-size: 0.7em;
    }
}

.audio-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.audio-button {
    width: 45px;
    height: 150;
    cursor: url('image/penis.cur'), pointer;
    margin-left: 10px;
    transition: transform 0.2s ease;
}

.audio-button:hover {
    transform: scale(1.1);
}

.hidden {
    display: none;
}

.video-js {
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.vjs-big-play-button {
    background-color: #ff8800;
    border-radius: 50%;
}