.redirect-con {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-align: center;
    margin: 12px auto;
    padding: 12px;
    width: 100%;
    max-width: 500px;
    color: #ffffffde;
    border: 1px solid #434c6394;
    background: #00000047;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
}

.checkout-message {
    box-sizing: border-box;
    font-size: 20px;
    background: #434c633b;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}

.message {
    font-size: 20px;
    text-align: center;
    margin: 4px 0;
}

.col-box {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 10px;
    background: #434c633b;
    border-radius: 8px;
    width: 100%;
}

.key-box {
    font-size: 18px;
}

.key-box input {
    color: #fff;
    text-align: center;
    background: #2c313f;
    border: 1px solid #5685ff;
    transition: background 0.3s ease, border 0.3s ease;
    cursor: pointer;
}

.key-box input.copied {
    background: #08090a;
    border: 1px solid white;
}

.copy-key {
    display: flex;
    flex-direction: column;
}

#copy-text {
    font-size: 14px;
    margin-top: 3px;
    color: #ffffff94;
}

.post {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.post-title {
    font-size: 16px;
    color: white;
}

.rd-img-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
    max-width: 170px;
}

.rd-back-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px);
    z-index: 0;
}

.rd-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 5;
}

.links {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 6px 0;
    width: 100%;
    padding: 12px;
}

.link-btn {
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    padding: 8px 10px;
    color: #090a0c;
    background-color: #fff;
    border-radius: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}

.lets-go {
    color: #fff;
    background-color: #4d93ffb0;
}