.manage-container {
    max-width: 500px;
    margin: 80px auto;
    background: rgba(0,0,0,0.7);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    text-align: center;
}

.back-btn {
    width: auto;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 20px;
    align-self: flex-start;
}

.subscription-details {
    margin: 24px 0;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.subscription-type {
    font-size: 1.4rem;
    font-weight: bold;
    color: #FFD100;
    margin-bottom: 12px;
}

.subscription-price {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
}

.subscription-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.btn {
    width: 100%;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.manage-btn {
    background: #FFD100;
    color: #000;
}

.upgrade-btn {
    background: #007bff;
    color: #fff;
}

.discord-btn {
    background: #5865F2;
    color: #fff;
}

.discord-btn:hover {
    background: #4752C4;
}

.status-message {
    margin-top: 16px;
    color: #FFD100;
}

.current-plan {
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(255,217,0,0.1);
    border-radius: 8px;
}