html,
body {
    margin: 0;
    padding: 0;
    background: #000;
    min-height: 100%;
}

* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

.otg-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at center, rgba(0, 95, 180, .22), transparent 42%),
        #000;
}

.otg-artwork-wrap {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.otg-artwork {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Invisible desktop click zones matched to the artwork */
.otg-hotspot {
    position: absolute;
    z-index: 5;
    display: block;
    border-radius: 14px;
}

.otg-hotspot:hover,
.otg-hotspot:focus-visible {
    outline: 2px solid rgba(255,255,255,.55);
    box-shadow: 0 0 28px rgba(0, 150, 255, .75);
    background: rgba(0, 140, 255, .08);
}

.otg-facebook-hotspot {
    left: 7.2%;
    top: 75.4%;
    width: 20.8%;
    height: 9.2%;
}

.otg-tiktok-hotspot {
    left: 29.1%;
    top: 75.4%;
    width: 20.8%;
    height: 9.2%;
}

.otg-email-hotspot {
    left: 27.2%;
    bottom: 3.8%;
    width: 25.5%;
    height: 6.8%;
}

.otg-mobile-actions {
    display: none;
}

/* Mobile: do NOT crop the artwork. Show it clean, then proper big buttons underneath. */
@media (max-width: 800px) {
    body {
        overflow-y: auto;
    }

    .otg-artwork-wrap {
        height: auto;
        overflow: visible;
    }

    .otg-artwork {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: top center;
    }

    .otg-hotspot {
        display: none;
    }

    .otg-mobile-actions {
        display: grid;
        gap: 12px;
        padding: 18px 16px 26px;
        background:
            radial-gradient(circle at center, rgba(0, 140, 255, .18), transparent 55%),
            #02050a;
    }

    .otg-action {
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px 18px;
        border-radius: 12px;
        text-decoration: none;
        color: #fff;
        font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
        text-transform: uppercase;
        letter-spacing: .6px;
        font-size: 20px;
        border: 2px solid rgba(0, 150, 255, .75);
        box-shadow: 0 0 22px rgba(0, 140, 255, .24);
    }

    .otg-fb {
        background: linear-gradient(135deg, #0866ff, #119cff);
    }

    .otg-tt {
        background: #06080d;
    }

    .otg-mail {
        background: rgba(0, 15, 35, .88);
        font-family: Arial, sans-serif;
        text-transform: none;
        font-size: 17px;
        letter-spacing: 0;
    }
}

/* Ultra wide screens: keep the image looking clean without ugly stretching */
@media (min-aspect-ratio: 2/1) {
    .otg-artwork {
        object-fit: contain;
        background: #000;
    }
}
