/* Strip default browser margins and add the seamless gradient bleed */
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #F1FF27, #FFE546);
    min-height: 100vh; 
}

/* Allow it to fill mobile width, but cap it so it doesn't look ridiculous on a laptop */
.poster-container {
    position: relative;
    width: 100vw; 
    max-width: 668px; 
    margin: 0 auto;
}

.poster-img {
    width: 100%;
    height: auto;
    display: block;
}

/* The clickable areas with transition animations */
.overlay-link {
    position: absolute;
    display: block;
    border-radius: 8px; /* Softens the invisible box so the highlight isn't harsh */
    transition: background-color 0.2s ease, transform 0.1s ease;
}

/* The interaction feedback: a transparent electric blue tint and slight scale */
.overlay-link:hover,
.overlay-link:active {
    background-color: rgba(0, 111, 255, 0.3); /* 30% opacity of your #006FFF */
    transform: scale(0.98); /* Satisfying tap 'squish' */
}

/* Position the IG Link */
.ig-link {
    bottom: 25.7%;
    right: 3.3%;
    width: 16%;
    height: 11.3%;
}

/* Position the Hidden Activity Link */
.hidden-activity-link {
    bottom: 2%;
    right: 5%;
    width: 33%;
    height: 5.5%;
}

/* Accessibility for screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}