html, body {
    height: 100%;
    min-height: 100%;
}
.credits-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    margin-top: 100px;
    position: relative;
}
.credits-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin-bottom: 0;
    position: relative;
    min-height: 220px;
}
.credits-img {
    width: 320px;
    max-width: 95vw;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(155,134,224,0.10);
    background: #fff;
    border: none;
    margin-bottom: 0;
    margin-top: -80px;
    margin-right: -200px;
    z-index: 1;
    position: relative;
    top: 0;
}
.thankyou-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}
.thankyou-box {
    background: #b7aee6;
    color: #fff;
    font-size: 4.2rem;
    padding: 38px 120px;
    border-radius: 48px;
    margin: 0 0 10px 0;
    font-family: 'MoreSugar', 'Segoe UI', Roboto, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    max-width: 98vw;
    border: 4px solid #b7aee6;
    box-shadow: 0 2px 18px rgba(155,134,224,0.10);
    z-index: 2;
    position: relative;
    left: -60px;
    cursor: pointer;
}
.credits-small {
    color: #fff;
    font-size: 1.7rem;
    margin-top: -12px;
    text-align: center;
    font-family: 'MoreSugar', 'Segoe UI', Roboto, Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: none;
    border: none;
    -webkit-text-stroke: 1px #b7aee6;
    /* Remove shadow, use only outline */
    text-shadow: none;
    padding: 0 8px;
}
.credits-small span {
    color: #fff;
    -webkit-text-stroke: 2px #b7aee6;
}
@media (max-width: 900px) {
    .credits-img { width: 200px; margin-right: -30px; }
    .thankyou-box { font-size: 2.2rem; padding: 18px 24vw; }
    .credits-small { font-size: 1.1rem; }
}
