body::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-color: var(--main-bg);
    opacity: 1;
    animation: glow 600s infinite alternate;
}

body {
    background: linear-gradient(250deg, var(--accent-color) 0%, var(--main-bg) 100%);
}

.subslider {
    position: relative;
    background-color: var(--card-bg);
    width: 50%;
    height: 1em;
    border: #333333 1px solid;
    border-radius: 4px;
}

.subslider > div {
    content: "";
    position: absolute;
    width: 50%;
    height: 1em;
    background: var(--accent-color);
    border-radius: 4px;
}

#giftbutton,
#submethod {
    width: min-content;
    margin-bottom: 1rem;
    border: none;
    border-radius: 4px;
    background-color: var(--card-bg);
    color: #ffffff;
    border: #333333 1px solid;
    cursor: pointer;
    display: flex;
}

#giftbutton *,
#submethod * {
    padding: .5rem 1.5rem;
}

/* #giftbutton first child */
#giftbutton > *:first-child,
#submethod > *:first-child {
    padding-right: 1.5rem;
    border-radius: 4px 0 0 4px;
}

/* #giftbutton last child */
#giftbutton > *:last-child,
#submethod > *:last-child {
    padding-left: 1.5rem;
    border-radius: 0 4px 4px 0;
}

#giftbutton a.active,
#submethod a.active {
    background: var(--accent-color);
}

#confrirmation_card {
    display: none;
}



input[type="text"] {
    width: 50%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 4px;
    background-color: var(--card-bg);
    color: #ffffff;
    border: #333333 1px solid;
}

/* Status Progress Bar */
.status-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    position: relative;
    padding: 0 2rem;
}

.status-progress::before {
    content: '';
    position: absolute;
    top: 35%;
    left: 4rem;
    right: 4rem;
    height: 2px;
    background: #333333;
    transform: translateY(-150%);
    z-index: 1;
}

.status-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.status-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 2px solid #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.status-text {
    font-size: 0.9rem;
    text-align: center;
    color: var(--text-color);
}

/* Completed and active states */
.status-step.completed .status-circle {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.status-step.active .status-circle {
    border-color: var(--accent-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(54, 106, 172, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(54, 106, 172, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(54, 106, 172, 0);
    }
}

/* Status Info */
.status-info {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.status-info p {
    margin: 0.5rem 0;
}

/* Tips Container */
.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.tip {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    max-width: 350px;
}

.tip h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.tip p {
    margin-bottom: 1.5rem;
}

.tip .cta-button {
    display: inline-block;
    margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .status-progress {
        flex-direction: column;
        padding: 2rem;
    }

    .status-progress::before {
        top: 2rem;
        bottom: 2rem;
        left: 50%;
        width: 2px;
        height: auto;
        transform: translateX(-50%);
    }

    .status-step {
        flex-direction: row;
        width: 100%;
        margin: 1rem 0;
    }

    .status-circle {
        margin-bottom: 0;
        margin-right: 1rem;
    }

    .status-text {
        text-align: left;
    }
}

@keyframes glow {
    50% {
        opacity: 0;;
    }
}