/* Stripe payment buttons styling (match site premium buttons) */
.stripe-button {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    color: #ffffff;
    background: linear-gradient(332deg, #ff780029 0%, #ff45003b 100%);
    border: 1px solid rgba(255, 120, 0, 0.3);
    border-radius: 25px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
}

.stripe-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 120, 0, 0.4);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.stripe-button:active:not(:disabled) {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(255, 120, 0, 0.3);
}

.stripe-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 40%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.stripe-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff7800;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    box-shadow: 0 0 10px rgba(255, 120, 0, 0.5);
}

.stripe-button:hover::after {
    transform: scaleX(1);
}

.stripe-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    text-shadow: none;
}

/* Discord (Choose) buttons now match premium buttons */
.discord-button {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    color: #ffffff;
    background: linear-gradient(332deg, #ff780029 0%, #ff45003b 100%);
    border: 1px solid rgba(255, 120, 0, 0.3);
    border-radius: 25px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
}

.discord-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 120, 0, 0.4);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.discord-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(255, 120, 0, 0.3);
}

.discord-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 40%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.discord-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff7800;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    box-shadow: 0 0 10px rgba(255, 120, 0, 0.5);
}

.discord-button:hover::after {
    transform: scaleX(1);
}

.server-item-premium {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.server-item-premium .premium-button {
    order: 2;
}

.stripe-button {
    order: 1;
}
