body {
    background: #000 repeating-linear-gradient(-45deg, transparent 0 70px, rgba(255, 255, 255, 0.1) 70px 120px) fixed;
}

.wrapper {
    width: 1700px;
    max-width: 100%;
    margin:auto;
}

#buy {
    background: url(../assets/top-bg.webp) top center / cover no-repeat;
}

#buy .logo {
    text-align: center;
}

.purchase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media screen and (max-width: 1023px) {
    .purchase {
        grid-template-columns: 95%;
        justify-content: center;
        text-align: center;
    }

    .contents-list {
        text-align: left;
    }

    .glamshot {
        order: 1;
    }
    .purchase-options {
        order: 2;
    }
}

.purchase-container {
    border-radius: 20px;
    background: linear-gradient(to bottom, #D80100, #214EF5);
    position: relative;
    padding: 45px;
}

.purchase-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFF;
    border-radius: inherit;
    margin: 5px;
    
}

.purchase-container > * {
    position: relative;
    z-index: 2;
}

.purchase-container .header {
    position: absolute;
    top: -1em;
    left: -0.5em;
    transform: rotate(-5deg);
}

select {
    background-color: #000;
    color: #FFF;
    width: 375px;
    max-width: 100%;
    margin: 0 auto;
    padding: clamp(10px, 1vw, 20px) 0;
    border: 3px solid #e5002d;
    text-align: center;
    cursor: pointer;
}

.confirm {
    margin: 1em 0;
}

.purchase-btn {
    background-image: linear-gradient(to left, #FFFD54, #F2A53B);
    border-radius: 20px;
    border: 4px solid rgba(0, 0, 0, 255);
    padding: 0em 2em;
}

.contents-list {
    list-style-type: disc;
}
.contents-header {
    margin: 2em 0em 0.25em;
}
.contents-list li {
    margin-left: 1em;
}
li.sublist-item {
    margin-left: 2.5em;
}

.glamshot-image {
    margin: 0 auto;
    border-radius: 20px;
    border: 4px solid #ffff55;
    box-shadow: 2px 3px 0 4px #000;
}

#info,
#bonus {
    text-align: center;
}

#buy .purchase > div,
#info .wrapper > div,
#bonus .wrapper > div {
    padding: 1em;
}

#info {
    background: #474747 url(../assets/background-elements.svg) center center / 95% 95% no-repeat;
}

.trailer-container {
    position: relative;
    z-index: 1;
    padding: 5% 0;
}
.trailer-container::before {
    content: "";
    background: url(../assets/mediaplayer.svg) center center / contain no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.trailer-thumbnail {
    border: 2px solid #830000;
    border-radius: 15px;
}

.trailer-link .playbutton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    cursor: pointer;
    border-radius: 50px;
    border: 3px solid #830000;
    box-shadow: 4px 4px #000;
    opacity: 0.5;
    transition: 0.5s opacity;
}

.trailer-link:hover .playbutton {
    opacity: 1;
}

.learn-more a {
    position: relative;
}
.learn-more a::before {
    content: "";
    background: url(../assets/shadow-purchase-button-bg.svg) center center / contain no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: drop-shadow(2px 2px 2px #FFF);
}
.learn-more a > span {
    position: relative;
    z-index: 2;
    padding: 1em 2em;
}

.shadow-animation-image {
    border-radius: 20px;
    border: 2px solid #830000;
}

#bonus .wrapper {
    padding: 3em 0 5em;
}

footer {
    background: #474747;
}

.text-container {
    background: #000;
    border: 2px solid #830000;
    border-radius: 20px;
    padding: 1em;
    box-shadow: 0px 3px 6px #000;
}

img {
    max-width: 100%;
}

#buy a.disabled {
    pointer-events: none;
    opacity: 0.5;
}
